/* ========================================
   BROŞÜR TASARIM PAGE - INNOVATIVE DESIGN
   ======================================== */

:root {
    --brosur-teal: #14b8a6;
    --brosur-blue: #0ea5e9;
    --brosur-indigo: #6366f1;
    --brosur-dark: #0f172a;
    --brosur-gray: #64748b;
    --brosur-light: #f8fafc;
    --brosur-gradient: linear-gradient(135deg, #14b8a6, #0ea5e9, #6366f1);
}

/* ========== HERO SECTION ========== */
.brosur-hero {
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 50%, #eef2ff 100%);
    min-height: auto;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

.min-vh-85 {
    min-height: auto;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--brosur-teal);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--brosur-blue);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--brosur-indigo);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 50px;
    color: var(--brosur-teal);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge i {
    color: #f59e0b;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brosur-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--brosur-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--brosur-gray);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(20, 184, 166, 0.2);
    border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--brosur-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--brosur-gray);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(20, 184, 166, 0.3);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--brosur-gradient);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(20, 184, 166, 0.45);
    color: #fff;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--brosur-teal);
    border-radius: 12px;
    color: var(--brosur-teal);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--brosur-teal);
    color: #fff;
}

/* Hero Visual - Z-Fold Brochure */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
    perspective: 2500px;
    perspective-origin: center center;
}

.zfold-brochure {
    display: flex;
    transform-style: preserve-3d;
    animation: brochureFloat 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    position: relative;
    margin-left: 60px;
}

/* Ana broşür yüzer animasyonu */
@keyframes brochureFloat {

    0%,
    100% {
        transform: rotateX(12deg) rotateY(-8deg) translateY(0px);
    }

    25% {
        transform: rotateX(8deg) rotateY(-3deg) translateY(-5px);
    }

    50% {
        transform: rotateX(5deg) rotateY(0deg) translateY(-8px);
    }

    75% {
        transform: rotateX(8deg) rotateY(-3deg) translateY(-5px);
    }
}

/* Panel temel stilleri - BÜYÜK VE GERÇEKÇİ */
.zfold-panel {
    width: 260px;
    height: 380px;
    background: #fefefe;
    border-radius: 4px;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    /* Gerçekçi kağıt kenarı */
    border: 1px solid #d4d4d4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* ===== SOL PANEL - Arkaya katlanır ===== */
.panel-left {
    transform-origin: right center;
    animation: leftPanelSmooth 10s linear infinite;
    z-index: 1;
    margin-right: -1px;
    background: #fcfcfc;
}

/* Sol panel katlama gölgesi */
.panel-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.12), transparent);
    opacity: 0;
    animation: leftShadowSmooth 10s linear infinite;
    pointer-events: none;
    z-index: 20;
}

/*
 * PANEL ZAMANLAMASI (10 saniye döngü):
 * 0-20%:   SAĞ açılır (sol kapalı)
 * 20-35%:  SOL açılır (sağ açık)
 * 35-50%:  İkisi de açık
 * 50-65%:  SAĞ kapanır (sol açık)
 * 65-85%:  SOL kapanır (sağ kapalı)
 * 85-100%: İkisi de kapalı
 */

/* Sol panel animasyonu - 80% KAPANAN (Daha açık kalır) */
/* Sol panel animasyonu - 70% KAPANAN (Daha geniş açık kalır) */
@keyframes leftPanelSmooth {

    /* 0-15%: 70% Kapalı (-126 derece) */
    0%,
    15% {
        transform: rotateY(-126deg) translateZ(-30px);
    }

    /* 30-50%: Açık */
    30%,
    50% {
        transform: rotateY(0deg) translateZ(-5px);
    }

    /* 80-100%: 70% Kapat */
    80%,
    100% {
        transform: rotateY(-126deg) translateZ(-30px);
    }
}

@keyframes leftShadowSmooth {

    0%,
    15% {
        opacity: 0;
    }

    30%,
    50% {
        opacity: 1;
    }

    80%,
    100% {
        opacity: 0;
    }
}



/* ===== ORTA PANEL - ÖN PLANDA (ZORUNLU) ===== */
.panel-center {
    z-index: 9999 !important;
    /* En üstte olmaya zorla */
    position: relative;
    background: #fff;
    /* translateZ ile kesin olarak öne alıyoruz - Buffer artırıldı */
    transform: translateZ(20px) !important;
    /* Zorunlu öne alma */
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== SAĞ PANEL - Sıralı Katlama (Birinci kapanır) ===== */
.panel-right {
    transform-origin: left center;
    animation: rightPanelSmooth 10s linear infinite;
    z-index: 2;
    margin-left: -1px;
    background: #fcfcfc;
}

/* Sağ panel katlama gölgesi */
.panel-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.12), transparent);
    opacity: 0;
    animation: rightShadowSmooth 10s linear infinite;
    pointer-events: none;
    z-index: 20;
}

/* Sağ panel animasyonu - 80% KAPANAN (Daha açık kalır) */
/* Sağ panel animasyonu - 70% KAPANAN (Daha geniş açık kalır) */
@keyframes rightPanelSmooth {

    /* 0%: 70% Kapalı (126 derece) */
    0% {
        transform: rotateY(126deg) translateZ(-30px);
    }

    /* 15-50%: Açık */
    15%,
    50% {
        transform: rotateY(0deg) translateZ(-5px);
    }

    /* 65-100%: 70% Kapat */
    65%,
    100% {
        transform: rotateY(126deg) translateZ(-30px);
    }
}

@keyframes rightShadowSmooth {
    0% {
        opacity: 0;
    }

    15%,
    50% {
        opacity: 1;
    }

    65%,
    100% {
        opacity: 0;
    }
}

.panel-left .panel-content::before {
    content: '';
    position: absolute;
    top: 5%;
    right: 0;
    width: 1px;
    height: 90%;
    background: linear-gradient(180deg, transparent, #ccc 20%, #bbb 50%, #ccc 80%, transparent);
    z-index: 25;
}

/* Katlama çizgisi - Sağ panel */
.panel-right .panel-content::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 0;
    width: 1px;
    height: 90%;
    background: linear-gradient(180deg, transparent, #ccc 20%, #bbb 50%, #ccc 80%, transparent);
    z-index: 25;
}

/* Katlama çizgisi efekti - sol */
.panel-left .panel-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.06) 20%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.06) 80%,
            transparent 100%);
    z-index: 25;
}

/* Katlama çizgisi efekti - sağ */
.panel-right .panel-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.06) 20%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.06) 80%,
            transparent 100%);
    z-index: 25;
}

/* ===== PANEL İÇERİK GENEL ===== */
.panel-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'DM Sans', sans-serif;
    color: #333;
    overflow: hidden;
}

/* =========================================
   1. SOL PANEL (İLETİŞİM/ARKA KAPAK)
   ========================================= */
.panel-contact {
    background: #1e1e24;
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.contact-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.mini-logo {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.mini-logo::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #38bdf8;
    margin-right: 8px;
    border-radius: 2px;
}

.contact-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(to right, #fff, #94a3b8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-desc {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.5;
    font-weight: 400;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 11px;
}

.contact-info-item i {
    width: 28px;
    height: 28px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #38bdf8;
    font-size: 10px;
    flex-shrink: 0;
}

.contact-info-item span {
    color: #cbd5e1;
    font-weight: 500;
}

.contact-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.qr-code {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons i {
    color: #64748b;
    font-size: 16px;
    transition: 0.2s;
    cursor: pointer;
}

.social-icons i:hover {
    color: #38bdf8;
    transform: translateY(-2px);
}


/* =========================================
   2. ORTA PANEL (KAPAK)
   ========================================= */
.panel-cover {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0ea5e9, #6366f1);
}

.cover-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.cover-tag {
    font-size: 9px;
    font-weight: 700;
    color: #1e293b;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 2px;
    opacity: 0.5;
    text-transform: uppercase;
}

.cover-logo-large {
    text-align: right;
}

.logo-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 6px rgba(99, 102, 241, 0.2));
}

.cover-logo-large span {
    display: block;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #0f172a;
    margin-top: 5px;
}

.cover-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.visual-circle {
    position: absolute;
    top: 35%;
    right: -25%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.visual-dots {
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    background-size: 8px 8px;
    opacity: 0.6;
}

.visual-line {
    position: absolute;
    top: 0;
    right: 20%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

.cover-bottom {
    position: relative;
    z-index: 2;
}

.cover-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 0.85;
    color: #0f172a;
    letter-spacing: -2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cover-slogan {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 16px;
    border-left: 3px solid #38bdf8;
    line-height: 1.4;
}

.cover-link {
    font-size: 11px;
    font-weight: 700;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}


/* =========================================
   3. SAĞ PANEL (HİZMETLER)
   ========================================= */
.panel-services {
    background: #f8fafc;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.services-top {
    margin-bottom: 20px;
    text-align: center;
}

.services-top h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.separator {
    width: 50px;
    height: 4px;
    background: linear-gradient(to right, #0ea5e9, #6366f1);
    border-radius: 2px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: 0.2s;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.s-icon {
    width: 36px;
    height: 36px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.s-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.s-info p {
    font-size: 10px;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

.services-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 10px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.1));
    color: #059669;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Floating Badges */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.float-badge i {
    color: var(--brosur-teal);
}

.badge-1 {
    top: 10%;
    right: 0;
    animation: floatBadge1 5s ease-in-out infinite;
}

.badge-2 {
    bottom: 30%;
    left: -20px;
    animation: floatBadge2 6s ease-in-out infinite;
}

.badge-3 {
    bottom: 10%;
    right: 10%;
    animation: floatBadge3 4s ease-in-out infinite;
}

@keyframes floatBadge1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatBadge2 {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-8px) translateX(5px);
    }
}

@keyframes floatBadge3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ========== SERVICES - BENTO GRID ========== */
.brosur-services {
    padding: 100px 0;
    background: var(--brosur-light);
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(14, 165, 233, 0.1));
    color: var(--brosur-teal);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brosur-dark);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-item {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--brosur-teal);
}

.bento-large {
    grid-column: span 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: var(--brosur-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bento-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.bento-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brosur-dark);
    margin-bottom: 12px;
}

.bento-item p {
    color: var(--brosur-gray);
    line-height: 1.7;
    margin: 0;
}

.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.bento-tags span {
    padding: 6px 14px;
    background: rgba(20, 184, 166, 0.1);
    color: var(--brosur-teal);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bento-cta {
    background: var(--brosur-gradient);
    color: #fff;
}

.bento-cta h3,
.bento-cta p {
    color: #fff;
}

.bento-cta p {
    opacity: 0.85;
}

.bento-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: var(--brosur-teal);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.bento-btn:hover {
    transform: translateX(5px);
    color: var(--brosur-teal);
}

/* ========== PROCESS TIMELINE ========== */
.brosur-process {
    padding: 100px 0;
    background: #fff;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--brosur-gradient);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: var(--brosur-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.timeline-content {
    flex: 1;
    background: var(--brosur-light);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e2e8f0;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.timeline-icon i {
    font-size: 1.25rem;
    color: var(--brosur-teal);
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brosur-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--brosur-gray);
    margin: 0;
    line-height: 1.7;
}

/* ========== FAQ SECTION - PREMIUM DESIGN ========== */
.brosur-faq {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, var(--brosur-light) 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.faq-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.faq-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.faq-blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(14, 165, 233, 0.3));
    top: 10%;
    right: -100px;
    animation: blobFloat 8s ease-in-out infinite;
}

.faq-blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(14, 165, 233, 0.3));
    bottom: 10%;
    left: -50px;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

/* FAQ Wrapper */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header Centered */
.faq-header-centered {
    margin-bottom: 60px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: var(--brosur-gray);
    margin-top: 16px;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow: 0 8px 40px rgba(20, 184, 166, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    background: #fff;
    border-color: transparent;
    box-shadow:
        0 20px 60px rgba(20, 184, 166, 0.15),
        0 0 0 1px rgba(20, 184, 166, 0.1);
    transform: translateY(-4px);
}

/* FAQ Item Header */
.faq-item-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.faq-item:hover .faq-item-header {
    padding-left: 36px;
}

/* FAQ Item Icon */
.faq-item-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(14, 165, 233, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item-icon i {
    font-size: 1.25rem;
    background: var(--brosur-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
}

.faq-item.active .faq-item-icon {
    background: var(--brosur-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.faq-item.active .faq-item-icon i {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

/* FAQ Item Title */
.faq-item-title {
    flex: 1;
}

.faq-item-title h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brosur-dark);
    margin: 0;
    transition: all 0.4s ease;
}

.faq-item.active .faq-item-title h4 {
    color: var(--brosur-teal);
}

/* Toggle Button - Animated Plus to Minus */
.faq-item-toggle {
    width: 36px;
    height: 36px;
    background: var(--brosur-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toggle-line {
    position: absolute;
    width: 14px;
    height: 2px;
    background: var(--brosur-gray);
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toggle-line:first-child {
    transform: rotate(0deg);
}

.toggle-line:last-child {
    transform: rotate(90deg);
}

.faq-item.active .faq-item-toggle {
    background: var(--brosur-teal);
    transform: rotate(180deg);
}

.faq-item.active .toggle-line {
    background: #fff;
}

.faq-item.active .toggle-line:last-child {
    transform: rotate(0deg);
    opacity: 0;
}

/* FAQ Item Body */
.faq-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-item-body {
    max-height: 300px;
}

/* FAQ Item Content */
.faq-item-content {
    padding: 0 32px 32px 104px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0s;
}

.faq-item.active .faq-item-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.faq-item-content p {
    color: var(--brosur-gray);
    line-height: 1.9;
    margin: 0;
    font-size: 1rem;
}

.faq-item-content p strong {
    color: var(--brosur-dark);
    font-weight: 600;
}

.faq-item-content p em {
    color: var(--brosur-teal);
    font-style: normal;
    font-weight: 500;
}

/* FAQ CTA Box */
.faq-cta-box {
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(99, 102, 241, 0.05));
    border: 1px dashed rgba(20, 184, 166, 0.3);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.faq-cta-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-cta-content i {
    font-size: 1.5rem;
    color: var(--brosur-teal);
}

.faq-cta-content span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brosur-dark);
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--brosur-gradient);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.25);
}

.faq-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(20, 184, 166, 0.35);
    color: #fff;
}

.faq-cta-btn i {
    transition: transform 0.3s ease;
}

.faq-cta-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-item-header {
        padding: 20px 24px;
    }

    .faq-item-icon {
        width: 44px;
        height: 44px;
    }

    .faq-item-content {
        padding: 0 24px 24px 24px;
    }

    .faq-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .faq-cta-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ========== CTA SECTION ========== */
.brosur-cta {
    padding: 80px 0;
    background: #fff;
}

.cta-card {
    background: var(--brosur-gradient);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-bg-elements .cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-bg-elements .cta-circle:first-child {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.cta-bg-elements .cta-circle:last-child {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -80px;
}

.cta-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

.btn-white-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #fff;
    border-radius: 50px;
    color: var(--brosur-teal);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white-glow:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    color: var(--brosur-teal);
}

.btn-white-glow i {
    transition: transform 0.3s ease;
}

.btn-white-glow:hover i {
    transform: translateX(5px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        margin-top: 60px;
    }

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

    .bento-large {
        grid-column: span 1;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .faq-header {
        position: static !important;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .brosur-hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta a {
        width: 100%;
        justify-content: center;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .faq-answer p {
        padding-left: 24px;
    }
}