/*
|--------------------------------------------------------------------------
| Theme: Clean White Pro — Siarra Ventures
|--------------------------------------------------------------------------
| Drop this file AFTER tooplate-strategic-style.css in your layout.
| It overrides every colour token in the original stylesheet.
|
| Palette
|   --clr-primary   : #1e293b  (dark navy  — buttons, icons, accents)
|   --clr-secondary : #334155  (mid navy   — gradients, hover states)
|   --clr-accent    : #475569  (slate      — subtitles, muted text)
|   --clr-light-1   : #f8fafc  (near-white — page & section backgrounds)
|   --clr-light-2   : #e2e8f0  (soft grey  — cards, alternating sections)
|   --clr-light-3   : #cbd5e1  (border grey)
|   --clr-text      : #1e293b  (body copy)
|   --clr-muted     : #64748b  (secondary copy)
|--------------------------------------------------------------------------
*/

/* ── 1. CSS VARIABLES ─────────────────────────────────────────────────────── */
:root {
    --clr-primary: #004d3d;    /* Dark Green */
    --clr-secondary: #b08d57;  /* Gold */
    --clr-accent: #00695c;     /* Lighter Green */
    --clr-light-1: #f8fafc;
    --clr-light-2: #e2e8f0;
    --clr-light-3: #cbd5e1;
    --clr-text: #1e293b;
    --clr-muted: #64748b;
    --clr-white: #ffffff;
    --clr-gold: #b08d57;
}

/* ── Logo Specific Styles ────────────────────────────────────────────────── */
.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main-name {
    color: var(--clr-primary);
    font-weight: 800;
    font-size: 1.9rem;
    letter-spacing: 0.05em;
    font-family: 'Playfair Display', serif; /* Or a similar elegant serif */
}

.logo-tagline {
    color: var(--clr-gold);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── 2. BODY ──────────────────────────────────────────────────────────────── */
body {
    color: var(--clr-text);
    background: var(--clr-light-1);
}

/* ── 3. NAVBAR ────────────────────────────────────────────────────────────── */
.navbar {
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-light-3);
}

/* Reset original logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: none !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
}

.logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-logo-img {
    height: 60px;
    width: auto;
    border-radius: 4px;
}

/* Nav links */
.nav-links a {
    color: var(--clr-text);
}

.nav-links a:hover {
    color: var(--clr-accent);
}

/* Underline accent */
.nav-links a::after {
    background: var(--clr-primary);
}

.nav-links a.active {
    color: var(--clr-primary);
}

/* Hamburger bars */
.mobile-menu span {
    background: var(--clr-primary);
}

/* Mobile dropdown */
@media (max-width: 940px) {
    .nav-links {
        background: rgba(248, 250, 252, 0.98);
        box-shadow: 0 10px 30px rgba(30, 41, 59, 0.1);
    }
}

/* ── 4. HERO — light background with dark text ────────────────────────────── */
.hero {
    background: linear-gradient(135deg,
            var(--clr-light-1) 0%,
            var(--clr-light-2) 50%,
            #cbd5e1 100%);
    color: var(--clr-text);
}

/* Grid overlay — subtle dark lines instead of white */
.hero::before {
    background-image:
        linear-gradient(rgba(30, 41, 59, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 41, 59, 0.06) 1px, transparent 1px);
}

/* Hero headings & paragraph */
.hero h1,
#hero-headline {
    color: var(--clr-text);
}

.hero p,
#hero-paragraph {
    color: var(--clr-accent);
    opacity: 1;
}

/* CTA button — dark pill on light background */
.cta-button {
    background: var(--clr-primary);
    color: var(--clr-white);
    border: 2px solid var(--clr-primary);
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.2);
}

.cta-button:hover {
    background: var(--clr-secondary);
    border-color: var(--clr-secondary);
    box-shadow: 0 30px 60px rgba(30, 41, 59, 0.3);
}

/* Geo shapes — dark instead of white */
.geo-shape:nth-child(1),
.geo-shape:nth-child(2),
.geo-shape:nth-child(3),
.geo-shape:nth-child(4),
.geo-shape:nth-child(5) {
    background: linear-gradient(45deg, var(--clr-primary), transparent);
    opacity: 0.07;
}

/* ── 5. SECTION TITLES ────────────────────────────────────────────────────── */
/* ── 5. SECTION TITLES ────────────────────────────────────────────────────── */
.section-title {
    color: var(--clr-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--clr-gold);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--clr-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ── 6. SERVICES SECTION ──────────────────────────────────────────────────── */
.services {
    background: linear-gradient(135deg,
            var(--clr-light-1) 0%,
            var(--clr-light-2) 50%,
            var(--clr-light-1) 100%);
}

/* Diagonal pattern — darker lines */
.services::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="diagonals" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,20 L20,0" stroke="rgba(30,41,59,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23diagonals)"/></svg>');
}

/* Service content panel */
.services-content {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--clr-light-3);
}

/* Service detail text */
.service-details h3 {
    color: var(--clr-text);
}

.service-details .service-subtitle {
    color: var(--clr-accent);
}

.service-details p {
    color: var(--clr-muted);
}

/* Feature list separator */
.service-features li {
    border-bottom: 1px solid rgba(30, 41, 59, 0.07);
}

/* Feature check circle */
.feature-check {
    background: var(--clr-primary);
    color: var(--clr-white);
}

/* Service tabs */
.service-tab {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(30, 41, 59, 0.08);
}

.service-tab:hover,
.service-tab.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(30, 41, 59, 0.25);
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.1);
}

.service-tab.active {
    background: rgba(30, 41, 59, 0.05);
    border-color: rgba(30, 41, 59, 0.3);
}

/* Left accent bar on active tab */
.service-tab::before {
    background: var(--clr-primary);
}

/* Tab icon background */
.tab-icon {
    background: rgba(30, 41, 59, 0.06);
}

.service-tab:hover .tab-icon,
.service-tab.active .tab-icon {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.service-tab h4 {
    color: var(--clr-text);
}

.service-tab p {
    color: var(--clr-muted);
}

/* ── 7. ABOUT SECTION — flip to LIGHT background ─────────────────────────── */
.about-section {
    background: linear-gradient(135deg,
            var(--clr-light-2) 0%,
            var(--clr-white) 100%);
    color: var(--clr-text);
}

/* Grid overlay — dark lines */
.about-section::before {
    background-image:
        repeating-linear-gradient(45deg,
            rgba(30, 41, 59, 0.04),
            rgba(30, 41, 59, 0.04) 1px,
            transparent 1px,
            transparent 100px),
        repeating-linear-gradient(-45deg,
            rgba(30, 41, 59, 0.04),
            rgba(30, 41, 59, 0.04) 1px,
            transparent 1px,
            transparent 100px);
}

/* Left accent line */
.about-content::before {
    background: linear-gradient(to bottom, var(--clr-primary), transparent);
}

/* About headings */
.about-content h2 {
    color: var(--clr-text);
}

.about-content .highlight {
    color: var(--clr-accent);
}

.about-content p {
    color: var(--clr-muted);
}

/* About links */
.about-content a {
    color: var(--clr-accent);
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content a::after {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
}

/* Feature items in about */
.feature-item {
    background: rgba(30, 41, 59, 0.04);
    border: 1px solid rgba(30, 41, 59, 0.08);
}

.feature-item:hover {
    background: rgba(30, 41, 59, 0.07);
}

.feature-icon {
    background: var(--clr-primary);
}

.feature-text {
    color: var(--clr-text);
}

/* Stats */
.stat {
    background: rgba(30, 41, 59, 0.06);
    border: 1px solid rgba(30, 41, 59, 0.1);
}

.stat:hover {
    background: rgba(30, 41, 59, 0.1);
}

.stat-number {
    color: var(--clr-primary);
}

.stat-label {
    color: var(--clr-accent);
}

/* About image frame */
.about-image {
    background: rgba(30, 41, 59, 0.05);
    border: 1px solid rgba(30, 41, 59, 0.1);
}

.about-image::before {
    background: conic-gradient(from 0deg, transparent, rgba(30, 41, 59, 0.15), transparent);
}

/* ── 8. TEAM SECTION ──────────────────────────────────────────────────────── */
.team {
    background: var(--clr-light-1);
}

/* Member card */
.member-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.8));
    border: 2px solid var(--clr-light-3);
}

.member-card:hover {
    border-color: rgba(30, 41, 59, 0.25);
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.12);
}

.member-card::before {
    background: linear-gradient(90deg, transparent, rgba(30, 41, 59, 0.06), transparent);
}

/* Avatar ring */
.member-avatar {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
}

.member-info h3 {
    color: var(--clr-text);
}

.member-role {
    color: var(--clr-accent);
}

.member-info p {
    color: var(--clr-muted);
}

/* ── 9. TESTIMONIALS SECTION ──────────────────────────────────────────────── */
.testimonials {
    background: linear-gradient(135deg, var(--clr-light-2) 0%, var(--clr-light-1) 100%);
}

/* Testimonial card */
.testimonial-content {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--clr-light-3);
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.08);
}

.testimonial-content::before {
    color: rgba(30, 41, 59, 0.12);
}

.testimonial-text {
    color: var(--clr-text);
}

/* Author avatar */
.author-avatar {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.author-info h4 {
    color: var(--clr-text);
}

.author-info span {
    color: var(--clr-accent);
}

/* ── 10. CONTACT SECTION ──────────────────────────────────────────────────── */
.contact {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
    color: var(--clr-white);
}

/* Grid overlay */
.contact::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
}

/* Contact title stays white */
.contact .section-title {
    color: var(--clr-white);
}

/* Form inputs */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--clr-light-3);
    box-shadow: 0 0 0 4px rgba(203, 213, 225, 0.25);
}

/* Submit button */
.submit-btn {
    background: linear-gradient(135deg, var(--clr-light-1), var(--clr-light-2));
    color: var(--clr-primary);
}

.submit-btn:hover {
    box-shadow: 0 15px 30px rgba(203, 213, 225, 0.3);
    background: linear-gradient(135deg, var(--clr-white), var(--clr-light-1));
}

/* ── 11. FOOTER ───────────────────────────────────────────────────────────── */
.footer {
    background: #0f172a;
    border-top: 1px solid rgba(203, 213, 225, 0.15);
}

.footer-links a:hover {
    color: var(--clr-light-3);
}

.footer-design a:hover {
    color: var(--clr-light-3);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

.footer-logo svg {
    margin-right: 10px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 2px;
}

/* ── 12. FLOATING CONTACT ────────────────────────────────────────────────── */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.float-button img {
    width: 30px;
    height: 30px;
}

.float-button.phone {
    background: #004d3d; /* SIARRA Primary Green */
}

.float-button.whatsapp {
    background: #25D366; /* WhatsApp Green */
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .float-button {
        width: 50px;
        height: 50px;
    }
    
    .float-button img {
        width: 25px;
        height: 25px;
    }
}
/* ── 13. LOCATION PAGES ──────────────────────────────────────────────────── */
.location-hero {
    padding: 140px 20px 100px;
    background: linear-gradient(135deg, var(--clr-primary) 0%, #002d24 100%);
    color: var(--clr-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(176, 141, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(176, 141, 87, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
}

.location-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.location-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.1;
}

.location-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
}

@media (max-width: 768px) {
    .location-hero {
        padding: 130px 20px 80px !important;
    }
    
    .location-hero h1 {
        font-size: 2.2rem !important;
        margin-bottom: 20px !important;
    }
    
    .location-hero p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    .location-cards-container {
        margin-top: -40px !important;
        gap: 20px !important;
    }
}

.location-main-section {
    padding: 0 20px 80px;
    background: var(--clr-light-1);
}

.location-cards-container {
    max-width: 1200px;
    margin: -60px auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10;
}

.location-feature-card {
    background: var(--clr-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 77, 61, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.location-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 77, 61, 0.12);
    border-color: var(--clr-gold);
}

@media (max-width: 768px) {
    .location-feature-card {
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.location-feature-card h3 {
    color: var(--clr-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.location-feature-card p {
    color: var(--clr-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.areas-served-box {
    max-width: 1000px;
    margin: 40px auto;
    background: var(--clr-white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.areas-served-box h2 {
    color: var(--clr-primary);
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 800;
}

.area-tags-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-tag {
    background: var(--clr-light-1);
    color: var(--clr-primary);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--clr-light-3);
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
    transform: scale(1.05);
}

.location-cta-banner {
    background: linear-gradient(135deg, var(--clr-gold) 0%, #8e6f42 100%);
    padding: 80px 40px;
    border-radius: 40px;
    color: var(--clr-white);
    text-align: center;
    max-width: 1100px;
    margin: 60px auto;
}

.location-cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
}

.location-cta-btn {
    display: inline-block;
    background: var(--clr-primary);
    color: var(--clr-white);
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.location-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #00362b;
}

.back-to-home {
    position: fixed;
    top: 120px; /* Just below the navbar */
    left: 30px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--clr-primary);
    padding: 12px 20px;
    border-radius: 50px;
    border: 2px solid var(--clr-gold);
    box-shadow: 0 10px 25px rgba(0, 77, 61, 0.3);
}

.back-to-home:hover {
    transform: scale(1.1) translateX(5px);
    background: var(--clr-gold);
    color: var(--clr-primary);
    box-shadow: 0 15px 35px rgba(176, 141, 87, 0.4);
}

@media (max-width: 768px) {
    .back-to-home {
        top: auto;
        bottom: 30px;
        left: 20px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* ── 14. FAQ SECTION — PREMIUM UPGRADE ─────────────────────────────────────── */
.faq-section {
    padding: 120px 20px;
    background: radial-gradient(circle at top right, var(--clr-light-1) 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M54.627 0l.83.83L0 55.457l-.83-.83L54.627 0zM59.172 5.373l.828.828L5.373 60l-.828-.828L59.172 5.373zM60 15.457l-.83-.83L15.457 60l.83.83L60 15.457zM60 35.457l-.83-.83L35.457 60l.83.83L60 35.457zM60 55.457l-.83-.83L55.457 60l.83.83L60 55.457zM15.457 0l.83.83L0 16.287l-.83-.83L15.457 0zm20 0l.83.83L0 36.287l-.83-.83L35.457 0zm20 0l.83.83L0 56.287l-.83-.83L55.457 0z" fill="%23004d3d" fill-opacity="0.02" fill-rule="evenodd"/></svg>');
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-grid {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 77, 61, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    color: var(--clr-primary);
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.faq-icon {
    width: 36px;
    height: 36px;
    background: var(--clr-light-1);
    color: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 35px;
    color: var(--clr-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-item.active {
    background: var(--clr-white);
    border-color: var(--clr-gold);
    box-shadow: 0 20px 50px rgba(0, 77, 61, 0.12);
    transform: translateY(-5px);
}

.faq-item.active .faq-question {
    color: var(--clr-gold);
}

.faq-item.active .faq-icon {
    background: var(--clr-gold);
    color: var(--clr-white);
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 10px 35px 30px;
}

/* ── 15. SERVICE COVERAGE TICKER — PREMIUM UPGRADE ────────────────────────── */
.service-coverage {
    padding: 120px 20px;
    background: #002d24;
    position: relative;
    overflow: hidden;
}

.service-coverage .section-title {
    color: var(--clr-white);
}

.service-coverage .section-title::after {
    background: var(--clr-gold);
}

.service-coverage .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Dynamic background mesh */
.service-coverage::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle at center, rgba(176, 141, 87, 0.15) 0%, transparent 70%);
    animation: rotateMesh 20s linear infinite;
}

@keyframes rotateMesh {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ticker-wrapper {
    margin-top: 60px;
    padding: 40px 0;
    position: relative;
}

/* Gradient fade on edges */
.ticker-wrapper::before,
.ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #002d24, transparent);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #002d24, transparent);
}

.ticker-track {
    display: flex;
    animation: premiumTicker 10s linear infinite;
    gap: 60px;
}

@keyframes premiumTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 25px;
    white-space: nowrap;
}

.ticker-label {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--clr-gold);
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(176, 141, 87, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(176, 141, 87, 0.2);
}

.area-pills {
    display: flex;
    gap: 15px;
}

.area-pill {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: var(--clr-white);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.area-pill:hover {
    background: var(--clr-gold);
    color: var(--clr-primary);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--clr-gold);
    box-shadow: 0 10px 25px rgba(176, 141, 87, 0.3);
}

@media (max-width: 768px) {
    .faq-question { padding: 20px; font-size: 1.1rem; }
    .ticker-track { animation-duration: 15s; }
    .ticker-label { font-size: 1rem; padding: 10px 15px; }
    .area-pill { padding: 8px 16px; font-size: 0.9rem; }
}
/* ── 16. DOCUMENTS REQUIRED SECTION ───────────────────────────────────────── */
.documents-section {
    padding: 100px 20px;
    background: #fff;
    position: relative;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.doc-card {
    background: var(--clr-light-1);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid var(--clr-light-3);
    transition: all 0.4s ease;
    position: relative;
}

.doc-card:hover {
    transform: translateY(-10px);
    background: var(--clr-white);
    border-color: var(--clr-gold);
    box-shadow: 0 20px 40px rgba(0, 77, 61, 0.08);
}

.doc-header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.doc-icon {
    font-size: 2.5rem;
    background: var(--clr-white);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.doc-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--clr-primary);
    font-weight: 800;
    font-size: 1.5rem;
}

.doc-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-text);
    font-weight: 500;
}

.doc-check {
    color: var(--clr-gold);
    font-weight: 900;
}

.doc-note {
    margin-top: 60px;
    text-align: center;
    padding: 20px 40px;
    background: rgba(176, 141, 87, 0.05);
    border-radius: 15px;
    border-left: 5px solid var(--clr-gold);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .documents-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .documents-grid { grid-template-columns: 1fr; }
    .doc-card { padding: 30px 20px; }
}

/* ── 17. MOBILE GLOBAL OVERRIDES ── */
@media (max-width: 768px) {
    section, .section {
        padding: 60px 20px !important;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.2rem) !important;
        margin-bottom: 0.8rem !important;
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 2.5rem !important;
        padding: 0 10px;
    }

    /* FAQ Mobile Tweaks */
    .faq-question {
        padding: 18px 20px !important;
        font-size: 1.05rem !important;
    }
    
    .faq-answer {
        padding: 0 20px !important;
        font-size: 0.95rem !important;
    }
    
    .faq-item.active .faq-answer {
        padding: 10px 20px 25px !important;
    }

    /* Ticker Mobile Speed */
    .ticker-track {
        animation-duration: 20s !important;
    }
}

