:root {
    --primary: #f26522;      /* turuncu ton */
    --primary-dark: #cc4f17;
    --text-main: #333333;
    --text-light: #777777;
    --bg-light: #f7f7f7;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* BODY */
body {
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background-color: #ffffff;

    /* ARKA PLAN PATTERN */
    background-image: url("image/bg-pattern.png");
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
    background-position: center top;
}

/* GENEL LAYOUT */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ÜST BANT */
.top-bar {
    background-color: #f5f5f5;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item {
    color: var(--text-main);
}

.top-bar-separator {
    color: var(--border-color);
}

.search-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    overflow: hidden;
    background-color: #ffffff;
}

.search-box input {
    border: none;
    padding: 4px 10px;
    font-size: 13px;
    outline: none;
    min-width: 180px;
}

.search-box button {
    border: none;
    padding: 5px 12px;
    cursor: pointer;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 13px;
}

.top-bar-icons a {
    margin-left: 6px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 13px;
}

.top-bar-icons a:hover {
    color: var(--primary);
}

.lang-select {
    margin-left: 10px;
    font-size: 13px;
}

/* HEADER + NAV */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-box {
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #ff9b4a);
    border-radius: 4px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.logo-text {
    line-height: 1.1;
}

.logo-title {
    font-weight: 700;
    font-size: 38px;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-light);
}

.main-nav {
    display: flex;
    gap: 16px;
    font-size: 14px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    position: relative;
    padding-bottom: 4px;
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: var(--primary);
}


/* HERO – Küçültülmüş versiyon */
.hero-section {
    background-color: var(--bg-light);
    padding: 20px 0;              /* 40px → 20px: dış boşluk küçüldü */
}

.hero-inner {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 24px 28px;           /* 40px → 24px: iç boşluk azaldı */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;            /* 260px → 180px: kutu yüksekliği düştü */
    background-image: linear-gradient(135deg, #f2f2f2, #ffffff);
    max-width: 600px;     /* İstediğin genişliği buradan ayarlayabilirsin */
    margin: 0 auto;       /* Ortalar */
}

.hero-content {
    text-align: center;
    max-width: 520px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #ff9b4a);
    color: #ffffff;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 26px;              /* 32px → 26px */
    margin-bottom: 6px;           /* 10px → 6px */
}

.hero-content p {
    font-size: 14px;              /* 15px → 14px */
    color: var(--text-light);
    margin-bottom: 10px;          /* 18px → 10px */
}

.hero-btn {
    border: none;
    background: var(--primary);
    color: #ffffff;
    padding: 8px 18px;            /* 10x22 → 8x18 */
    border-radius: 999px;
    font-size: 16px;              /* 14px → 13px */
    cursor: pointer;
}

.hero-btn:hover {
    background-color: var(--primary-dark);
}


/* NEDEN BİZ */
.why-us-section {
    padding: 40px 0 50px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.why-card {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-card-image {
    background-color: #dedede;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #666666;
}

.why-card h3 {
    font-size: 15px;
    margin: 12px 14px 4px;
}

.why-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 14px 14px;
}

/* İLETİŞİM (ayrı sayfa için) */
.contact-section {
    padding: 40px 0 0;
    background-color: var(--bg-light);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 40px;
    padding-bottom: 30px;
}

.contact-info h2 {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-block {
    margin-bottom: 16px;
    font-size: 14px;
}

.contact-block p {
    margin-bottom: 4px;
}

.contact-form-wrapper h2 {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-form {
    background-color: #ffffff;
    border-radius: 4px;
    border-top: 2px solid var(--primary);
    padding: 18px 18px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-group {
    flex: 1;
    margin-bottom: 14px;
    font-size: 13px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-size: 13px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-checkbox {
    font-size: 12px;
    margin: 6px 0 14px;
}

.form-checkbox input {
    margin-right: 6px;
}

.btn-submit {
    border: 1px solid var(--text-main);
    background-color: #ffffff;
    padding: 8px 18px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 999px;
}

.btn-submit:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* HARİTA */
.map-wrapper {
    width: 100%;
    margin-top: 10px;
}

.map-wrapper iframe {
    width: 100%;
    height: 260px;
}

/* FOOTER */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 16px 0;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-light);
}

.site-footer a {
    color: var(--text-light);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--primary);
}

/* KATEGORİ GRID */
.category-grid-section {
    padding: 40px 0;
}

.category-grid-section .section-title {
    margin-bottom: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.cat-box {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
}

.cat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.cat-img {
    height: 140px;
    background: #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #666;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cat-title {
    text-align: center;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
}

/* HIZLI BAŞVURU BUTONLARI */
.quick-apply-btn {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 999;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quick-apply-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}

/* Sol alttaki buton (link) */
.quick-apply-btn-left {
    left: 20px;
    right: auto;
}

/* POPUP FORM (İletişime Geç) */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    width: 380px;
    max-width: 96%;
    padding: 25px;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.popup-close {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 22px;
    cursor: pointer;
}

.popup-box h2 {
    margin-bottom: 15px;
    font-size: 20px;
    text-align: center;
}

.popup-form {
    text-align: center;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 12px;
}

/* Başvuru Yap butonu */
.popup-submit {
    background: var(--primary);
    color: #fff;
    padding: 10px 28px;
    font-size: 15px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(0,0,0,0.3);
}

/* MÜŞTERİ LOGO SLIDERI – FİNAL */
.clients-section {
    padding: 24px 0;          /* üst–alt boşluk azaltıldı */
}

.clients-box {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    padding: 14px 0;          /* içteki beyaz alan yüksekliği kısaltıldı */
    overflow: hidden;
}

/* Sonsuz kayan satır */
.clients-track {
    display: flex;
    align-items: center;      /* logolar dikeyde ortada */
    gap: 36px;                /* logolar arası mesafe */
    width: max-content;
    animation: scrollLogos 130s linear infinite;
}

.client-logo {
    flex-shrink: 0;
}

.client-logo img {
    height: 90px;             /* logo yüksekliği */
    width: auto;
    object-fit: contain;
    filter: grayscale(0);
    opacity: 1;
    transition: .3s ease;
}

.client-logo img:hover {
    filter: grayscale(100%);
    opacity: .6;
}

/* Hareket animasyonu */
@keyframes scrollLogos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* MINI TEŞEKKÜR POPUP */
.mini-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.mini-popup-box {
    background: #111111;
    color: #ffffff;
    padding: 24px 28px;
    border-radius: 14px;
    text-align: center;
    width: 320px;
    max-width: 90%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.mini-popup-box h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
}

.mini-popup-box p {
    margin: 0 0 18px;
    font-size: 14px;
    opacity: 0.9;
}

#miniPopupOk {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 9px 24px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#miniPopupOk:hover {
    background: var(--primary-dark);
}

/* RESPONSIVE GENEL */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .header-inner {
        justify-content: space-between;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding: 24px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .quick-apply-btn {
        bottom: 20px;
        right: 20px;
        border-radius: 999px;
        padding: 10px 18px;
    }

    .clients-section {
        padding: 16px 0;
    }

    .clients-box {
        padding: 8px 0;
    }

    .clients-track {
        gap: 24px;
        animation-duration: 40s;
    }

    .client-logo img {
        height: 70px;
    }
}
.page-background {
    background-image: url("image/bg-pattern.png");
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;   /* paralaks etkisi */
    background-position: center top;

    width: 100%;
    min-height: 100vh;               /* ekranın tamamını kaplasın */
    padding-bottom: 40px;            /* footer boşluk taşmasın */
}
/* --- GENEL PATTERN ARKA PLAN --- */
body {
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    background-image: url("image/bg-pattern.png");
    background-repeat: repeat;
    background-size: auto;
    background-attachment: fixed;
    background-position: center top;
    /* Header ve footer hariç tüm bölümler pattern'i göstersin */
.hero-section,
.category-grid-section,
.clients-section,
.contact-section {
    background-color: transparent;  /* var(--bg-light) yerine */
}
/* Header ve footer düz beyaz */
.main-header,
.site-footer {
    background-color: #ffffff;
}

}