        /* --- GENEL AYARLAR & RENK PALETİ --- */

body{
    font-family: 'Outfit', sans-serif;
}
        :root {
            --dark-blue: #0b2240;
            --light-blue: #13335c;
            --gold: #bfa15f;
            --gold-hover: #a6894c;
            --text-dark: #333333;
            --text-muted: #666666;
            --bg-light: #f4f6f9;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--white);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- BUTONLAR --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-gold {
            background-color: var(--gold);
            color: var(--white);
        }

        .btn-gold:hover {
            background-color: var(--gold-hover);
        }

        .btn-dark {
            background-color: var(--dark-blue);
            color: var(--white);
        }

        .btn-dark:hover {
            background-color: var(--light-blue);
        }

.btn-outline{
    background:#fff;
    color:var(--dark-blue);
    border:1px solid #e5e7eb;
}

.btn-outline:hover{
    background:#fff;
    color:var(--dark-blue);
    border-color:#d1d5db;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

        /* --- 1. TOP BAR --- */
        .top-bar {
            background-color: var(--dark-blue);
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .top-contact {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .top-contact a {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-contact a:hover {
            color: var(--white);
        }

        .top-social {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .top-social a:hover {
            color: var(--gold);
        }

        /* --- 2. HEADER & NAV --- */
        .header {
            background-color: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
.logo{
    display:flex;
    align-items:center;
}

.logo-link{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-img{
    height:50px;
    width:auto;
    display:block;
    flex-shrink:0;
}

.logo-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    line-height:1.1;
}

.logo-title{
    font-size:12px;
    font-weight:500;
	margin-bottom:2px;
    letter-spacing:2px;
    color:var(--text-muted);
}

.logo-main{
    font-size:20px;
    font-weight:800;
	margin-bottom:1px;
    color:var(--dark-blue);
}

.logo-sub{
    font-size:20px;
    font-weight:700;
    color:var(--gold);
    letter-spacing:1px;
}

@media(max-width:768px){

    .logo-img{
        height:40px;
    }

    .logo-main{
        font-size:16px;
    }

    .logo-sub{
        font-size:16px;
    }

}
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 25px;
        }

.nav-item{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:14px;
    font-weight:500;
    color:var(--text-dark);
    position:relative;
    padding:5px 0;
}

        .nav-item.active {
            color: var(--gold);
        }

.nav-item.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0px;
    width:100%;
    height:1px;
    background:var(--gold);
}
        .nav-item:hover {
            color: var(--gold);
        }

        /* Mobil Menü Butonu */
        .menu-toggle {
            display: none;
            font-size: 24px;
            color: var(--dark-blue);
            cursor: pointer;
        }

        /* --- 3. HERO SECTION --- */
        .hero {
            background: linear-gradient(135deg, #ffffff 45%, #f0f4f8 45%);
            padding: 20px 0 40px 0;
            position: relative;
            overflow: hidden;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            align-items: center;
            gap: 0px;
        }

        .hero-sub {
            font-size: 13px;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .hero-title {
            font-size: 40px;
            font-weight: 700;
            color: var(--dark-blue);
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .hero-title span {
            color: var(--gold);
        }

        .hero-desc {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 450px;
        }

        .hero-desc strong {
            color: var(--text-dark);
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }
        
        @media(max-width:480px){

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .hero-buttons .btn{
        width:100%;
    }

}

        .hero-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Şablondaki şehir silüeti ve kamyon kombinasyonu görünümü için placeholder */
        .hero-bg-mock {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            background-color: #ddd;
        }
        
        .hero-bg-mock{
    aspect-ratio: 3 / 2;
    width:100%;
    object-fit:cover;
}

        /* --- 4. ÖZELLİKLER (FEATURES BAR) --- */
        .features-bar {
            margin-top: 20px;
            position: relative;
            z-index: 10;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: var(--white);
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            overflow: hidden;
            padding: 10px;
        }

        .feature-card {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 25px 20px;
            border-right: 1px solid #edf2f7;
        }

        .feature-card:last-child {
            border-right: none;
        }

        .feature-icon {
            background-color: var(--dark-blue);
            color: var(--white);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .feature-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--dark-blue);
            margin-bottom: 5px;
        }

        .feature-info p {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }

@media (max-width:768px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
        padding:0;
        border-radius:8px;
    }

    .feature-card{
        gap:10px;
        padding:10px 7px;
		align-items:center;
        border-right:1px solid #edf2f7;
        border-bottom:1px solid #edf2f7;
    }
	
        

    .feature-card:nth-child(2n){
        border-right:none;
    }

    .feature-card:nth-last-child(-n+2){
        border-bottom:none;
    }

    .feature-icon{
        width:40px;
        height:40px;
        font-size:15px;
    }

    .feature-info h4{
        font-size:14px;
        margin-bottom:3px;
        line-height:1.25;
    }

    .feature-info p{
        font-size:12px;
        line-height:1.45;
        margin:0;
    }
}

/* =========================
   HİZMETLERİMİZ
========================= */

.services-section{
    padding:40px 10px;
    background:#fff;
}

.section-header{
    text-align:center;
    margin-bottom:30px;
}

.section-tag{
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:10px;
}

.section-title{
    font-size:34px;
    font-weight:700;
	margin-bottom:15px;
    color:var(--dark-blue);
}

.services-side-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    position:relative;
    min-height:280px;
    border-radius:8px;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    padding:25px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-4px);
}

.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.65) 0%,
        rgba(0,0,0,.30) 45%,
        rgba(0,0,0,.10) 100%
    );
    z-index:1;
}

.service-content{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
}

.service-title-btn{
    display:inline-block;
    background:#fff;
    color:#111;
    text-decoration:none;
    padding:8px 14px;
    border-radius:2px;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.service-title-btn:hover{
    background:#f3f3f3;
    color:#000;
}

@media(max-width:992px){

    .services-side-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .services-side-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .service-card{
        min-height:180px;
        padding:12px;
    }

    .service-title-btn{
        font-size:12px;
        padding:7px 10px;
    }

    .service-link{
        font-size:11px;
        padding:6px 10px;
    }

    .section-title{
        font-size:28px;
    }

}
/* =========================
   HAKKIMIZDA
========================= */

.about-section{
    position:relative;
    padding:40px 10px;
    background:#eef3f8;
    overflow:hidden;
}

.about-section::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:350px;
    height:350px;
    background:rgba(200,164,93,.08);
    border-radius:50%;
}

.about-section::after{
    content:"";
    position:absolute;
    bottom:-180px;
    left:-120px;
    width:350px;
    height:350px;
    background:rgba(200,164,93,.08);
    border-radius:50%;
}

.about-section .container{
    position:relative;
    z-index:1;
}
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.about-content .section-tag{
    color:var(--gold);
    margin-bottom:12px;
}

.about-content .section-title{
    font-size:36px;
    margin-bottom:20px;
    color:var(--dark-blue);
    line-height:1.3;
}

.about-desc{
    font-size:15px;
    line-height:1.9;
    color:var(--text-muted);
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:30px 0;
}

.about-feature{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    font-weight:500;
    color:var(--dark-blue);
}


.about-buttons{
    display:flex;
    gap:15px;
    margin-top:30px;
}

@media(max-width:992px){

    .about-grid{
        gap:0px;
    }

    .about-content .section-title{
        font-size:30px;
    }
}

@media(max-width:768px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-content{
        order:1;
    }

    .about-image{
        order:2;
    }

    .about-image img{
        height:300px;
    }

    .about-content .section-title{
        font-size:26px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .about-buttons{
        flex-direction:column;
    }
}

/* --- RESPONSIVE TASARIM (MOBİL UYUMLULUK) --- */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .feature-card:nth-child(2) {
                border-right: none;
            }
            .feature-card:nth-child(3) {
                border-top: 1px solid #edf2f7;
            }
            .feature-card:nth-child(4) {
                border-top: 1px solid #edf2f7;
                border-left: none;
            }
            .services-wrapper {
                grid-template-columns: 1fr;
            }
            
            /* =======================================================
               TAMAMEN SOLA YANAŞIK MOBİL VE TABLET COUNTER AYARLARI
            ======================================================= */
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0px; /* Boşluk kontrolü tamamen padding ile sağlanıyor */
                padding: 0 20px; /* Izgaranın genel olarak ekrandan biraz içeride durması için */
            }

            .counter-item {
                display: flex;
                justify-content: flex-start; /* İçeriği tamamen sola yaslar */
                align-items: center;
                gap: 15px;
                
                /* Tamamen sola yanaşma için sol padding sıfırlandı, sadece dikey boşluk verildi */
                padding: 20px 10px; 
                
                /* Varsayılan sağ çizgileri temizle */
                border-right: none; 
            }

            /* Çifterli düzende sadece soldaki 1. ve 3. elemanların sağına çizgi çek */
            .counter-item:nth-child(odd) {
                border-right: 1px solid rgba(255, 255, 255, 0.1);
            }

            /* İlk iki elemanın (üst satır) altına çizgi çekerek alt satırdan ayır */
            .counter-item:nth-child(1), .counter-item:nth-child(2) {
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
        }

        @media (max-width: 768px) {
            .nav-menu, .header .btn-gold {
                display: none; /* Basitlik adına mobilde gizlendi, hamburger aktifleştirilebilir */
            }
            .menu-toggle {
                display:flex;
            }
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-desc {
                margin: 0 auto 30px auto;
            }
            .hero-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .counter-grid {
                grid-template-columns: repeat(2, 1fr); 
            }
            
            .hero-title {
                font-size: 32px;
            }
        }
        
        /* Mobil Menü */
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#fff;
    z-index:2000;
    padding:80px 30px;
    transition:.3s;
    box-shadow:-5px 0 20px rgba(0,0,0,.1);
}

.mobile-menu.active{
    right:0;
}

.mobile-menu a{
    display:block;
    padding:12px 0;
    border-bottom:1px solid #eee;
    color:var(--dark-blue);
    font-weight:600;
}

.menu-toggle{
    display:none;
    position:relative;
    width:40px;
    height:40px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:3002;
}

.menu-open-icon,
.menu-close-icon{
    position:absolute;
    width:28px;
    height:28px;
    transition:.25s ease;
}

.menu-close-icon{
    opacity:0;
    visibility:hidden;
}

.menu-toggle.active .menu-open-icon{
    opacity:0;
    visibility:hidden;
}

.menu-toggle.active .menu-close-icon{
    opacity:1;
    visibility:visible;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-320px;
    width:320px;
    height:100vh;
    background:#fff;
    z-index:3001;
    padding:90px 30px 30px;
    transition:.3s;
    box-shadow:-5px 0 20px rgba(0,0,0,.15);
}

.mobile-menu.active{
    right:0;
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:3000;
}

@media(max-width:768px){

    .nav-menu,
    .btn-gold{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }

}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

.menu-toggle{
    display:none;
    position:relative;
    width:32px;
    height:32px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:3001;
}

@media(max-width:768px){

    .menu-toggle{
        display:flex;
    }

}


/* --- 4. YENİ NESİL KURUMSAL FOOTER --- */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 30px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-brand .logo {
    margin-bottom: 20px;
}
.footer-brand .logo-icon {
    color: var(--white);
    font-size: 26px;
}
.footer-brand .logo-title {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
}
.footer-brand .logo-main {
    color: var(--white);
    font-size: 16px;
}
.footer-brand .logo-sub {
    color: var(--gold);
    font-size: 16px;
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: inherit;
}
.footer-socials a:hover {
    background: var(--gold);
}
.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
}
.footer-links li {
    margin-bottom: 12px;
    font-size: 13px;
    list-style: none;
}
.footer-links a {
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}
.footer-contact-list {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
}
.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-list .contact-label {
    display: block;
    font-weight: 500;
    color: #fff;
}
.footer-contact-list a {
    color: inherit;
    text-decoration: none;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 20px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: inherit;
    text-decoration: none;
}
.footer-bottom-links a:hover {
    color: #fff;
}

.icon{
    width:18px;
    height:18px;
    fill:currentColor;
    flex-shrink:0;
}

.btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.menu-toggle .icon{
    width:28px;
    height:28px;
}

.counter-icon .icon{
    width:30px;
    height:30px;
}

.feature-icon .icon{
    width:22px;
    height:22px;
}

.top-contact .icon,
.top-social .icon{
    width:18px;
    height:18px;
}

/* Mobil Uyum İçin Küçük Grid Desteği */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.nav-item .icon{
    width:12px;
    height:12px;
}

/* HİZMET BÖLGELERİ */

.districts-section{
    padding:40px 0px;
    background:#f8f9fb;
}

.districts-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.district-item{
    background:#fff;
    border:1px solid #e8edf3;
    padding:14px 18px;
    border-radius:6px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:500;
    color:var(--dark-blue);
}

/* CTA */

.modern-cta{
    padding:50px 0;
    text-align:center;
    color:#fff;

background:
    linear-gradient(
        rgba(8,24,48,.92),
        rgba(8,24,48,.92)
    ),
    url('https://ankarakucuknakliyat.com.tr/wp-content/uploads/2026/06/sehirler-arasi-nakliyat-kart-gorseli.webp');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.modern-cta h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
    color:#fff;
}

.modern-cta p{
    max-width:750px;
    margin:0 auto 30px;
    opacity:.9;
    line-height:1.8;
}

.cta-button-group{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-phone{
    background:var(--gold);
    color:#fff;
}

.btn-whatsapp{
    background:#fff;
    color:#111;
}

@media(max-width:768px){

    .modern-cta{
        background-attachment:scroll;
    }

}

/* FAQ */

.faq-section{
    padding:40px 0;
    background:#fff;
}

.faq-grid{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    border:1px solid #e5e7eb;
    border-radius:8px;
    margin-bottom:15px;
    overflow:hidden;
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    cursor:pointer;
    font-weight:600;
    color:var(--dark-blue);
    background:#fff;
}

.faq-answer{
    display:none;
    padding:20px;
    border-top:1px solid #eee;
    line-height:1.8;
    color:var(--text-muted);
}

@media(max-width:768px){

    .districts-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .modern-cta h2{
        font-size:28px;
    }

}

.faq-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.faq-item{
    border:1px solid #e5e7eb;
    border-radius:8px;
    overflow:hidden;
    margin-bottom:0;
}

@media(max-width:768px){

    .faq-grid{
        grid-template-columns:1fr;
    }

    .districts-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .modern-cta h2{
        font-size:28px;
    }

}
/* Mobil Menü */
.mobile-menu .icon{
    width:14px;
    height:14px;
}

/* Hizmet Bölgeleri */
.district-item .icon{
    width:16px;
    height:16px;
    color:var(--gold);
}

/* CTA */
.btn-phone .icon,
.btn-whatsapp .icon{
    width:18px;
    height:18px;
}

/* FAQ */
.faq-icon{
    width:18px;
    height:18px;
    transition:.3s;
    flex-shrink:0;
}

.faq-item.active .faq-icon{
    transform:rotate(180deg);
}

/* Footer Sosyal */
.footer-socials .icon{
    width:18px;
    height:18px;
}

/* Footer Link */
.footer-links .icon{
    width:12px;
    height:12px;
}

/* Footer İletişim */
.footer-contact-list .icon{
    width:18px;
    height:18px;
    color:var(--gold);
    margin-top:2px;
}

/* Hero Butonları */
.hero-buttons .icon{
    width:16px;
    height:16px;
}

/* Teklif Al Butonu */
.btn-gold .icon{
    width:16px;
    height:16px;
}

.mobile-close{
    position:absolute;
    top:20px;
    right:20px;
    cursor:pointer;
    color:var(--dark-blue);
}

.mobile-close .icon{
    width:26px;
    height:26px;
}

.header{
    background:#fff;
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:3000;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

/* ==========================================================================
   1. GENEL KONTEYNER VE HERO ALANI
   ========================================================================== */
.page-container {
    max-width: 1000px;
    margin: 0 auto; /* Sayfada ortalanması için eklendi */
    width: 100%;
}

.page-hero {
    min-height: 200px;
    padding: 60px 0 60px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.page-hero .page-container {
    position: relative;
    z-index: 2;
}

.page-hero .section-tag,
.page-hero .section-title {
    color: #fff;
}

/* ==========================================================================
   2. SAYFA İÇERİK ALANI (KART YAPISI)
   ========================================================================== */
.page-content {
    max-width: 1000px;
    margin: 20px auto; /* Yukarıdan/aşağıdan boşluk ve yatayda ortalama */
    padding: 0 20px; /* Alt-üst 0, sağ-sol 15px */
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: transform .3s ease, box-shadow .3s ease; /* Transition optimize edildi */
}

/* ==========================================================================
   3. BAŞLIKLAR VE ALT ÇİZGİLERİ
   ========================================================================== */
.page-content h2,
.page-content h3,
.page-content h4 {
    position: relative;
    color: var(--dark-blue);
    font-weight: 700;
    line-height: 1.4;
    margin: 30px 0 20px; /* Üst boşluk elementlerden ayrışması için biraz artırıldı */
    padding-bottom: 12px;
}

.page-content h2::after,
.page-content h3::after,
.page-content h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 20px;
}

.page-content h2 { font-size: 25px; }
.page-content h3 { font-size: 20px; }
.page-content h4 { font-size: 18px; }

/* ==========================================================================
   4. İÇERİK ELEMENTLERİ (P, UL, OL, IMG, A)
   ========================================================================== */
.page-content p {
    margin: 20px 0;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 25px;
}


.page-content a {
    color: var(--gold);
    font-weight: 500;
    text-decoration: none; /* Temiz bir görünüm için alt çizgi kaldırıldı */
}

.page-content a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   5. RESPONSIVE (MOBİL UYUMLULUK)
   ========================================================================== */
@media (max-width: 768px) {
    .page-content {
        margin: 10px auto; /* Mobilde dış boşluk azaltıldı */
    }

    .page-content h2 { font-size: 20px; }
    .page-content h3 { font-size: 18px; }
    .page-content h4 { font-size: 17px; }
}
.price-calculator{
    padding:30px 0;
    background:#f8fafc;
}

.calc-box{
    background:#fff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.calc-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group select{
    width:100%;
    height:50px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 15px;
}

.calc-result{
    margin-top:25px;
    padding:25px;
    border-radius:10px;
    background:#f8fafc;
    text-align:center;
}

.result-km{
    font-size:18px;
    margin-bottom:10px;
}

.result-price{
    font-size:38px;
    font-weight:800;
    color:var(--gold);
    margin-bottom:10px;
}

@media(max-width:768px){

    .calc-grid{
        grid-template-columns:1fr;
    }

    .result-price{
        font-size:28px;
    }

}

.price-calculator{
    padding:50px 0;
    background:#eef3f8;
    border-top:1px solid #dde5ee;
    border-bottom:1px solid #dde5ee;
}

.price-calculator .section-header{
    margin-bottom:40px;
}

.price-calculator .section-tag{
    color:var(--gold);
}

.price-calculator .section-title{
    color:var(--dark-blue);
}

.calc-box{
    position:relative;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:35px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.calc-box::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(196,161,90,.06);
    z-index:0;
}

.calc-box::after{
    content:"";
    position:absolute;
    left:-120px;
    bottom:-120px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(10,42,86,.04);
    z-index:0;
}

.calc-box > *{
    position:relative;
    z-index:2;
}

.calc-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:var(--dark-blue);
}

.form-group select{
    width:100%;
    height:52px;
    padding:0 15px;
    border:1px solid #d9e0e7;
    border-radius:8px;
    background:#fff;
    font-size:15px;
}

.form-group select:focus{
    outline:none;
    border-color:var(--gold);
}

.calc-result{
    margin-top:25px;
    padding:25px;
    border-radius:12px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    text-align:center;
}

.result-km{
    font-size:18px;
    margin-bottom:10px;
    color:var(--dark-blue);
}

.result-price{
    font-size:38px;
    font-weight:800;
    color:var(--gold);
    margin-bottom:10px;
}

.calc-result small{
    display:block;
    color:#6b7280;
}

@media(max-width:768px){

    .price-calculator{
        padding:40px 0;
    }

    .calc-box{
        padding:20px;
    }

    .calc-grid{
        grid-template-columns:1fr;
    }

    .result-price{
        font-size:28px;
    }

}

/* ==========================================================================
   GİRİŞ VE KAYDIRMA ANİMASYONLARI (FADE-IN UP)
   ========================================================================== */

/* Animasyon uygulanacak elementlerin ilk (görünmez) hali */
.animate-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

/* Sayfa yüklendiğinde veya kaydırıldığında eklenecek sınıf */
.animate-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Elementlerin sırayla (ardışık) gelmesi için gecikme (delay) tanımları */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Hero görseline özel hafif büyüme (zoom-out) efekti */
.page-hero-bg {
    transform: scale(1.1);
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.page-hero.loaded .page-hero-bg {
    transform: scale(1);
}

