/* ========================================
   EGYPT LANDING - OPTIMIZED CSS
   Mobile-First Approach
   Egyptian Gold & Teal Theme
======================================== */

:root {
    --bg: #030712;
    --surface: #111827;
    --primary: #d4af37;
    --primary-light: #f0d98d;
    --primary-dark: #b8941f;
    --secondary: #0891b2;
    --secondary-light: #22d3ee;
    --success: #10b981;
    --text: #f9fafb;
    --text-muted: #94a3b8;
    --border: rgba(212, 175, 55, 0.1);
}

/* ========================================
   BASE - Mobile First
======================================== */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button {
    font-family: inherit;
}

/* ========================================
   MODERN PILL NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 1rem; 
    left: 50%;
    width: 97%;
    transform: translateX(-50%);
    background: rgba(17, 24, 39, 0.8); 
    border: 1px solid rgba(212, 175, 55, 0.2); 
    border-radius: 100px; 
    z-index: 2000;
    padding: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    top: 0.75rem;
    width: 95%;
    background: rgba(3, 7, 18, 0.95);
    border-color: var(--primary);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}
/* --- روابط التنقل --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem; 
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 40px; 
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1); 
}

.nav-links a.active {
    color: #000;
    background: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px; 
    padding: 0.75rem;
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: none; 
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .nav-toggle { display: flex; flex-direction: column; gap: 4px; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 1rem;
        background: var(--surface);
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 30px;
        border: 1px solid var(--border);
        display: none;
    }
    
    .nav-links.active { display: flex; }
}

/* ========================================
   HERO SECTION
======================================== */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-top: 80px;
}

.hero-title .subtitle {
    display: block;
    font-size: 0.4em;
    margin-top: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
    -webkit-text-fill-color: var(--secondary);
}

.hero-description {
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-hero svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.btn-main {
    font-size: 1rem;
    font-weight: 800;
}

.btn-sub {
    font-size: 0.7rem;
    opacity: 0.85;
    font-weight: 500;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-hero:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.stat-number {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.2);
    transition: transform 0.4s;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* Tablet and Up */
@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .btn-hero {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }

    .btn-hero svg {
        width: 28px;
        height: 28px;
    }

    .btn-main {
        font-size: 1.1rem;
    }

    .btn-sub {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0 4rem;
    }

    .hero-image-wrapper {
        margin-top: 3rem;
    }

    .hero-image {
        border-radius: 24px;
    }
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #fff, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: var(--text-muted);
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

/* ========================================
   WHY BRICOLE SECTION
======================================== */
.why-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(8, 145, 178, 0.05));
}

.why-grid {
    display: grid;
    gap: 1.5rem;
}

.why-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(17, 24, 39, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.why-icon svg {
    width: 32px;
    height: 32px;
    color: #000;
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.en-small {
    font-size: 0.8rem;
    color: var(--primary-light);
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-section {
        padding: 5rem 0;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .why-card {
        padding: 2rem;
    }

    .why-icon {
        width: 70px;
        height: 70px;
    }

    .why-icon svg {
        width: 36px;
        height: 36px;
    }

    .why-card h3 {
        font-size: 1.25rem;
    }
}

/* ========================================
   CITIES SECTION
======================================== */
.cities-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.3) 50%, transparent);
}

.cities-grid {
    display: grid;
    gap: 1.5rem;
}

.city-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(17, 24, 39, 0.6));
    backdrop-filter: blur(10px);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    pointer-events: none;
}

.city-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.city-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

.city-icon svg {
    width: 26px;
    height: 26px;
    color: #000;
}

.city-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.city-name-en {
    display: block;
    font-size: 0.6em;
    color: var(--primary-light);
    font-weight: 600;
    margin-top: 0.25rem;
}

.city-count {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.city-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* City-Specific Colors */
.cairo-card .city-icon {
    background: linear-gradient(135deg, #d4af37, #b8941f);
}

.giza-card .city-icon {
    background: linear-gradient(135deg, #c2793b, #a5632c);
}

.alexandria-card .city-icon {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

.qalyubia-card .city-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.sharqia-card .city-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.monufia-card .city-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.hurghada-card .city-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.luxor-card .city-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

@media (min-width: 640px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cities-section {
        padding: 5rem 0;
    }

    .cities-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .city-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .city-card::before {
        width: 150px;
        height: 150px;
    }

    .city-card:hover {
        transform: translateY(-8px);
    }

    .city-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .city-icon svg {
        width: 32px;
        height: 32px;
    }

    .city-name {
        font-size: 1.75rem;
    }

    .city-count {
        font-size: 1.1rem;
    }

    .city-desc {
        font-size: 0.95rem;
    }
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    padding: 3rem 0;
}

.services-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(17, 24, 39, 0.6));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
}

.service-icon.electrician {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-icon.plumber {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.service-icon.ac {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
}

.service-icon.carpenter {
    background: linear-gradient(135deg, #c2793b, #a5632c);
}

.service-icon.appliance {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-icon.painter {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.service-subtitle {
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.services-cta {
    text-align: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.btn-primary svg {
    width: 22px;
    height: 22px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-section {
        padding: 5rem 0;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-card {
        padding: 2rem;
        border-radius: 20px;
    }

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

    .service-icon {
        width: 80px;
        height: 80px;
        border-radius: 16px;
    }

    .service-icon svg {
        width: 40px;
        height: 40px;
    }

    .service-card h3 {
        font-size: 1.35rem;
    }

    .service-subtitle {
        font-size: 0.9rem;
    }

    .service-desc {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }

    .btn-primary svg {
        width: 24px;
        height: 24px;
    }
}

/* ========================================
   WORKERS SECTION
======================================== */
.workers-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.5), rgba(30, 41, 59, 0.3));
    position: relative;
    overflow: hidden;
}

.workers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05), transparent 70%);
    pointer-events: none;
}

.workers-content {
    position: relative;
    z-index: 1;
}

.workers-intro {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.en-text {
    display: block;
    color: var(--primary-light);
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.workers-benefits-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(17, 24, 39, 0.4));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(17, 24, 39, 0.6));
}

.benefit-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--success), #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.benefit-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.worker-visual {
    margin-top: 2rem;
}

.workers-image {
    text-align: center;
    position: relative;
    margin-bottom: 1.5rem;
}

.workers-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(16, 185, 129, 0.2);
    transition: transform 0.4s;
}

.workers-image:hover img {
    transform: scale(1.02);
}

.workers-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, var(--success), #059669);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.workers-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.workers-cta:hover::before {
    width: 400px;
    height: 400px;
}

.workers-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

.workers-cta svg {
    width: 22px;
    height: 22px;
}

@media (min-width: 640px) {
    .workers-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .workers-section {
        padding: 5rem 0;
    }

    .workers-content {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
        gap: 4rem;
    }

    .workers-intro {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }

    .en-text {
        font-size: 1rem;
    }

    .workers-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 12px;
    }

    .benefit-icon svg {
        width: 26px;
        height: 26px;
    }

    .benefit-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.35rem;
    }

    .benefit-text p {
        font-size: 0.9rem;
    }

    .worker-visual {
        margin-top: 0;
    }

    .workers-image {
        margin-bottom: 2rem;
    }

    .workers-image img {
        border-radius: 24px;
    }

    .workers-cta {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }

    .workers-cta svg {
        width: 24px;
        height: 24px;
    }
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    padding: 3rem 0;
}

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

.faq-item {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    text-align: right;
    padding: 1.25rem 3rem 1.25rem 1.25rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    position: relative;
    background: none;
    border: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-content {
    overflow: hidden;
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 5rem 0;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-question {
        padding: 1.5rem 3rem 1.5rem 1.5rem;
        font-size: 1.1rem;
    }

    .faq-question::after {
        right: 1.5rem;
    }

    .faq-answer-content {
        padding: 0 1.5rem 1.5rem;
    }
}

/* ========================================
   FINAL CTA SECTION
======================================== */
.final-cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(8, 145, 178, 0.05));
}

.final-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta-description {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.final-cta-buttons {
    margin-bottom: 2rem;
}

.final-cta-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.final-stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.final-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.final-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (min-width: 640px) {
    .final-cta-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .final-cta-section {
        padding: 5rem 0;
    }

    .final-stat-item {
        padding: 1.25rem;
        border-radius: 16px;
    }
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.65rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-col h4 {
        font-size: 1.25rem;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 2rem;
    }

    .footer-bottom p {
        margin-bottom: 0;
        text-align: right;
    }

    .footer-links {
        gap: 1.5rem;
    }

    .footer-links svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   FLOATING MOBILE CTA
======================================== */
.floating-cta-mobile {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem;
    background: linear-gradient(to top, rgba(3, 7, 18, 0.98), rgba(3, 7, 18, 0.95));
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta-mobile.visible {
    bottom: 0;
}

.btn-floating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 -4px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.btn-floating:active {
    transform: scale(0.98);
}

@media (min-width: 1024px) {
    .floating-cta-mobile {
        display: none;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll padding for fixed header */
:target {
    scroll-margin-top: 80px;
}