:root {
    --bg-color: #f8f9fa;
    --text-color: #333333;
    --accent-color: #0d6efd;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* ========== HEADER & NAV ========== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease;
}

.main-header.nav-solid-blue,
.main-header.nav-dark-bar {
    background: #0a192f !important;
}

.navbar {
    padding: 0;
}

/* 3 kolonlu grid: logo | menü | buton */
.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 2.5rem;
    height: 90px;
    /* Navbar inceltildi (önceden 140px) */
    transition: height 0.3s ease;
}

/* Logo — sol */
.navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
}



.brand-logo:hover {
    opacity: 0.85;
}

/* Menü — orta */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

/* İletişim Butonu — sağ */
.nav-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    padding: 10px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, color 0.3s;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Scrolled Nav (Beyaz arka plana inince) */
.scrolled-nav {
    background: #0a192f;
    /* Footer ile ayni renk */
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.4);
}

.scrolled-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.scrolled-nav .nav-link:hover {
    color: #fff;
}

.scrolled-nav .nav-link::after {
    background: #fff;
}

.scrolled-nav .nav-cta {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.scrolled-nav .nav-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

/* ========== HERO SECTION ========== */

.hero-wrapper {
    position: relative;
    height: 300vh;
    /* daha kısa = daha hızlı scrub */
}

.hero-section {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    padding-top: 110px;
    background-color: transparent;
    background-image:
        /* Navbar alanı — üst gradient (Daha belirgin karartma) */
        linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 15%, transparent 30%),
        /* Alt fade */
        linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 45%),
        /* Sol fade */
        linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, transparent 60%);
    pointer-events: none;
    gap: 60px;
    transition: background-color 0.8s ease;
}

.hero-overlay.dark-overlay {
    background-color: rgba(0, 0, 0, 0.35);
    /* Karartma azaltıldı */
}

/* ---- Sol: Ana İçerik ---- */
.hero-content {
    flex: 1;
    max-width: 620px;
    pointer-events: all;
}

/* Expert Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 27, 75, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

/* Başlık */
.hero-title {
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #fff;
}

.hero-title-accent {
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #a8b8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Açıklama */
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 44px;
    font-weight: 300;
    max-width: 480px;
}

/* CTA Butonlar */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: #0a58ca;
    box-shadow: 0 8px 32px rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.hero-actions .btn-primary {
    background: #0d1b4b;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-actions .btn-primary:hover {
    background: #1a2f6e;
    box-shadow: 0 8px 32px rgba(13, 27, 75, 0.6);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 30px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.hero-actions .btn-ghost {
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* ---- Sağ: İstatistik Kartları ---- */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: all;
}

.stat-card {
    background: rgba(13, 27, 75, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 22px 32px;
    min-width: 220px;
    transition: background 0.3s, transform 0.3s;
}

.stat-card:hover {
    background: rgba(13, 27, 75, 0.75);
    transform: translateX(-6px);
}

.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-plus {
    font-size: 1.6rem;
    color: #a8b8e8;
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.04em;
    font-weight: 400;
    text-transform: uppercase;
}

/* Giriş animasyonu */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: #ffffff;
    animation: drop 2s infinite ease-in-out;
}

@keyframes drop {
    0% {
        top: -50%;
    }

    100% {
        top: 100%;
    }
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    font-weight: 600;
}


/* ========== FOOTER ========== */
.teco-footer {
    background: #0a192f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    max-width: 1360px;
    margin: 0 auto;
    padding: 80px 60px 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.brand-col .footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact li svg {
    color: var(--accent-color);
}

.footer-logo {
    height: 70px;
    width: auto;
    transform: scale(3.5);
    transform-origin: left center;
    clip-path: inset(28% 0 28% 0);
    margin-bottom: 35px;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 24px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.digital-partner {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.digital-partner:hover {
    color: white;
}

/* ========== NEW SECTIONS ========== */
.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: transparent;
}

/* YENİ: İçerik kapsayıcı (Hero üstüne bindirme) */
.main-content-wrapper {
    position: relative;
    background-color: #f6f8fb;
    background-image:
        radial-gradient(at 10% 20%, rgba(13, 110, 253, 0.04) 0px, transparent 50%),
        radial-gradient(at 90% 80%, rgba(13, 110, 253, 0.04) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(255, 255, 255, 0.8) 0px, transparent 100%);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -60px;
    padding-top: 20px;
    z-index: 20;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.w-100 {
    width: 100%;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #0a192f;
    letter-spacing: -0.03em;
}

.section-desc {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Glass Card Global */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.03);
}

.glass-card:hover {
    background: #fff;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.08);
}

/* Scroll Animation Base */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}



/* 3. Before/After Slider */
.before-after-track {
    /* Kaydırma alanı */
    position: relative;
    background-color: #ffffff;
}

.before-after-sticky {
    position: sticky;
    top: 100px; /* Navbar hizasından aşağıda durması için */
    height: calc(100vh - 100px); /* Kalan alanı kaplaması için */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.ba-content-split {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.ba-horizontal-viewport {
    flex: 1;
    overflow: hidden;
}

.ba-horizontal-container {
    display: flex;
    gap: 40px;
    width: max-content;
    padding-right: 200px;
    /* Son kutunun görünmesi için */
    will-change: transform;
}

.ba-sticky-text {
    flex: 0 0 450px;
    padding-left: max(20px, calc(50vw - 600px));
    /* Container hizası (1200px / 2 = 600px) */
    padding-right: 40px;
    position: relative;
    z-index: 10;
}

.hologram-logo-horizontal {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    opacity: 0.15;
    filter: grayscale(100%);
    -webkit-mask-image: repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 6px);
    mask-image: repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 6px);
    pointer-events: none;
    z-index: 0;
}

/* Apple Tarzı Renklenen Yazılar */
.apple-reveal-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #08286b 0%, #0d6efd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: grayscale(calc(60% - (var(--scroll-progress, 0) * 60%))) opacity(calc(0.4 + var(--scroll-progress, 0) * 0.6));
    will-change: filter, opacity;
}

.apple-reveal-desc {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
    color: #495057;
    opacity: calc(0.3 + var(--scroll-progress, 0) * 0.7);
    transform: translateY(calc((1 - var(--scroll-progress, 0)) * 15px));
    will-change: opacity, transform;
}

/* Standart scroll bölümlerinde (Slider harici) Apple animasyonlarının çalışması için: */
.scroll-animate.visible .apple-reveal-title {
    filter: grayscale(0%) opacity(1);
    transition: filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-animate.visible .apple-reveal-desc {
    opacity: 1;
    transform: translateY(0);
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s, opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
}

.glow-accent {
    position: absolute;
    top: -80px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.swipe-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.swipe-line {
    height: 2px;
    width: 60px;
    background: rgba(13, 110, 253, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.swipe-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    animation: swipeAnim 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes swipeAnim {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.ba-slider-container {
    position: relative;
    width: 380px;
    /* Aynı kareye sığması için küçültüldü */
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: default;
    box-shadow: none;
}

/* Alt Aksiyon Butonu - Slider Sonu Kartı */
.ba-view-more-card {
    width: 300px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
}

.ba-view-more-card .btn {
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    background: #fff;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.1);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.4;
}

.ba-view-more-card .btn small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
    margin-top: 5px;
}

.ba-view-more-card .btn:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.25);
}

.ba-image-before,
.ba-image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-image-after img,
.ba-image-before img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    transform: scale(1.1);
    /* Dikey kutuda yüzün tam oturması için hafif zoom */
    object-position: center center;
    transform-origin: center center;
}

.ba-image-before {
    width: 100%;
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.ba-handle-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--accent-color);
    /* Çizgiyi mavi yap */
    transform: translateX(-50%);
    z-index: 1;
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-handle-btn {
    width: 46px;
    height: 46px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #fff;
    border: 2px solid #fff;
}

.ba-handle-btn svg {
    color: #fff;
    stroke: #fff;
    fill: none;
}

/* 4. Lead Gen Form */
.glass-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.form-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 18px 24px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* 5. Techniques */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent-color);
}

.tech-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 6. Why Us */
.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.why-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--accent-color);
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
}

.badge-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.why-subtitle {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.why-text {
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
}

.why-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-color);
    stroke: var(--accent-color);
}

/* 7. Tourism Package */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    position: relative;
    padding: 40px 30px;
    text-align: center;
}

.step-number {
    font-size: 6rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.step-icon {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #111;
}

.step-card p {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* 8. Testimonials */
.testimonial-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin-top: 30px;
}
.testimonial-marquee-wrapper::before,
.testimonial-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.testimonial-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, transparent);
}
.testimonial-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, transparent);
}
.testimonial-marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 40s linear infinite;
}
.testimonial-marquee-content:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}
.testi-card {
    width: 360px;
    flex-shrink: 0;
    white-space: normal;
    text-align: left;
}

.stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.quote {
    font-style: italic;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.patient-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--accent-color);
}

.patient-details h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #111;
}

.patient-details span {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

/* 9. FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #111;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
    color: var(--accent-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-inner {
    padding-bottom: 25px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {

    .glass-form-wrapper,
    .why-wrapper {
        grid-template-columns: 1fr;
    }

    .form-content {
        padding: 40px;
    }

    .why-badge {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .ba-image-after img,
    .ba-image-before img {
        width: 100vw;
        height: 300px;
    }

    .ba-slider-container {
        height: 300px;
    }

    .apple-reveal-title {
        font-size: 2.5rem;
    }

    .apple-reveal-desc {
        font-size: 1.1rem;
    }

    .ba-slider-container {
        width: 85vw;
    }

    .form-content {
        padding: 20px;
    }
    
    .glass-form-wrapper {
        border-radius: 20px;
    }
}

/* ========================================================= */
/* PREMIUM REDESIGN - BOTTOM SECTIONS                        */
/* ========================================================= */

/* Why Us Modern */
.why-wrapper-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.why-content-modern {
    position: relative;
}

.premium-badges {
    display: flex;
    gap: 20px;
    margin: 40px 0;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.glass-badge .badge-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.glass-badge .badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-list-modern li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.why-list-modern svg {
    width: 24px;
    height: 24px;
    color: #4ade80;
    flex-shrink: 0;
}

.why-image-modern {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    height: 100%;
    max-height: 90px;
    width: auto;
    transform: scale(2.8);
    transform-origin: left center;
    clip-path: inset(25% 0 25% 0);
    transition: opacity 0.3s ease;
}

.why-image-modern img {
    width: 100%;
    display: block;
    transition: transform 0.7s ease;
}

.why-image-modern:hover img {
    transform: scale(1.05);
}

.floating-doc-badge-minimal {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 16px 28px;
    border-radius: 12px;
    display: flex;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.floating-doc-badge-minimal:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.minimal-badge-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.minimal-badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(26, 26, 26, 0.7);
    font-weight: 600;
}

.minimal-badge-title {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Tech Grid Modern */
/* Bento Box Grid for Methods */
.bento-methods-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 480px;
    gap: 20px;
    margin-top: 60px;
}



.bento-item {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #0a192f;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
}

.bento-equal {
    grid-column: span 1;
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bento-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.3) 100%);
    transition: opacity 0.5s ease;
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.bento-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    transition: margin-bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.bento-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.bento-hover-reveal {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease;
}

.bento-hover-reveal p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0;
}

.bento-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bento-benefits li {
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bento-benefits li span {
    color: #4CAF50;
    font-weight: bold;
}

/* Hover Effects */
.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.2);
}

.bento-item:hover .bento-bg img {
    transform: scale(1.05);
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 0%, rgba(13, 110, 253, 0.4) 100%);
}

.bento-item:hover .bento-header {
    margin-bottom: 20px;
}

.bento-item:hover .bento-hover-reveal {
    max-height: 300px;
    opacity: 1;
}

@media (max-width: 992px) {
    .bento-methods-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 450px;
    }
    .bento-equal {
        grid-column: span 1;
    }
    .bento-hover-reveal {
        max-height: 300px;
        opacity: 1;
    }
    .bento-header {
        margin-bottom: 20px;
    }
    .bento-overlay {
        background: linear-gradient(to top, rgba(10, 25, 47, 0.95) 0%, rgba(13, 110, 253, 0.4) 100%);
    }
}

/* Process Title Scroll-Jack Section */
.process-title-section {
    height: 150vh;
    position: relative;
    background-color: #ffffff;
}

.process-title-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Vertical Timeline Process Section */
.vertical-timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline-center-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: rgba(13, 110, 253, 0.1);
    transform: translateX(-50%);
    border-radius: 4px;
    z-index: 1;
}

.timeline-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* updated by JS */
    background: linear-gradient(to bottom, var(--accent-color), #08286b);
    border-radius: 4px;
    transition: height 0.3s ease;
}

.timeline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.timeline-row:last-child {
    margin-bottom: 0;
}

.timeline-content {
    width: 45%;
    padding: 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-row:hover .timeline-content {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.1);
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 4px solid #e60000;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 0 8px rgba(230, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-row:hover .timeline-dot {
    background: #e60000;
    box-shadow: 0 0 0 12px rgba(230, 0, 0, 0.2);
    transform: scale(1.2);
}

.timeline-empty {
    width: 45%;
}

.timeline-content .step-icon-container {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(230, 0, 0, 0.1);
    color: #e60000;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.timeline-row:hover .step-icon-container {
    background: #e60000;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3);
}

.timeline-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.timeline-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Position step number glow absolutely in corners */
.timeline-row.left .step-num-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #e60000;
    opacity: 0.2;
    transition: all 0.3s ease;
}
.timeline-row.right .step-num-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #e60000;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.timeline-row:hover .step-num-glow {
    opacity: 1;
    -webkit-text-stroke: 0;
    color: #e60000;
    text-shadow: 0 0 20px rgba(230, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .timeline-center-line {
        left: 30px;
    }
    .timeline-row {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
    }
    .timeline-row.right {
        flex-direction: column;
    }
    .timeline-content, .timeline-empty {
        width: 100%;
    }
    .timeline-empty {
        display: none;
    }
    .timeline-dot {
        position: absolute;
        left: 18px;
        top: 40px;
    }
}

/* Modern Form Layout */
.modern-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.modern-form-layout .form-content {
    padding: 60px 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    position: relative;
}

.modern-form-layout .form-image-modern {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.modern-form-layout .form-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lead-form-modern {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-modern {
    position: relative;
}

.form-group-modern input,
.form-group-modern select {
    width: 100%;
    padding: 20px 25px;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    font-size: 1.1rem;
    color: #333;
    outline: none;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: background 0.3s;
    appearance: none;
    -webkit-appearance: none;
}

.form-group-modern select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 25px top 50%;
    background-size: 12px auto;
}

.form-group-modern input::placeholder {
    color: #999;
}

.form-group-modern select:invalid,
.form-group-modern select option[value=""] {
    color: #999;
}

.form-group-modern input:focus,
.form-group-modern select:focus {
    background-color: #fff;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: 0.4s;
    transform: translateX(-50%);
}

.form-group-modern input:focus ~ .focus-border,
.form-group-modern select:focus ~ .focus-border {
    width: 100%;
}

.gradient-btn {
    padding: 20px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #0d6efd, #0043a8);
    border: none;
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.gradient-btn:hover {
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.4);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .why-wrapper-modern {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-line {
        display: none;
    }
    
    .modern-form-layout {
        grid-template-columns: 1fr;
    }
    
    .modern-form-layout .form-content {
        padding: 40px 30px;
    }
    
    .modern-form-layout .form-image-modern {
        display: none;
    }
}

/* ========================================================= */
/* INSTAGRAM FEED SECTION                                     */
/* ========================================================= */

.instagram-section {
    background: #f8f9ff;
}

.insta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.instagram-header {
    margin-bottom: 50px;
}

.instagram-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #0d6efd #e9ecef;
}

.instagram-grid::-webkit-scrollbar {
    height: 8px;
}
.instagram-grid::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 10px;
}
.instagram-grid::-webkit-scrollbar-thumb {
    background-color: #0d6efd;
    border-radius: 10px;
}

.instagram-embed-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    flex: 0 0 320px;
    scroll-snap-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
}

.instagram-embed-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.instagram-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer;
    display: block;
}

.instagram-crop-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    pointer-events: none;
}

.instagram-iframe {
    position: absolute;
    top: -80px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 220px);
    border: none;
    display: block;
}

.insta-custom-footer {
    padding: 16px;
    background: #ffffff;
    text-align: center;
    border-top: 1px solid #eaeaea;
    z-index: 20;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-custom-footer a {
    color: #0d6efd;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.insta-custom-footer a:hover {
    color: #0b5ed7;
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(188, 24, 136, 0.4);
    color: white;
}

/* ========================================================= */
/* KONTAKT SECTION                                            */
/* ========================================================= */

.kontakt-section {
    background: #ffffff;
}

.kontakt-premium-bento {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.kontakt-bento-info {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kontakt-bento-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.bento-subtext {
    color: #64748b;
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.bento-links-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.bento-link-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.bento-link-item:hover {
    background: #ffffff;
    border-color: #0d6efd;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.1);
    transform: translateX(5px);
}

.bento-icon-minimal {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.bento-link-text {
    display: flex;
    flex-direction: column;
}

.bento-link-text .label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 4px;
}

.bento-link-text .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

.bento-address-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 0.95rem;
}

.bento-address-box svg {
    color: #0d6efd;
}

.kontakt-bento-map {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* Responsive */
@media (max-width: 992px) {
    .kontakt-premium-bento {
        grid-template-columns: 1fr;
    }
    .kontakt-bento-info {
        padding: 40px 20px;
    }
    
    .kontakt-bento-map {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .instagram-embed-card {
        flex: 0 0 85vw;
    }

    .kontakt-info-card {
        padding: 18px 20px;
    }
    
    .kontakt-bento-info {
        padding: 30px 15px;
    }

    .bento-link-item {
        padding: 15px;
    }

    .kontakt-icon-wrap {
        width: 48px;
        height: 48px;
    }
}

/* ========================================================= */
/* ALTERNATING SECTION BACKGROUNDS (Requested by User)        */
/* ========================================================= */

.main-content-wrapper > section:nth-of-type(odd) {
    background-color: #f8f9ff !important;
}

.main-content-wrapper > section:nth-of-type(even) {
    background-color: #ffffff !important;
}

/* ========================================================= */
/* ERGEBNISSE PAGE STYLES                                    */
/* ========================================================= */
.ergebnisse-page-header {
    background: #f8f9ff;
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.light-hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, rgba(248, 249, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.badge-premium-light {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #0d6efd 0%, #0a192f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.ergebnisse-gallery {
    background-color: #f8f9ff;
    position: relative;
}

.ergebnisse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.premium-ba-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-ba-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.premium-ba-card .ba-slider-container {
    border-radius: 24px 24px 0 0;
    box-shadow: none;
    margin: 0;
    width: 100%;
}

.premium-ba-footer {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.premium-ba-footer .ba-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.premium-ba-footer .ba-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.premium-ba-footer .ba-badge {
    width: 40px;
    height: 40px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bottom-banner {
    position: relative;
    background: linear-gradient(135deg, #0a192f 0%, #112a52 100%);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 25, 47, 0.2);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.cta-banner-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

/* ===================================================
   ERGEBNISSE PAGE — FULL PREMIUM CSS
   =================================================== */

/* NAV DARK BAR */
.main-header.nav-dark-bar {
    background: #0a192f !important;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.2);
}

.main-header.nav-dark-bar .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.main-header.nav-dark-bar .nav-link:hover {
    color: #ffffff;
}

.main-header.nav-dark-bar .nav-link::after {
    background: #ffffff;
}

.main-header.nav-dark-bar .nav-cta {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.main-header.nav-dark-bar .nav-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
}

/* HERO */
.erg-hero {
    background: #f0f4ff;
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(13,110,253,0.1);
}

.erg-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.erg-hero-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.08);
    animation: particleFloat 12s infinite ease-in-out;
}

.erg-hero-particles span:nth-child(1)  { width: 300px; height: 300px; top: -80px; left: -80px; animation-delay: 0s; }
.erg-hero-particles span:nth-child(2)  { width: 200px; height: 200px; top: 30%; right: 5%; animation-delay: 2s; }
.erg-hero-particles span:nth-child(3)  { width: 150px; height: 150px; bottom: 10%; left: 20%; animation-delay: 4s; }
.erg-hero-particles span:nth-child(4)  { width: 80px;  height: 80px;  top: 20%; left: 40%; animation-delay: 1s; }
.erg-hero-particles span:nth-child(5)  { width: 120px; height: 120px; bottom: 20%; right: 25%; animation-delay: 3s; }
.erg-hero-particles span:nth-child(6)  { width: 60px;  height: 60px;  top: 60%; left: 60%; animation-delay: 5s; }
.erg-hero-particles span:nth-child(7)  { width: 200px; height: 200px; bottom: -50px; right: -50px; animation-delay: 0.5s; }
.erg-hero-particles span:nth-child(8)  { width: 90px;  height: 90px;  top: 10%; right: 30%; animation-delay: 6s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50%       { transform: translateY(-25px) scale(1.05); opacity: 0.9; }
}

.erg-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border: 1px solid rgba(13, 110, 253, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.erg-hero-tag svg { color: #22c55e; }

.erg-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.erg-hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #0a192f;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.erg-hero-title .erg-title-highlight {
    background: linear-gradient(135deg, #0d6efd 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.erg-hero-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.erg-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 36px;
    box-shadow: 0 10px 40px rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.erg-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}

.erg-stat-pill strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0d6efd;
    line-height: 1;
    margin-bottom: 4px;
}

.erg-stat-pill span {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.erg-stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
    flex-shrink: 0;
}

.erg-hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.erg-scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(13, 110, 253, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.erg-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d6efd;
    animation: scrollDrop 2s infinite ease-in-out;
}

@keyframes scrollDrop {
    0%   { top: -100%; }
    100% { top: 100%; }
}

/* GALLERY */
.erg-gallery {
    background: #f8faff;
    padding: 80px 0;
}

.erg-filter-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.erg-filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.erg-filter-btn:hover {
    border-color: #0d6efd;
    color: #0d6efd;
}

.erg-filter-btn.active {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

.erg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.erg-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.3s ease;
    position: relative;
}

.erg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(13, 110, 253, 0.12);
}

.erg-card .ba-slider-container {
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}

.erg-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 20;
    background: rgba(10, 25, 47, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
}

.erg-card-info {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f5f9;
}

.erg-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.erg-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #475569;
    font-weight: 500;
}

.erg-card-stars {
    font-size: 1rem;
    color: #f59e0b;
    letter-spacing: 2px;
}

/* BOTTOM CTA */
.erg-cta {
    background: #0a192f;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.erg-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13,110,253,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.erg-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.erg-cta-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.erg-cta-text h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 500px;
}

.erg-cta-text h2 span {
    background: linear-gradient(135deg, #38bdf8, #0d6efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.erg-cta-sub {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
}

.erg-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.erg-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #38bdf8;
    color: #ffffff;
    padding: 18px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.erg-btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(56, 189, 248, 0.5);
    color: #ffffff;
}

.erg-btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.erg-btn-phone:hover {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
    border-color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .erg-hero-title { font-size: 2.4rem; }
    .erg-hero-stats { flex-direction: column; gap: 16px; padding: 24px; }
    .erg-stat-divider { width: 80px; height: 1px; }
    .erg-cta-inner { flex-direction: column; text-align: center; }
    .erg-cta-text h2 { font-size: 2rem; }
    .erg-cta-actions { width: 100%; }
    .erg-btn-wa, .erg-btn-phone { 
        justify-content: center; 
        white-space: normal !important;
        padding: 15px 20px !important;
        text-align: center;
    }
    .erg-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL-DRIVEN HERO  (Sticky + Colorize on scroll)
   ============================================================ */

/* The tall scroll container — gives scroll-space for the animation */
.erg-scroll-scene {
    height: 350vh;          /* 3.5x viewport = scroll room */
    position: relative;
}

/* The sticky panel that stays in view while scene scrolls */
.erg-sticky-hero {
    position: sticky;
    top: 0;
    height: 100vh;
    background: #08286b;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    overflow: hidden;
}

/* Left side */
.erg-sh-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 80px 60px 80px;
    position: relative;
    z-index: 2;
}

.erg-sh-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 520px;
}

.erg-sh-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.erg-sh-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    margin-bottom: 36px;
}

.erg-sh-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 32px;
}

/* Each word starts dim, JS lights them up */
.erg-word {
    display: inline-block;
    color: rgba(255,255,255,0.12);
    transition: color 0.5s ease;
}

.erg-word-accent {
    color: rgba(56, 189, 248, 0.12);
}

.erg-sh-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.erg-sh-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.erg-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #38bdf8;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(56,189,248,0.35);
    transition: all 0.3s ease;
}

.erg-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(56,189,248,0.5);
    color: #ffffff;
}

/* Right side — Stats */
.erg-sh-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 120px 80px 60px 80px;
}

.erg-sh-stat {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.5s ease;
}

.erg-sh-stat:last-child { border-bottom: none; }

.erg-sh-stat-num {
    font-size: 3.8rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    letter-spacing: -1px;
    line-height: 1;
    transition: color 0.5s ease;
}

.erg-sh-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px;
    margin-bottom: 16px;
    transition: color 0.5s ease;
}

/* Progress bar inside stat */
.erg-sh-stat-bar {
    height: 2px;
    background: rgba(255,255,255,0.07);
    border-radius: 2px;
    overflow: hidden;
}

.erg-sh-stat-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #38bdf8, #08286b);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Lit state (added by JS) */
.erg-sh-stat.stat-lit .erg-sh-stat-num {
    color: #ffffff;
}

.erg-sh-stat.stat-lit .erg-sh-stat-label {
    color: rgba(255,255,255,0.55);
}

/* Progress bar at top */
.erg-sh-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.08);
    z-index: 10;
}

.erg-sh-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #38bdf8, #0d6efd);
    transition: width 0.1s linear;
}

/* Scroll hint arrow */
.erg-sh-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: shBounce 2s infinite;
    transition: opacity 0.4s ease;
}

@keyframes shBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Responsive */
@media (max-width: 900px) {
    .erg-sticky-hero {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }
    .erg-sh-title { font-size: 3.5rem; }
    .erg-sh-left { padding: 100px 40px 30px; }
    .erg-sh-right { padding: 30px 40px 60px; flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .erg-sh-stat { padding: 16px 0; border-bottom: none; flex: 1 1 45%; }
    .erg-sh-stat-num { font-size: 2.5rem; }
}

/* ============================================================
   BLOG / RATGEBER PAGE (WHITE / BLUE THEME)
   ============================================================ */

/* Blog Hero */
.blog-hero {
    background: #ffffff;
    padding: 0;
    position: relative;
    color: #08286b;
    border-bottom: 1px solid #e2e8f0;
}

.blog-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.blog-hero-content {
    max-width: 600px;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.blog-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
    min-width: 300px;
}

.blog-stat {
    padding: 16px 0;
    border-bottom: 1px solid rgba(10, 25, 47, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}
.blog-stat:last-child {
    border-bottom: none;
}

.blog-stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(10, 25, 47, 0.15);
    transition: color 0.4s ease;
}

.blog-stat-label {
    font-size: 1.1rem;
    color: rgba(10, 25, 47, 0.2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.blog-stat-bar {
    height: 3px;
    background: rgba(10, 25, 47, 0.1);
    width: 100%;
    margin-top: 8px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.blog-stat-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #38bdf8;
    width: 0%;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-stat.stat-lit .blog-stat-value {
    color: #0a192f;
}

.blog-stat.stat-lit .blog-stat-label {
    color: #64748b;
}

.blog-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: #0a192f;
}

.blog-title-accent {
    color: #38bdf8;
}

.blog-hero-desc {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.7;
}

.blog-hero-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Blog Bento Grid */
.blog-section {
    background: #f8fafc;
    padding: 80px 0;
}

.blog-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(450px, auto);
    gap: 30px;
}

.blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(8, 40, 107, 0.04);
    border: 1px solid #e2e8f0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(8, 40, 107, 0.08);
}

.blog-img-wrapper {
    position: relative;
    width: 100%;
    flex: 0 0 240px; 
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #38bdf8;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.blog-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-meta svg {
    color: #38bdf8;
}

.blog-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #08286b;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-content h3 {
    color: #38bdf8;
}

.blog-card-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #08286b;
    margin-top: auto;
    transition: color 0.3s ease;
}

.blog-read-more svg {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more {
    color: #38bdf8;
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .blog-card:nth-child(1),
    .blog-card:nth-child(2),
    .blog-card:nth-child(3),
    .blog-card:nth-child(4),
    .blog-card:nth-child(5) {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .blog-hero-inner {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    .blog-hero-content {
        text-align: center;
    }
    .blog-hero-title { 
        font-size: 2.2rem; 
        word-break: break-word; 
        hyphens: auto; 
        line-height: 1.2;
    }
    .blog-hero-stats {
        display: none !important;
    }
    .blog-stat {
        align-items: center;
        text-align: center;
    }
}

/* ========== PREMIUM EXPERT TEAM SECTION ========== */
.premium-team-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.premium-team-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100%;
    background-image: url('https://euroimg.sezensocial.com/images/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.premium-team-section .container {
    position: relative;
    z-index: 2;
}

.premium-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.premium-team-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(2, 132, 199, 0.12);
    border-color: rgba(226, 232, 240, 0.8);
}

.premium-team-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #f1f5f9;
}

.premium-team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-team-card:hover .premium-team-image {
    transform: scale(1.05);
}

.premium-team-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    z-index: 1;
}

.premium-team-content {
    padding: 0 40px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    margin-top: -30px;
}

.premium-team-name {
    font-size: 1.75rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.premium-team-role {
    font-size: 1.125rem;
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-team-role::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: #0ea5e9;
    border-radius: 2px;
}

.premium-team-desc {
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 35px;
    text-align: left;
}

.premium-team-btn {
    margin-top: auto;
    padding: 14px 28px;
    border-radius: 50px;
    background: #ffffff;
    color: #0284c7;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #0284c7;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.premium-team-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.premium-team-card:hover .premium-team-btn {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.2);
}

.premium-team-btn:hover::after {
    transform: translateX(4px);
}

/* ========== 1. Header & Navigation (Desktop Default) ========== */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2000;
}

.hamburger-btn .bar {
    display: block;
    width: 32px;
    height: 2px;
    margin: 0 auto;
    border-radius: 4px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

@media (min-width: 1025px) {
    .nav-wrapper {
        display: contents;
    }
    .mobile-nav-header { display: none; }
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

/* ========== MOBILE RESPONSIVENESS (calisma.md) ========== */

/* GLOBAL RESETS & ACCESSIBILITY */
body {
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
}


/* 1. TABLET (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Navbar & Header */
    .nav-container {
        padding: 0 20px !important;
        height: 70px;
        grid-template-columns: 1fr auto;
    }
    .navbar-brand { justify-content: flex-start; padding-left: 20px; }
    .brand-logo { transform: scale(3.5); transform-origin: left center; max-height: 60px; }
    /* Hamburger Menu Icon Fix */
    .hamburger-btn { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
    .hamburger-btn.active .bar:nth-child(2) { opacity: 0; }
    .hamburger-btn.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger-btn.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .nav-wrapper {
        position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
        transform: translateX(100%);
        background-color: rgba(13, 27, 75, 0.90); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
        display: flex; flex-direction: column; align-items: center;
        justify-content: center; padding: 4rem 2rem; transition: transform 0.4s ease; z-index: 1500;
    }
    .nav-wrapper.active { transform: translateX(0); }
    
    .mobile-nav-header {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-bottom: 3rem;
        position: absolute;
        top: 4rem;
    }
    .mobile-nav-header .brand-logo { margin: 0; height: 60px !important; width: auto; transform: scale(3.5); transform-origin: center center; }
    .nav-links { flex-direction: column; gap: 1.5rem; width: 100%; margin-bottom: 2rem; align-items: center; text-align: center; }
    .nav-right { flex-direction: column; align-items: center !important; margin-left: 0 !important; width: 100%; }
    .nav-cta { margin-top: 1rem; width: 100%; text-align: center; }

    /* Grids (Tablet: 2 Columns) */
    .expert-grid, .premium-team-grid, .steps-grid, .tech-grid, .blog-bento-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* 2. MOBILE (max-width: 768px) */
@media (max-width: 768px) {
    .container { padding: 0 20px !important; }

    /* Hero Section */
    .hero-title { font-size: 2rem !important; }
    .hero-desc { font-size: 1rem !important; padding: 0 10px; }
    .hero-overlay {
        flex-direction: column !important; padding: 100px 1.25rem 20px !important;
        align-items: center !important; text-align: center !important; justify-content: flex-start !important; gap: 0 !important;
        overflow-y: auto !important;
    }
    .hero-content { flex: none !important; margin-bottom: 2rem !important; }
    .scroll-indicator { bottom: 12px; }
    .hero-actions { justify-content: center; flex-direction: column; width: 100%; padding: 0 10px; }
    .hero-actions a { width: 100%; text-align: center; justify-content: center; }
    .hero-stats {
        width: 100% !important; flex-direction: row !important; flex-wrap: wrap !important;
        justify-content: center !important; gap: 5px !important; padding: 0 !important;
    }
    .stat-card {
        flex: 1 1 calc(50% - 10px) !important;
        min-width: 120px !important;
        padding: 1rem 0.5rem !important;
    }
    
    /* Forms & Inputs */
    input, select, textarea {
        width: 100% !important;
        min-height: 48px !important;
        font-size: 16px !important; /* iOS Zoom Önleme */
        padding: 12px 16px !important;
        box-sizing: border-box !important;
    }
    
    /* Buttons */
    .btn, .btn-primary, .btn-ghost, button {
        width: 100%;
        justify-content: center;
        text-align: center;
        min-height: 48px;
    }

    /* Global Fixes for Method and Blog Detail Pages (Prevents Horizontal Overflow) */
    [class$="-content-card"] {
        padding: 30px 15px !important;
    }
    ol[style*="display: inline-flex"] {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    div[style*="border-left: 4px solid #25d366"], div[style*="border-left: 4px solid #38bdf8"] {
        padding: 20px 15px !important;
        word-break: break-word !important;
    }
    a[href*="wa.me"] {
        white-space: normal !important;
        text-align: center !important;
        justify-content: center !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .floating-wa-btn {
        width: 50px !important; /* Ensure the floating button doesn't stretch */
        height: 50px !important;
        padding: 0 !important;
    }

    /* FAQ */
    .faq-question {
        padding: 16px 20px !important;
        min-height: 56px;
        align-items: center;
    }

    /* Global Typography & Overflow Prevention */
    p, h1, h2, h3, h4, h5, h6, .blog-detail-title, .faq-question {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100%;
    }
    
    /* Grids (Mobile: 1 Column) */
    .expert-grid, .premium-team-grid, .steps-grid, .tech-grid, .blog-bento-grid, .blog-hero-stats, .erg-grid {
        grid-template-columns: 1fr !important;
    }
    
    .blog-hero-stats { flex-direction: column; align-items: center; gap: 1.5rem; }

    /* Footer Stacking */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-col.brand-col { display: flex; flex-direction: column; align-items: center; }
    .footer-logo { transform-origin: center center; }
    .social-links { justify-content: center; }
    .footer-contact li { justify-content: center; }

    /* Before & After Mobile Scroll-Jacking */
    .before-after-sticky { 
        position: sticky !important; 
        top: 0 !important; 
        height: 100vh !important; 
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important; 
        padding-top: 70px; 
    }
    .ba-content-split { 
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        justify-content: center !important;
        gap: 2vh !important;
    }
    
    .ba-sticky-text { 
        width: 100%; height: auto; flex: none;
        position: relative;
        display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
        padding: 0 15px;
        margin-bottom: 0;
    }
    .ba-horizontal-viewport {
        position: relative !important;
        top: auto !important;
        height: 45vh !important;
        overflow: hidden;
        width: 100%;
        margin-bottom: 5vh;
    }
    
    .apple-reveal-title.text-left, .apple-reveal-desc.text-left { text-align: center; }
    
    .ba-horizontal-viewport { 
        width: 100%; height: 45vh; flex: none;
        overflow: hidden; /* JS will handle the translation */
        padding: 0;
    }
    
    .ba-horizontal-container { 
        flex-direction: row; 
        width: max-content; 
        display: flex; 
        gap: 15px;
        padding-left: 20px;
        height: 100%;
        align-items: flex-start;
        padding-top: 0;
    }
    
    .ba-slider-container { 
        width: 85vw; 
        max-width: 340px; 
        height: 100%; 
        margin-bottom: 0; 
        flex: 0 0 auto;
    }
    
    .ba-view-more-card {
        width: 80vw;
        max-width: 320px;
        height: 45vh;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        margin-right: 20px;
    }
    
    /* Blog Detail */
    .blog-detail-title { font-size: 2.2rem; }
}

/* 3. SMALL MOBILE (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title { font-size: 1.6rem !important; }
    .stat-number { font-size: 1.5rem !important; }
    .stat-label { font-size: 0.8rem !important; }
    .ba-sticky-text { padding: 1rem; }
    .blog-detail-title { font-size: 1.8rem; }
}




.blog-detail-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

body.no-scroll {
    overflow: hidden;
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.whatsapp-float.show-float {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-float.show-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ========== NAVBAR BUTTONS ========== */
.btn-free-analysis {
    background: #25d366 !important;
    border-color: #25d366 !important;
    margin-right: 10px;
}
.btn-free-analysis:hover {
    background: #1ebc59 !important;
    border-color: #1ebc59 !important;
}

.btn-price {
    background: var(--accent-color);
}