@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
    --brand-dark: #0f172a; /* Slate 900 */
    --brand-darker: #020617; /* Slate 950 */
    --accent-primary: #e11d48; /* Rose 600 */
    --accent-secondary: #0284c7; /* Sky 600 */
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --wa-green: #25d366;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-accent { color: var(--accent-primary) !important; }


html {
    max-width: 100%;
    overflow-x: visible; /* Prevents sticky bug on desktop */
}
@media (max-width: 991px) {
    html, body {
        overflow-x: clip !important;
    }
}
body {
    max-width: 100%;
    overflow-x: hidden; /* Hides horizontal scroll caused by AOS */
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.03em;
}

a {
    transition: var(--transition);
    text-decoration: none;
}

/* ── Typography & Badges ───────────────────────────────── */
.section-badge {
    display: inline-block;
    color: var(--accent-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}
.section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 2px;
    background: var(--accent-primary);
}
.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* ── Navbar ────────────────────────────────────────────── */
.navbar {
    background: var(--bg-white) !important;
    padding: 1.5rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--accent-primary) !important;
    letter-spacing: -0.05em;
    gap: 0.5rem;
}
.navbar-brand img {
    max-height: 40px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.navbar-brand span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60vw;
}
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar-brand img {
        max-height: 32px;
        max-width: 120px;
    }
    .navbar-brand span {
        max-width: 45vw; /* mobilde taşmayı önler */
    }
}
.nav-link {
    font-weight: 700;
    color: var(--brand-dark) !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem !important;
}
.nav-link:hover {
    color: var(--accent-primary) !important;
}

/* ── Avant-Garde Hero ──────────────────────────────────── */
.avant-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    overflow: hidden;
}
.avant-hero-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 55%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}
.avant-hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.avant-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
}
.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    color: var(--brand-dark);
}
.hero-title .text-accent {
    color: var(--accent-primary);
}
.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hero-desc {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
    max-width: 460px;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}
@media (max-width: 991px) {
    .avant-hero-bg {
        width: 100%;
        clip-path: none;
        opacity: 0.15;
    }
    .avant-hero-bg::after { display: none; }
    .hero-content-wrapper { text-align: center; }
    .hero-desc { margin: 0 auto 2.5rem; }
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-primary-custom {
    background: var(--accent-primary);
    color: white;
    border-radius: 0; /* Sharp edges */
    padding: 1rem 2.5rem;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}
.btn-primary-custom:hover {
    background: #be123c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
}
.btn-outline-custom {
    border: 2px solid var(--brand-dark);
    color: var(--brand-dark);
    border-radius: 0;
    padding: 0.9rem 2.5rem;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: transparent;
}
.btn-outline-custom:hover {
    background: var(--brand-dark);
    color: white;
}

/* ── Neden Biz ──────────────────────────────────────────── */
.why-section {
    background-color: var(--bg-light);
    padding: 8rem 0;
}
.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--bg-white);
    border-left: 3px solid var(--accent-primary);
    transition: var(--transition);
}
.why-feature-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transform: translateY(-2px);
}
.why-feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(225, 29, 72, 0.07);
    color: var(--accent-primary);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-feature-item h5 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--brand-dark);
}
.why-feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}
@media (max-width: 575px) {
    .why-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Süreç (Process Diagram) ───────────────────────────── */
.process-section {
    background-color: var(--bg-white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Soft, elegant layered S-curves (Figma Style) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 300' preserveAspectRatio='none'%3E%3Cpath fill='%23f8fafc' d='M0,150 C300,50 600,250 1000,100 L1000,300 L0,300 Z'/%3E%3Cpath fill='%23f1f5f9' d='M0,200 C350,100 650,300 1000,150 L1000,300 L0,300 Z'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}
.process-wrapper {
    position: relative;
    margin-top: 4rem;
}
.process-line {
    position: absolute;
    top: 40px; /* Center of the circles */
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--bg-gray);
    z-index: 0;
}
.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}
.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 4px solid var(--bg-gray);
    color: var(--accent-secondary);
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}
.process-step:hover .step-circle {
    border-color: var(--accent-secondary);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.2);
}
.process-step h5 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 200px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .process-line { display: none; }
    
    .process-wrapper .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        row-gap: 2.5rem;
        column-gap: 1rem;
    }
    .process-wrapper .row > div {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .process-wrapper .row > div:nth-child(1) { grid-column: 1; grid-row: 1; }
    .process-wrapper .row > div:nth-child(2) { grid-column: 2; grid-row: 1; }
    .process-wrapper .row > div:nth-child(3) { grid-column: 2; grid-row: 2; }
    .process-wrapper .row > div:nth-child(4) { grid-column: 1; grid-row: 2; }

    .process-step { margin-bottom: 0; position: relative; }
    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        border-width: 3px;
    }
    .process-step h5 { font-size: 0.95rem; margin-bottom: 0.3rem; }
    .process-step p { font-size: 0.8rem; line-height: 1.4; padding: 0 5px; }

    /* Arrows */
    .process-step::after {
        content: '';
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.4;
    }
    /* 1 -> 2 */
    .process-wrapper .row > div:nth-child(1) .process-step::after {
        width: 20px; height: 20px;
        top: 20px;
        right: -18px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f172a'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E");
    }
    /* 2 -> 3 */
    .process-wrapper .row > div:nth-child(2) .process-step::after {
        width: 20px; height: 20px;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f172a'%3E%3Cpath fill-rule='evenodd' d='M8 1a.5.5 0 0 1 .5.5v11.793l3.146-3.147a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 .708-.708L7.5 13.293V1.5A.5.5 0 0 1 8 1z'/%3E%3C/svg%3E");
    }
    /* 3 -> 4 */
    .process-wrapper .row > div:nth-child(3) .process-step::after {
        width: 20px; height: 20px;
        top: 20px;
        left: -18px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f172a'%3E%3Cpath fill-rule='evenodd' d='M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z'/%3E%3C/svg%3E");
    }
}

/* ── Hizmetler (Dark Minimal Cards) ────────────────────── */
.services-section {
    background-color: var(--brand-dark);
    padding: 8rem 0;
    color: white;
}
.services-section .section-title { color: white; }
.services-section .text-muted { color: #94a3b8 !important; }
.service-card-v2 {
    position: relative;
    overflow: hidden;
    background: var(--brand-darker);
    aspect-ratio: 3/4;
    display: block;
}
.service-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: transform 0.8s ease, opacity 0.8s ease;
}
.service-card-v2:hover img {
    transform: scale(1.05);
    opacity: 0.2;
}
.service-card-v2 .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}
.service-card-v2:hover .content {
    transform: translateY(0);
}
.service-card-v2 h4 {
    color: var(--bg-white);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
.service-card-v2 p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin: 0;
}
.service-card-v2:hover p {
    opacity: 1;
}

/* ── Hizmetler Mobil Slider ─────────────────────────────── */
.services-slider-wrap {
    padding: 0;
}
.services-track {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
}
.services-track::-webkit-scrollbar { 
    display: none; 
}
.services-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: var(--transition);
}
.services-nav-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}
.services-nav-btn.prev-btn { left: -10px; }
.services-nav-btn.next-btn { right: -10px; }

@media (max-width: 991px) {
    .services-track > div { 
        scroll-snap-align: center; 
    }
    .service-card-v2 { 
        aspect-ratio: 1/1; /* Kartları daha küçük ve kare yapar */
    }
    .service-card-v2 h4 { 
        font-size: 1.25rem; 
    }
    
    /* Mobil için her zaman görünür detaylar ve sabit arkaplan */
    .service-card-v2 .content {
        transform: translateY(0) !important;
        padding: 1.5rem;
    }
    .service-card-v2 p {
        opacity: 1 !important;
    }
    .service-card-v2:hover img {
        transform: none !important;
        opacity: 0.5 !important; /* Varsayılan 0.5 opaklığı koru, daha fazla siyahlaşmasın */
    }
}
@media (min-width: 992px) {
    .services-track {
        overflow: visible !important;
        flex-wrap: wrap !important;
        scroll-snap-type: none;
    }
}

/* ── Hizmetler Listesi Kartları ─────────────────────────── */
.service-body {
    padding-top: 1rem;
}

/* ── Öncesi Sonrası (Peek Carousel) ────────────────────── */
.ba-section {
    background-color: var(--bg-light);
    padding: 8rem 0;
}

/* Outer flex: [arrow] [clip] [arrow] */
.ba-carousel-outer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1300px; /* Altın oran genişlik */
    margin: 0 auto;
    padding: 0 2rem;
}

/* Clip hides the overflow but track padding reveals side cards */
.ba-carousel-clip {
    flex: 1;
    overflow: hidden;
    padding: 2rem 0; /* vertical room for scale effect */
}

.ba-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 10%;       /* Kenarlardan mükemmel boşluk */
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Each slide is 80% of clip width (100% - 2×10%) */
.ba-slide {
    min-width: 80%;
    flex-shrink: 0;
    opacity: 0.35;
    transform: scale(0.90); /* Aktif olmayanları daha fazla küçültür */
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
                transform 0.6s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}
.ba-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Card shell */
.ba-card {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 32px 80px rgba(15,23,42,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.ba-card:hover {
    box-shadow: 0 40px 100px rgba(15,23,42,0.18);
}
.ba-card-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-white);
    text-align: center;
}
.ba-card-footer h4 {
    color: var(--brand-dark);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Before/After slider internals */
.ba-slider { position: relative; overflow: hidden; height: clamp(400px, 55vh, 550px); }
.ba-after-img, .ba-before-wrap img {
    width: 100%; height: 100%; object-fit: cover;
}
.ba-before-wrap {
    position: absolute; top: 0; left: 0; bottom: 0;
    width: 50%; overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
}
.ba-before-wrap img { max-width: none; width: 100vw; }
.ba-handle {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-dark);
    font-size: 1.15rem;
    pointer-events: none; z-index: 10;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.15);
}
.ba-range {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0; cursor: ew-resize; z-index: 20;
}
.ba-badge {
    position: absolute; top: 1.25rem;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white; padding: 0.4rem 1.1rem;
    font-size: 0.75rem; font-weight: 700; z-index: 5;
    text-transform: uppercase; letter-spacing: 0.1em;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.ba-badge-l { left: 1rem; }
.ba-badge-r { right: 1rem; }

/* Nav arrows — kırmızı daire */
.ba-nav-btn {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: transparent;
    border: 1.5px solid rgba(15, 23, 42, 0.15);
    color: var(--brand-dark);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}
.ba-nav-btn:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}
.ba-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Dots */
.ba-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.ba-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.ba-dot.active {
    background: var(--accent-primary);
    width: 28px;
}

/* ── Öncesi / Sonrası Mobil Özel Tasarımı ────────────────────── */
@media (max-width: 991px) {
    .ba-section {
        padding: 3rem 0 5rem;
    }

    /*
     * Outer: display:block yaparak clip tam genişliği alır.
     * Oklar absolute ile clip üzerine bindirilir.
     */
    .ba-carousel-outer {
        display: block;
        position: relative;
        padding: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }

    /* Carousel clip tam genişlik, outer'ı doldurur */
    .ba-carousel-clip {
        width: 100%;
        padding: 0 0 1rem 0;
    }

    /*
     * Oklar kartın sol/sağ üst köşesine — badge'lerin (top:1.25rem) üstünde.
     * Belirgin görünüm: koyu arka plan + beyaz ikon.
     */
    .ba-nav-btn {
        position: absolute;
        top: 0.75rem;
        z-index: 40;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        background: var(--brand-dark);
        border-color: var(--brand-dark);
        color: #fff;
        transform: none !important;
        box-shadow: 0 4px 16px rgba(15,23,42,0.35);
    }
    .ba-nav-btn:hover,
    .ba-nav-btn:active,
    .ba-nav-btn:focus {
        background: var(--brand-dark);
        border-color: var(--brand-dark);
        color: #fff;
        transform: none !important;
        box-shadow: 0 4px 16px rgba(15,23,42,0.35);
    }
    /* Sol ok: kartın sol iç kenarı */
    #baPrev { left: 1rem; }
    /* Sağ ok: kartın sağ iç kenarı */
    #baNext { right: 1rem; }

    .ba-track {
        padding: 0 2%;
        gap: 0.5rem;
    }
    .ba-slide {
        min-width: 96%;
        transform: scale(0.97);
    }
    .ba-slide.active {
        transform: scale(1);
    }

    /* Kartlar daha büyük */
    .ba-slider {
        height: clamp(520px, 75vh, 680px);
    }
    .ba-card {
        border-radius: 16px;
    }
    .ba-card-footer {
        padding: 1.2rem;
    }
    .ba-card-footer h4 {
        font-size: 1.2rem;
    }
}

/* ── FAQ Accordion ─────────────────────────────────────── */
.faq-section {
    background-color: var(--bg-white);
    padding: 8rem 0;
}
.faq-item {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    border-radius: 0 !important;
    margin-bottom: 0;
}
.accordion-button {
    font-weight: 800; font-size: 1.2rem;
    color: var(--brand-dark);
    background: transparent !important;
    box-shadow: none !important;
    padding: 2rem 1rem;
}
.accordion-button:not(.collapsed) {
    color: var(--accent-primary);
}
.accordion-button::after {
    background-size: 1rem;
}
.accordion-body {
    color: var(--text-muted);
    padding: 0 1rem 2rem;
    line-height: 1.8;
}

/* ── CTA Kart ──────────────────────────────────────────── */
.cta-section {
    background: var(--bg-light);
    padding: 5rem 0;
}
.cta-card {
    background: var(--brand-dark);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(15,23,42,0.18);
}
.cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, #fb7185 60%, transparent 100%);
}
.cta-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 3.5rem 4rem;
}
.cta-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}
.cta-card-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}
.cta-card-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.7;
    max-width: 380px;
}
.cta-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex-shrink: 0;
    min-width: 220px;
}
.cta-btn-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255,255,255,0.05);
    letter-spacing: 0.01em;
}
.cta-btn-tel:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    color: white;
    transform: translateY(-2px);
}
.cta-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    background: var(--wa-green);
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.01em;
}
.cta-btn-wa:hover {
    background: #1da851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
@media (max-width: 768px) {
    .cta-card-inner {
        flex-direction: column;
        padding: 2.5rem 2rem;
        text-align: center;
    }
    .cta-card-actions {
        width: 100%;
    }
    .cta-card-desc {
        max-width: 100%;
    }
}

/* ── WhatsApp Navbar Butonu ────────────────────────────── */
.btn-wa-pulse {
    background: var(--wa-green);
    color: white !important;
    border: 1.5px solid var(--wa-green);
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.btn-wa-pulse:hover {
    background: white;
    color: var(--wa-green) !important;
    box-shadow: 0 6px 18px rgba(37,211,102,0.2);
}

/* ── WhatsApp Sabit Buton (genişleyen pill) ────────────── */
.wa-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1050;
    background: var(--wa-green);
    color: white;
    height: 52px;
    width: 52px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(37,211,102,0.28);
    transition: width 0.4s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.4s ease;
    text-decoration: none;
}
.wa-fixed:hover {
    width: 172px;
    padding: 0 14px;
    gap: 0.55rem;
    box-shadow: 0 10px 32px rgba(37,211,102,0.38);
    color: white;
}
.wa-fixed i {
    font-size: 1.45rem;
    flex-shrink: 0;
    line-height: 1;
}
.wa-fixed span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 0.2s ease 0.15s,
                max-width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.wa-fixed:hover span {
    opacity: 1;
    max-width: 120px;
}

/* ── About Us Page (Hakkımızda) ────────────────────────── */
.page-hero {
    background: var(--bg-light);
    padding: 10rem 0 5rem;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.page-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}
.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 500;
}

.timeline-section {
    padding: 8rem 0;
    background: var(--bg-white);
}
.timeline-main-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent-secondary);
    margin-bottom: 3rem;
    margin-left: 2rem;
    letter-spacing: -0.03em;
}
.custom-timeline {
    border-left: 3px solid var(--accent-secondary);
    padding-left: 2.5rem;
    margin-left: 10px;
}
.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: calc(-2.5rem - 7.5px);
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-secondary);
}
.timeline-year {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-secondary);
    margin-bottom: 0.3rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
.timeline-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.8rem;
}
.timeline-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.mission-vision-section {
    padding: 5rem 0 6rem;
    background: var(--bg-light);
}
.mv-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    height: 100%;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 16px 16px 0 0;
}
.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
    border-color: rgba(225,29,72,0.15);
}
.mv-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-primary);
    line-height: 1;
    letter-spacing: -0.04em;
    opacity: 0.15;
    margin-bottom: 1.25rem;
    user-select: none;
}
.mv-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.mv-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 38ch;
}

/* ── İletişim Sayfası ───────────────────────────────────── */
.contact-section {
    padding: 3rem 0 6rem;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}
.contact-section .container {
    position: relative;
    z-index: 1;
}

/* ── İletişim: Üst bilgi satırı ── */
.contact-header-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(0,0,0,0.06);
    margin-bottom: 3rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-stat-card {
    background: var(--bg-white);
    padding: 2rem 2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.contact-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.contact-stat-card:hover::after,
.contact-stat-card:focus::after {
    transform: scaleX(1);
}
.contact-stat-card:hover {
    background: var(--bg-light);
}
.cs-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(225,29,72,0.08);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
}
.contact-stat-card:hover .cs-icon {
    background: var(--accent-primary);
    color: white;
}
.cs-wa .cs-icon {
    background: rgba(37,211,102,0.1);
    color: var(--wa-green);
}
.contact-stat-card:hover .cs-wa-icon,
.cs-wa:hover .cs-icon {
    background: var(--wa-green);
    color: white;
}
.cs-text small {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.cs-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.3;
}

/* ── Ana içerik: Form + Bilgi kartı ── */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

/* Sol: Form kartı */
.contact-form-panel {
    background: var(--bg-white);
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.07);
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
}
.contact-form-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 2rem; right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, #fb7185 100%);
    border-radius: 0 0 4px 4px;
}
.contact-form-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 900;
    color: var(--brand-dark);
    letter-spacing: -0.04em;
    margin-bottom: 0.4rem;
    line-height: 1.1;
}
.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Form alanları — soft bordered */
.cf-field {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    margin-bottom: 0;
}
.cf-field label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}
.cf-field:focus-within label {
    color: var(--accent-primary);
}
.cf-field label span {
    color: var(--accent-primary);
}
.cf-field input,
.cf-field textarea {
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    font-size: 0.97rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--brand-dark);
    background: var(--bg-light);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    resize: none;
    width: 100%;
}
.cf-field input:focus,
.cf-field textarea:focus {
    border-color: var(--accent-primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(225,29,72,0.08);
}
.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: var(--text-muted);
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.92rem;
}
/* cf-field-line artık kullanılmıyor, gizle */
.cf-field-line { display: none; }

/* Submit butonu — sadece contact formu için yumuşat */
.contact-form-panel .btn-primary-custom {
    border-radius: 10px;
    padding: 0.85rem 2.5rem;
    font-size: 0.88rem;
    box-shadow: 0 4px 16px rgba(225,29,72,0.2);
}
.contact-form-panel .btn-primary-custom:hover {
    box-shadow: 0 8px 24px rgba(225,29,72,0.35);
    transform: translateY(-2px);
}

/* Sağ: Bilgi + CTA kartı */
.contact-info-panel {
    background: var(--brand-dark);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 100px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    border-radius: 16px;
}
.contact-panel-title {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}
.contact-panel-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-info-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    transition: var(--transition);
}
.contact-info-item:last-child {
    border-bottom: none;
}
a.contact-info-item:hover .cii-icon {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.05);
}
a.contact-info-item:hover small {
    color: rgba(255,255,255,0.6);
}
a.contact-info-item:hover span {
    color: white;
}
.cii-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 10px;
    transition: var(--transition);
}
.cii-wa {
    background: rgba(37,211,102,0.12);
    color: #4ade80;
}
.contact-info-item small {
    display: block;
    color: rgba(255,255,255,0.35);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    margin-bottom: 0.15rem;
}
.contact-info-item span {
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.4;
}

/* Divider çizgisi */
.contact-panel-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 0 0 1.75rem;
}

.contact-wa-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.9rem 1.5rem;
    background: var(--wa-green);
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.contact-wa-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    border-radius: 10px;
}
.contact-wa-cta:hover::before {
    transform: translateX(0);
}
.contact-wa-cta:hover {
    background: #1da851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* Alert */
.contact-alert {
    border-radius: 0;
    border-left: 4px solid;
    font-weight: 600;
}

/* Harita */
.contact-map {
    margin-top: 3rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.contact-map iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}
.contact-map:hover iframe {
    filter: grayscale(0%);
}

/* ══ İLETİŞİM — FORMSUZ TASARIM ═══════════════════════════ */
.ci-section {
    padding: 3rem 0 6rem;
}

/* Kartlar grid */
.ci-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.ci-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
a.ci-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: transparent;
    text-decoration: none;
    color: inherit;
}
a.ci-card:hover .ci-card-cta { color: var(--accent-primary); }
a.ci-card.ci-card-wa:hover .ci-card-cta { color: #25d366; }

.ci-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}
.ci-icon-red  { background: #fff0f3; color: var(--accent-primary); }
.ci-icon-wa   { background: #f0fdf4; color: #25d366; }
.ci-icon-blue { background: #eff6ff; color: #2563eb; }
.ci-icon-gray { background: #f8fafc; color: #64748b; }

.ci-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.ci-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
}
.ci-card-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    word-break: break-word;
    line-height: 1.4;
}
.ci-card-cta {
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    margin-top: 4px;
    transition: color 0.2s;
}

/* Sayfa üst intro başlık */
.ci-page-intro {
    padding: 2rem 0 0.5rem;
}
.ci-page-intro-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}
.ci-page-intro-desc {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    margin: 0;
}

/* Harita tam genişlik */
.ci-map-full {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}
.ci-map-full iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.4s;
}
.ci-map-full:hover iframe { filter: grayscale(0); }

@media (max-width: 991px) {
    .ci-cards-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .ci-contact-btn {
        flex: 1 1 30%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1rem 0.5rem;
        gap: 0.5rem;
    }
    .ci-contact-btn .ci-card-icon {
        margin-bottom: 0.25rem;
        width: 42px;
        height: 42px;
    }
    .ci-contact-btn .ci-card-icon i { font-size: 1.25rem; }
    .ci-contact-btn .ci-card-body { align-items: center; gap: 0.25rem; }
    .ci-contact-btn .ci-card-label { font-size: 0.65rem; }
    .ci-contact-btn .ci-card-value { font-size: 0.8rem; word-break: break-all; }
    .ci-contact-btn .ci-card-cta { display: none; }
    
    .ci-info-box {
        flex: 1 1 100%;
        margin-top: 0.5rem;
    }
    .ci-map-full iframe { height: 260px; }
}
/* ══════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    .contact-header-row {
        grid-template-columns: 1fr;
    }
    .contact-wrap {
        grid-template-columns: 1fr;
    }
    .contact-info-panel {
        position: static;
    }
}

/* ── Mobile Responsiveness ─────────────────────────────── */
@media (max-width: 768px) {
    /* Section Spacing */
    .why-section, 
    .process-section, 
    .services-section, 
    .ba-section, 
    .faq-section,
    .timeline-section {
        padding: 4rem 0;
    }
    .mission-vision-section {
        padding: 3rem 0 4rem;
    }
    
    /* Process Section Background Fix for Mobile */
    .process-section::before {
        display: none;
    }
    
    /* Before/After Carousel */
    .ba-slider {
        height: 240px;
    }
    .ba-carousel-outer {
        gap: 0.5rem;
        padding: 0 0.75rem;
    }
    .ba-track {
        padding: 0 8%;
    }
    .ba-slide {
        min-width: 84%;
    }
    .ba-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .ba-card-footer {
        padding: 1rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 4rem 0;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    
    /* Feature Items & MV Cards */
    .why-feature-item {
        padding: 1rem 0.75rem;
        gap: 0.85rem;
    }
    .why-feature-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .why-feature-item h5 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    .why-feature-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .mv-card {
        padding: 2rem 1.5rem;
    }
    
    /* FAQ Accordion */
    .accordion-button {
        padding: 1.5rem 0.5rem;
        font-size: 1.1rem;
    }
    .accordion-body {
        padding: 0 0.5rem 1.5rem;
    }
    
    /* Hero Section */
    .hero-content-wrapper {
        padding: 3rem 0;
    }
    
    /* Contact Page */
    .contact-section {
        padding: 3rem 0 5rem;
    }
    .contact-info-panel,
    .contact-form-panel {
        padding: 2.5rem 1.5rem;
    }

    /* Timeline Mobile Fixes */
    .timeline-main-title {
        font-size: 1.7rem;
        margin-left: 0;
        margin-bottom: 2rem;
    }
    .custom-timeline {
        padding-left: 1.25rem;
    }
    .timeline-dot {
        left: calc(-1.25rem - 6px);
        width: 10px;
        height: 10px;
        top: 0.4rem;
    }
    .timeline-item {
        margin-bottom: 2rem;
    }
    .timeline-year {
        font-size: 1.5rem;
    }
    .timeline-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    .timeline-desc {
        font-size: 0.95rem;
    }
}

/* ── Utility overrides ─────────────────────────────────── */
img { max-width: 100%; height: auto; }
html { scroll-behavior: smooth; }
