/* =====================================================================
   RBS Consultants — shared stylesheet
   Previously this CSS was copied inline into every page (~211 KB across
   the site, already drifting between copies). It now lives here once.
   Page-specific overrides stay in each page's <style> block, which the
   browser applies after this file.
   ===================================================================== */


        :root { --primary-dark: #0d0f1a; --primary-navy: #12132a; --secondary-navy: #1a1c35; --gold: #c9a55c; --gold-light: #d4b76a; --gold-dark: #a88b4a; --cream: #f5f1e8; --text-light: #e8e6e0; --text-muted: #b0b0b0; --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body { font-family: 'Source Sans 3', sans-serif; background: var(--primary-dark); color: var(--text-light); line-height: 1.7; position: relative; }

        h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.3; }

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

        .container { max-width: 1600px; margin: 0 auto; padding: 0 3%; }

        
        /* Decorative Side Panels */
        body::before { display: none;
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 80px;
            height: 100%;
            background: linear-gradient(90deg, rgba(18, 19, 42, 0.95) 0%, rgba(18, 19, 42, 0.5) 50%, transparent 100%);
            border-right: 1px solid rgba(201, 165, 92, 0.15);
            pointer-events: none;
            z-index: 1;
        }

        body::after { display: none;
            content: '';
            position: fixed;
            top: 0;
            right: 0;
            width: 80px;
            height: 100%;
            background: linear-gradient(-90deg, rgba(18, 19, 42, 0.95) 0%, rgba(18, 19, 42, 0.5) 50%, transparent 100%);
            border-left: 1px solid rgba(201, 165, 92, 0.15);
            pointer-events: none;
            z-index: 1;
        }

        
        /* Side Decorative Lines */
        .side-decor-left, .side-decor-right { display: none !important;
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 2px;
            height: 250px;
            background: linear-gradient(180deg, transparent, var(--gold), transparent);
            opacity: 0.5;
            z-index: 2;
            pointer-events: none;
        }

        .side-decor-left { left: 38px; }

        .side-decor-right { right: 38px; }

        
        
        /* Vertical Side Text */
        .side-text {
            position: fixed;
            top: 50%;
            font-size: 0.65rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            opacity: 0.3;
            pointer-events: none;
            z-index: 2;
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }

        .side-text-left { left: 15px; transform: translateY(-50%) rotate(180deg); }

        .side-text-right { right: 15px; transform: translateY(-50%); }

        
        /* Header */
        header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 0; background: rgba(13, 15, 26, 0.95); backdrop-filter: blur(20px); }

        header.scrolled { padding: 0.75rem 0; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }

        nav { display: flex; justify-content: space-between; align-items: center; }

        .logo-text { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--cream); }

        .logo-text span { font-weight: 400; font-size: 0.8rem; letter-spacing: 2px; color: var(--text-muted); display: block; margin-top: -5px; }

        .logo-accent { width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); margin-top: 2px; }

        .nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }

        .nav-links a { color: var(--text-light); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.4px; text-transform: uppercase; white-space: nowrap; }

        .nav-links a:hover, .nav-links a.active { color: var(--gold); }

        .nav-contact { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }

        .nav-phone { color: var(--gold); font-weight: 600; font-size: 0.88rem; white-space: nowrap; }

        .btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--primary-dark); padding: 0.85rem 2rem; font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; display: inline-block; }

        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201, 165, 92, 0.3); }

        .btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); padding: 0.85rem 2rem; font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; display: inline-block; }

        .btn-outline:hover { background: var(--gold); color: var(--primary-dark); }

        
        /* Mobile Menu Button */
        .mobile-menu-btn { 
            display: none; 
            flex-direction: column; 
            gap: 6px; 
            cursor: pointer; 
            padding: 10px; 
            background: none; 
            border: none; 
            position: relative;
            z-index: 1001;
        }

        .mobile-menu-btn span { 
            width: 28px; 
            height: 2px; 
            background: var(--cream); 
            display: block; 
            transition: var(--transition);
        }

        .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }

        .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }

        .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

        
        /* Mobile Navigation */
        .mobile-nav { 
            position: fixed; 
            top: 0; 
            right: -100%; 
            width: 100%; 
            max-width: 400px; 
            height: 100vh; 
            background: var(--primary-navy); 
            z-index: 1000; 
            transition: right 0.4s ease; 
            padding: 100px 40px 40px; 
            display: flex; 
            flex-direction: column; 
        }

        .mobile-nav.active { right: 0; }

        .mobile-nav-overlay { 
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            background: rgba(0,0,0,0.7); 
            z-index: 999; 
            opacity: 0; 
            visibility: hidden; 
            transition: var(--transition); 
        }

        .mobile-nav-overlay.active { opacity: 1; visibility: visible; }

        .mobile-nav-links { list-style: none; }

        .mobile-nav-links li { border-bottom: 1px solid rgba(201, 165, 92, 0.1); }

        .mobile-nav-links a { display: block; padding: 1.25rem 0; color: var(--text-light); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }

        .mobile-nav-links a:hover, .mobile-nav-links a.active { color: var(--gold); }

        .mobile-nav-contact { margin-top: auto; padding-top: 2rem; }

        .mobile-nav-contact p { color: var(--text-muted); margin-bottom: 0.5rem; font-size: 0.9rem; }

        .mobile-nav-contact > a { color: var(--gold); font-size: 1.1rem; font-weight: 600; display: block; margin-bottom: 1rem; }

        .mobile-nav-contact .btn-primary { width: 100%; text-align: center; margin-top: 1rem; }

        
        /* Hero */
        .hero { min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 4rem; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 50%, var(--secondary-navy) 100%); position: relative; overflow: hidden; }

        .hero::before { content: ''; position: absolute; top: -50%; right: -30%; width: 80%; height: 200%; background: radial-gradient(ellipse, rgba(201, 165, 92, 0.05) 0%, transparent 70%); pointer-events: none; animation: float 20s ease-in-out infinite; }

        .hero::after { content: ''; position: absolute; bottom: -20%; left: -20%; width: 50%; height: 100%; background: radial-gradient(ellipse, rgba(201, 165, 92, 0.03) 0%, transparent 70%); pointer-events: none; }

        
        /* Animated floating shapes */
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        
        /* Decorative geometric shapes */
        .hero-shapes { position: absolute; width: 100%; height: 100%; pointer-events: none; overflow: hidden; }

        .hero-shape { position: absolute; border: 1px solid rgba(201, 165, 92, 0.1); }

        .hero-shape-1 { width: 300px; height: 300px; top: 10%; right: 5%; border-radius: 50%; animation: pulse 4s ease-in-out infinite; }

        .hero-shape-2 { width: 150px; height: 150px; bottom: 20%; left: 5%; transform: rotate(45deg); animation: pulse 5s ease-in-out infinite 1s; }

        .hero-shape-3 { width: 80px; height: 80px; top: 30%; left: 10%; border-radius: 50%; border-color: rgba(201, 165, 92, 0.15); animation: pulse 3s ease-in-out infinite 0.5s; }

        .hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

        .hero-badge { display: inline-block; background: rgba(201, 165, 92, 0.15); border: 1px solid rgba(201, 165, 92, 0.3); color: var(--gold); padding: 0.5rem 1.25rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; }

        .hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--cream); margin-bottom: 1.5rem; }

        .hero h1 .highlight { color: var(--gold); display: block; }

        .hero p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1rem; line-height: 1.8; }

        .hero-tagline { color: var(--gold); font-style: italic; font-size: 1rem; margin: 1.5rem 0 2rem; padding-left: 1rem; border-left: 2px solid var(--gold); }

        .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

        .hero-visual { display: flex; flex-direction: column; gap: 1rem; }

        .hero-stat-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(201, 165, 92, 0.15); padding: 1.5rem; backdrop-filter: blur(10px); }

        .hero-stat-card h2, .hero-stat-card h3, .hero-stat-card h4, .hero-stat-card h5 { color: var(--gold); font-size: 2rem; margin-bottom: 0.25rem; }

        .hero-stat-card p { color: var(--text-muted); font-size: 0.9rem; }

        
        /* Sections */
        .section { padding: 6rem 0; }

        .section-dark { background: var(--primary-dark); position: relative; overflow: hidden; }

        .section-dark::before { content: ''; position: absolute; top: 0; left: -10%; width: 40%; height: 100%; background: radial-gradient(ellipse at center, rgba(201, 165, 92, 0.02) 0%, transparent 70%); pointer-events: none; }

        .section-dark::after { content: ''; position: absolute; bottom: 0; right: -10%; width: 40%; height: 100%; background: radial-gradient(ellipse at center, rgba(201, 165, 92, 0.02) 0%, transparent 70%); pointer-events: none; }

        .section-navy { background: var(--primary-navy); position: relative; overflow: hidden; }

        .section-navy::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse at center, rgba(201, 165, 92, 0.03) 0%, transparent 60%); pointer-events: none; }

        
        /* Decorative corner accents for sections */
        .section-accent { position: relative; }

        .section-accent::before { content: ''; position: absolute; top: 40px; left: 40px; width: 60px; height: 60px; border-left: 2px solid rgba(201, 165, 92, 0.2); border-top: 2px solid rgba(201, 165, 92, 0.2); pointer-events: none; }

        .section-accent::after { content: ''; position: absolute; bottom: 40px; right: 40px; width: 60px; height: 60px; border-right: 2px solid rgba(201, 165, 92, 0.2); border-bottom: 2px solid rgba(201, 165, 92, 0.2); pointer-events: none; }

        .section-label { display: inline-block; color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; padding-left: 3rem; position: relative; }

        .section-label::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 2rem; height: 2px; background: var(--gold); }

        .section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--cream); margin-bottom: 1rem; }

        .section-header { text-align: center; max-width: 800px; margin: 0 auto 4rem; }

        .section-header p { color: var(--text-muted); font-size: 1.05rem; }

        
        /* Grids */
        .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; align-items: start; }

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

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

        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }

        
        /* Cards */
        .stat-card { text-align: center; padding: 2rem; background: rgba(201, 165, 92, 0.05); border: 1px solid rgba(201, 165, 92, 0.1); position: relative; overflow: hidden; }

        .stat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: var(--transition); }

        .stat-card:hover::before { opacity: 1; }

        .stat-card h2, .stat-card h3, .stat-card h4, .stat-card h5 { font-size: 2.5rem; color: var(--gold); margin-bottom: 0.5rem; }

        .stat-card p { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

        .service-card { background: var(--secondary-navy); padding: 2rem; border: 1px solid rgba(201, 165, 92, 0.1); transition: var(--transition); height: 100%; position: relative; overflow: hidden; }

        .service-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(201, 165, 92, 0.05), transparent); transition: 0.5s; }

        .service-card:hover::before { left: 100%; }

        .service-card:hover { border-color: rgba(201, 165, 92, 0.4); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }

        .service-icon { width: 50px; height: 50px; background: rgba(201, 165, 92, 0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }

        .service-icon svg { width: 24px; height: 24px; stroke: var(--gold); }

        .service-card h2, .service-card h3, .service-card h4, .service-card h5 { font-size: 1.15rem; color: var(--cream); margin-bottom: 0.75rem; }

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

        
        /* Why Choose Us */
        .why-item { display: flex; gap: 1.25rem; margin-bottom: 2rem; }

        .why-number { width: 50px; height: 50px; background: rgba(201, 165, 92, 0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--gold); }

        .why-item h2, .why-item h3, .why-item h4, .why-item h5 { font-size: 1.1rem; color: var(--cream); margin-bottom: 0.4rem; }

        .why-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

        /* Differentiator features (why-choose-us). Same icon idiom as .why-item /
           .service-icon: without an explicit size the inline SVG scales to the full
           grid column and renders ~660px tall. */
        .why-feature { display: flex; gap: 1.25rem; align-items: flex-start; }

        .why-feature-icon { width: 50px; height: 50px; background: rgba(201, 165, 92, 0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

        .why-feature-icon svg { width: 24px; height: 24px; stroke: var(--gold); }

        .why-feature h2, .why-feature h3, .why-feature h4, .why-feature h5 { font-size: 1.15rem; color: var(--cream); margin-bottom: 0.5rem; }

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

        .highlight-card { background: rgba(201, 165, 92, 0.1); border: 1px solid rgba(201, 165, 92, 0.3); padding: 2rem; }

        .highlight-card h2, .highlight-card h3, .highlight-card h4, .highlight-card h5 { color: var(--gold); font-size: 1.25rem; margin-bottom: 1rem; }

        .highlight-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }

        .highlight-card ul { list-style: none; }

        .highlight-card li { padding: 0.4rem 0 0.4rem 1.25rem; position: relative; color: var(--text-muted); font-size: 0.9rem; }

        .highlight-card li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }

        
        /* Industries */
        .industry-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; }

        .industry-tag { background: rgba(201, 165, 92, 0.1); border: 1px solid rgba(201, 165, 92, 0.2); color: var(--text-light); padding: 0.6rem 1.25rem; font-size: 0.85rem; }

        
        /* Clients */
        .client-card { background: var(--secondary-navy); padding: 1.75rem; border: 1px solid rgba(201, 165, 92, 0.1); text-align: center; transition: var(--transition); position: relative; }

        .client-card::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--gold); transition: var(--transition); }

        .client-card:hover { border-color: rgba(201, 165, 92, 0.3); transform: translateY(-3px); }

        .client-card:hover::after { width: 60%; }

        .client-icon { width: 55px; height: 55px; background: rgba(201, 165, 92, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }

        .client-icon svg { width: 26px; height: 26px; stroke: var(--gold); }

        .client-card h2, .client-card h3, .client-card h4, .client-card h5 { color: var(--cream); font-size: 1rem; margin-bottom: 0.5rem; }

        .client-card p { color: var(--text-muted); font-size: 0.85rem; }

        
        /* Team */
        .team-card { text-align: center; padding: 2.5rem 2rem; background: var(--secondary-navy); border: 1px solid rgba(201, 165, 92, 0.1); }

        .team-avatar { width: 100px; height: 100px; background: linear-gradient(135deg, rgba(201, 165, 92, 0.2), rgba(201, 165, 92, 0.1)); border: 3px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }

        .team-avatar svg { width: 50px; height: 50px; stroke: var(--gold); }

        .team-card h2, .team-card h3, .team-card h4, .team-card h5 { color: var(--cream); margin-bottom: 0.25rem; }

        .team-card .role { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }

        .team-card .qualification { color: var(--gold); font-size: 0.95rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: 0.5px; }

        .team-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

        .team-card .phone { color: var(--gold); font-weight: 600; }

        
        /* Contact Section */
        .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }

        .contact-info { padding: 2rem; background: rgba(201, 165, 92, 0.05); border: 1px solid rgba(201, 165, 92, 0.15); }

        .contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(201, 165, 92, 0.1); }

        .contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

        .contact-icon { width: 45px; height: 45px; background: rgba(201, 165, 92, 0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

        .contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); }

        .contact-item h2, .contact-item h3, .contact-item h4, .contact-item h5 { color: var(--cream); font-size: 0.95rem; margin-bottom: 0.25rem; }

        .contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.9rem; }

        .contact-item a:hover { color: var(--gold); }

        .form-container { background: var(--secondary-navy); padding: 2.5rem; border: 1px solid rgba(201, 165, 92, 0.1); }

        .form-container h2, .form-container h3, .form-container h4, .form-container h5 { color: var(--cream); font-size: 1.5rem; margin-bottom: 1.5rem; }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

        .form-group { margin-bottom: 1.25rem; }

        .form-group label { display: block; color: var(--text-light); font-size: 0.85rem; margin-bottom: 0.5rem; }

        .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.85rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(201, 165, 92, 0.2); color: var(--text-light); font-family: inherit; font-size: 0.95rem; }

        .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); }

        .form-group textarea { min-height: 100px; resize: vertical; }

        .form-group select option { background: var(--primary-navy); }

        
        /* Footer */
        footer { background: var(--primary-navy); padding: 4rem 0 0; }

        .footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(201, 165, 92, 0.1); }

        .footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin: 1rem 0; max-width: 280px; line-height: 1.7; }

        .footer-social { display: none; gap: 0.75rem; }

        .footer-social a { width: 38px; height: 38px; background: rgba(201, 165, 92, 0.1); display: flex; align-items: center; justify-content: center; }

        .footer-social a:hover { background: var(--gold); }

        .footer-social a svg { width: 16px; height: 16px; stroke: var(--gold); }

        .footer-social a:hover svg { stroke: var(--primary-dark); }

        .footer-links h2, .footer-links h3, .footer-links h4, .footer-links h5 { font-size: 0.9rem; color: var(--cream); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }

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

        .footer-links li { margin-bottom: 0.5rem; }

        .footer-links a { color: var(--text-muted); font-size: 0.85rem; }

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

        .footer-bottom { padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }

        .footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

        .footer-legal { display: flex; gap: 1.5rem; }

        .footer-legal a { color: var(--text-muted); font-size: 0.8rem; }

        .footer-legal a:hover { color: var(--gold); }

        
        /* Responsive */
        @media (max-width: 1024px) {
            .nav-links, .nav-contact { display: none; }
            .mobile-menu-btn { display: flex; }
            .hero-container { grid-template-columns: 1fr; text-align: center; }
            .hero-visual { display: none; }
            .hero-cta { justify-content: center; }
            .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 2rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-main { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .container { padding: 0 6%; }
            .section { padding: 4rem 0; }
            .hero { padding: 7rem 0 3rem; min-height: auto; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
            .stat-card { padding: 1.25rem; }
            .stat-card h2, .stat-card h3, .stat-card h4, .stat-card h5 { font-size: 1.75rem; }
            .form-row { grid-template-columns: 1fr; }
            .footer-main { grid-template-columns: repeat(2, 1fr); text-align: center; }
            .footer-brand { grid-column: span 2; text-align: center; }
            .footer-brand p { max-width: 100%; margin-left: auto; margin-right: auto; }
            .footer-links { text-align: center; }
            .footer-social { justify-content: center; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-legal { justify-content: center; }
            .why-item { flex-direction: column; text-align: center; }
            .why-number { margin: 0 auto; }
        }

    
        .mobile-nav-close { position: absolute; top: 25px; right: 25px; background: none; border: none; color: var(--gold); cursor: pointer; padding: 10px; z-index: 10; }

        .mobile-nav-close:hover { color: var(--cream); }

        .mobile-nav-contact .btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--primary-dark); opacity: 1; }


    
        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 998;
            transition: all 0.3s ease;
            animation: whatsapp-pulse 2s ease infinite;
        }

        @keyframes whatsapp-pulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
            animation: none;
        }

        .whatsapp-float svg {
            width: 28px;
            height: 28px;
            fill: white;
        }


    /* ===== DISCLAIMER POPUP ===== */
        .disclaimer-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 15, 26, 0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .disclaimer-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .disclaimer-modal {
            background: var(--primary-navy);
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            border: 1px solid rgba(201, 165, 92, 0.3);
            display: flex;
            overflow: hidden;
        }

        .disclaimer-brand {
            width: 280px;
            background: var(--primary-dark);
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-right: 1px solid rgba(201, 165, 92, 0.2);
        }

        .disclaimer-brand .logo-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 1.5rem;
        }

        .disclaimer-brand .logo-icon svg {
            width: 100%;
            height: 100%;
            fill: var(--gold);
        }

        .disclaimer-brand h2, .disclaimer-brand h3, .disclaimer-brand h4, .disclaimer-brand h5 {
            font-size: 1.5rem;
            color: var(--cream);
            margin-bottom: 0.5rem;
        }

        .disclaimer-brand p {
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
        }

        .disclaimer-content {
            flex: 1;
            padding: 2.5rem;
            overflow-y: auto;
        }

        .disclaimer-content h2, .disclaimer-content h3, .disclaimer-content h4, .disclaimer-content h5 {
            font-size: 1.75rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .disclaimer-content .intro {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .disclaimer-content ul {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .disclaimer-content ul li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .disclaimer-content ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 1.2rem;
        }

        .disclaimer-content .links {
            margin-bottom: 1.5rem;
        }

        .disclaimer-content .links a {
            color: var(--gold);
            text-decoration: underline;
        }

        .disclaimer-content .links a:hover {
            color: var(--gold-light);
        }

        .disclaimer-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .disclaimer-buttons button {
            flex: 1;
            padding: 1rem 2rem;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-agree {
            background: var(--gold);
            color: var(--primary-dark);
        }

        .btn-agree:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(201, 165, 92, 0.3);
        }

        .btn-disagree {
            background: transparent;
            border: 2px solid rgba(255,255,255,0.3) !important;
            color: var(--text-light);
        }

        .btn-disagree:hover {
            border-color: var(--gold) !important;
            color: var(--gold);
        }

        @media (max-width: 768px) {
            .disclaimer-modal {
                flex-direction: column;
                max-height: 95vh;
            }
            .disclaimer-brand {
                width: 100%;
                padding: 1.5rem;
                flex-direction: row;
                gap: 1rem;
                border-right: none;
                border-bottom: 1px solid rgba(201, 165, 92, 0.2);
            }
            .disclaimer-brand .logo-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 0;
            }
            .disclaimer-brand h2, .disclaimer-brand h3, .disclaimer-brand h4, .disclaimer-brand h5 {
                font-size: 1.2rem;
                margin-bottom: 0;
            }
            .disclaimer-brand p {
                display: none;
            }
            .disclaimer-content {
                padding: 1.5rem;
            }
            .disclaimer-content h2, .disclaimer-content h3, .disclaimer-content h4, .disclaimer-content h5 {
                font-size: 1.3rem;
            }
            .disclaimer-buttons {
                flex-direction: column;
            }
        }

        
        /* ===== SCROLL ANIMATIONS ===== */
        
        /* Base state for animated elements */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        
        /* Fade in from left */
        .animate-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        
        /* Fade in from right */
        .animate-right {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        
        /* Scale up animation */
        .animate-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-scale.animated {
            opacity: 1;
            transform: scale(1);
        }

        
        /* Staggered children animation */
        .stagger-children > * {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .stagger-children.animated > *:nth-child(1) { transition-delay: 0.1s; }

        .stagger-children.animated > *:nth-child(2) { transition-delay: 0.2s; }

        .stagger-children.animated > *:nth-child(3) { transition-delay: 0.3s; }

        .stagger-children.animated > *:nth-child(4) { transition-delay: 0.4s; }

        .stagger-children.animated > *:nth-child(5) { transition-delay: 0.5s; }

        .stagger-children.animated > *:nth-child(6) { transition-delay: 0.6s; }

        .stagger-children.animated > *:nth-child(7) { transition-delay: 0.7s; }

        .stagger-children.animated > *:nth-child(8) { transition-delay: 0.8s; }

        .stagger-children.animated > * {
            opacity: 1;
            transform: translateY(0);
        }

        
        /* ===== ENHANCED HOVER EFFECTS ===== */
        
        /* Button hover effects */
        .btn-primary {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
            z-index: -1;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(201, 165, 92, 0.4);
        }

        
        .btn-outline {
            position: relative;
            overflow: hidden;
        }

        .btn-outline::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gold);
            transition: height 0.3s ease;
            z-index: -1;
        }

        .btn-outline:hover::after {
            height: 100%;
        }

        .btn-outline:hover {
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        
        /* Card tilt effect on hover */
        .service-card {
            transition: all 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px) rotateX(2deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 165, 92, 0.1);
        }

        .service-card .service-icon {
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.15) rotate(5deg);
            background: var(--gold);
        }

        .service-card:hover .service-icon svg {
            stroke: var(--primary-dark);
        }

        
        /* Stat card counter effect */
        .stat-card {
            transition: all 0.4s ease;
        }

        .stat-card:hover {
            transform: translateY(-8px) scale(1.02);
            background: rgba(201, 165, 92, 0.12);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .stat-card h2, .stat-card h3, .stat-card h4, .stat-card h5 {
            transition: all 0.3s ease;
        }

        .stat-card:hover h2, .stat-card:hover h3, .stat-card:hover h4, .stat-card:hover h5 {
            transform: scale(1.1);
            text-shadow: 0 0 20px rgba(201, 165, 92, 0.5);
        }

        
        /* Team card hover */
        .team-card {
            transition: all 0.4s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border-color: var(--gold);
        }

        .team-avatar {
            transition: all 0.4s ease;
        }

        .team-card:hover .team-avatar {
            transform: scale(1.1);
            border-color: var(--gold);
            box-shadow: 0 0 30px rgba(201, 165, 92, 0.3);
        }

        
        /* Navigation link hover underline effect */
        .nav-links a {
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        
        /* Image/icon pulse effect */
        .pulse-hover:hover {
            animation: pulse-effect 1s ease infinite;
        }

        @keyframes pulse-effect {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        
        /* Glow effect for important elements */
        .glow-hover:hover {
            box-shadow: 0 0 30px rgba(201, 165, 92, 0.4), 0 0 60px rgba(201, 165, 92, 0.2);
        }

        
        /* Text reveal animation */
        .text-reveal {
            background: linear-gradient(90deg, var(--gold) 50%, var(--text-light) 50%);
            background-size: 200% 100%;
            background-position: 100% 0;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: background-position 0.5s ease;
        }

        .text-reveal:hover {
            background-position: 0 0;
        }

        
        /* Floating animation for decorative elements */
        @keyframes float-gentle {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .float-animation {
            animation: float-gentle 3s ease-in-out infinite;
        }

        
        /* Ripple effect for clickable elements */
        .ripple {
            position: relative;
            overflow: hidden;
        }

        .ripple::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(201, 165, 92, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .ripple:active::after {
            width: 300px;
            height: 300px;
        }

        
        /* Smooth section transitions */
        section {
            transition: background 0.5s ease;
        }

        
        /* Hero text animation */
        .hero h1 {
            animation: fadeInUp 1s ease forwards;
        }

        .hero p {
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }

        .hero .hero-cta {
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        
        /* Parallax-like scroll effect for hero shapes */
        .hero-shape {
            transition: transform 0.3s ease-out;
        }

        
        /* Form Validation */
        .field-error { color: #ff6b6b; font-size: 0.8rem; display: none; margin-top: 0.25rem; }

        .form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: #ff6b6b !important; }

        .form-group input.valid, .form-group select.valid, .form-group textarea.valid { border-color: #25D366 !important; }

        #formStatus.success { color: #25D366; }

        #formStatus.error { color: #ff6b6b; }

        body { position: relative; font-family: 'Source Sans 3', sans-serif; background: var(--primary-dark); color: var(--text-light); line-height: 1.7; }

        
        header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; background: rgba(13, 15, 26, 0.95); backdrop-filter: blur(20px); }

        
        .mobile-menu-btn { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 10px; background: none; border: none; position: relative; z-index: 1001; }


        .mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh; background: var(--primary-navy); z-index: 1000; transition: var(--transition); padding: 100px 40px 40px; display: flex; flex-direction: column; }

        .mobile-nav-links a { display: block; padding: 1.25rem 0; color: var(--text-light); font-size: 1.1rem; text-transform: uppercase; }

        .mobile-nav-links a:hover { color: var(--gold); }

        .mobile-nav-contact p { color: var(--text-muted); margin-bottom: 0.5rem; }

        .mobile-nav-contact > a { color: var(--gold); font-size: 1.1rem; font-weight: 600; display: block; }

        .mobile-nav-contact .btn-primary { width: 100%; margin-top: 1.5rem; text-align: center; }

        
        .page-hero { padding: 10rem 0 5rem; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 50%, var(--secondary-navy) 100%); }

        .page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin-bottom: 1rem; }

        .page-hero p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; max-width: 800px; }

        
        .section { padding: 5rem 0; }

        .section-dark { background: var(--primary-dark); }

        .section-navy { background: var(--primary-navy); }

        .section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--cream); margin-bottom: 1.5rem; }

        .section-header { text-align: center; max-width: 800px; margin: 0 auto 3rem; }

        
        .cta-banner { padding: 4rem 0; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); text-align: center; }

        .cta-banner h2, .cta-banner h3, .cta-banner h4, .cta-banner h5 { color: var(--primary-dark); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }

        .cta-banner p { color: var(--primary-navy); font-size: 1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

        .cta-banner .btn-primary { background: var(--primary-dark); color: var(--gold); }

        
        footer { background: var(--primary-navy); padding: 4rem 0 0; }


    
        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 998;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        }


    
        /* Decorative Side Elements */
        body::before { display: none;
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 80px;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(201, 165, 92, 0.03) 20%, rgba(201, 165, 92, 0.05) 50%, rgba(201, 165, 92, 0.03) 80%, transparent 100%);
            pointer-events: none;
            z-index: 1;
        }

        body::after { display: none;
            content: '';
            position: fixed;
            top: 0;
            right: 0;
            width: 80px;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(201, 165, 92, 0.03) 20%, rgba(201, 165, 92, 0.05) 50%, rgba(201, 165, 92, 0.03) 80%, transparent 100%);
            pointer-events: none;
            z-index: 1;
        }

        .side-decor-left, .side-decor-right { display: none !important;
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 250px;
            background: linear-gradient(180deg, transparent, var(--gold), transparent);
            opacity: 0.4;
            z-index: 2;
            pointer-events: none;
        }

        
        /* Vertical Side Text */
        .side-text {
            position: fixed;
            top: 50%;
            font-size: 0.65rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            opacity: 0.4;
            pointer-events: none;
            z-index: 2;
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }


    
        /* ===== SCROLL ANIMATIONS ===== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-left {
            opacity: 0;
            transform: translateX(-60px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-right {
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        
        /* Enhanced hover effects */
        .btn-primary {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        
        /* Nav link hover */
        .nav-links a {
            position: relative;
        }

        
        /* WhatsApp pulse */
        .whatsapp-float {
            animation: whatsapp-pulse 2s ease infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            animation: none;
        }

        .btn-agree:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .disclaimer-modal {
                flex-direction: column;
                max-height: 95vh;
            }
            .disclaimer-brand {
                width: 100%;
                padding: 1.5rem;
                flex-direction: row;
                gap: 1rem;
                border-right: none;
                border-bottom: 1px solid rgba(201, 165, 92, 0.2);
            }
            .disclaimer-brand .logo-icon {
                width: 50px;
                height: 50px;
                margin-bottom: 0;
            }
            .disclaimer-brand h2, .disclaimer-brand h3, .disclaimer-brand h4, .disclaimer-brand h5 {
                font-size: 1.2rem;
                margin-bottom: 0;
            }
            .disclaimer-brand p {
                display: none;
            }
            .disclaimer-content {
                padding: 1.5rem;
            }
            .disclaimer-buttons {
                flex-direction: column;
            }
        }

        
        header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 0; background: rgba(13, 15, 26, 0.95); backdrop-filter: blur(20px); }

        .mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh; background: var(--primary-navy); z-index: 1000; transition: right 0.4s ease; padding: 100px 40px 40px; display: flex; flex-direction: column; }

        body { font-family: 'Source Sans 3', sans-serif; background: var(--primary-dark); color: var(--text-light); line-height: 1.7; }

        .container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }

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

        .mobile-nav-contact .btn-primary { width: 100%; text-align: center; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--primary-dark); }

        
        .page-hero { padding: 10rem 0 3rem; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 50%, var(--secondary-navy) 100%); }

        .page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin-bottom: 0.5rem; }

        .page-hero p { color: var(--text-muted); font-size: 1rem; }

        
        .legal-content { padding: 4rem 0; background: var(--primary-navy); }

        .legal-content .container { max-width: 900px; }

        .legal-content h2, .legal-content h3, .legal-content h4, .legal-content h5 { color: var(--gold); font-size: 1.5rem; margin: 2.5rem 0 1rem; }

        .legal-content h2, .legal-content h3, .legal-content h4, .legal-content h5:first-of-type { margin-top: 0; }

        .legal-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

        .legal-content strong { color: var(--cream); }

        .last-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(201, 165, 92, 0.1); }

        
        footer { background: var(--primary-navy); padding: 4rem 0 0; border-top: 1px solid rgba(201, 165, 92, 0.1); }

        .footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin: 1rem 0; max-width: 280px; }

        
        @media (max-width: 1024px) {
            .nav-links, .nav-contact { display: none; }
            .mobile-menu-btn { display: flex; }
            .footer-main { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .container { padding: 0 6%; }
            .page-hero { padding: 8rem 0 2rem; }
            .footer-main { grid-template-columns: repeat(2, 1fr); text-align: center; }
            .footer-brand { grid-column: span 2; text-align: center; }
            .footer-brand p { max-width: 100%; margin-left: auto; margin-right: auto; }
            .footer-links { text-align: center; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-legal { justify-content: center; }
        }

/* =====================================================================
   Additions — accessibility floor, blog reader, form validation states
   ===================================================================== */

/* Visible keyboard focus everywhere. */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Skip link for keyboard and screen-reader users. */
.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 2000;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    /* Off-screen until focused — transform keeps it out of the containing
       block's flow without depending on a huge negative offset. */
    transform: translateY(-250%);
    transition: transform 0.2s ease;
}
.skip-link:focus {
    transform: translateY(0);
}

/* Respect the OS "reduce motion" setting. */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .animate-on-scroll { opacity: 1 !important; transform: none !important; }
}

/* ---------- Blog listing ---------- */
.blog-card h2, .blog-card h3, .blog-card h4, .blog-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}
.blog-card h2, .blog-card h3, .blog-card h4, .blog-card h5 a { color: inherit; }
.blog-card h2, .blog-card h3, .blog-card h4, .blog-card h5 a:hover { color: var(--gold); }
.featured-post h2, .featured-post h3, .featured-post h4, .featured-post h5 { font-size: 1.75rem; }
.blog-author { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- Blog reader ---------- */
.post-reader {
    position: fixed;
    inset: 0;
    background: rgba(5, 6, 12, 0.88);
    z-index: 1200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 5vh 1rem;
    overflow-y: auto;
}
.post-reader-panel {
    position: relative;
    background: var(--primary-navy);
    border: 1px solid rgba(201, 165, 92, 0.3);
    max-width: 780px;
    width: 100%;
    padding: 3.5rem 3rem;
}
.post-reader-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}
.post-reader-close:hover { color: var(--gold-light); }
.post-reader-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--cream);
    margin: 1rem 0 0.75rem;
}
.post-reader-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 165, 92, 0.15);
}
.post-reader-body p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.35rem;
}
@media (max-width: 640px) {
    .post-reader { padding: 0; }
    .post-reader-panel { padding: 3.5rem 1.5rem 2.5rem; min-height: 100vh; }
}

/* ---------- Form validation ---------- */
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e5736b; }
.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid { border-color: #7bbf8a; }
.error-message {
    display: block;
    color: #e5736b;
    font-size: 0.82rem;
    margin-top: 0.35rem;
    min-height: 1em;
}
#formStatus.success { color: #7bbf8a; }
#formStatus.error { color: #e5736b; }

/* The honeypot field must be reachable by bots but invisible to people. */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* Seven nav items plus two actions need a tighter bar than the original six. */
header nav { gap: 1.5rem; }
.nav-contact .btn-primary { padding: 0.8rem 1.4rem; font-size: 0.78rem; white-space: nowrap; }

@media (max-width: 1280px) {
    .nav-links { gap: 1.1rem; }
    .nav-links a { font-size: 0.76rem; letter-spacing: 0.2px; }
    .nav-contact { gap: 0.9rem; }
    .nav-contact .btn-primary { padding: 0.75rem 1.1rem; font-size: 0.72rem; }
    .nav-phone { font-size: 0.8rem; }
}

/* The closed drawer sits off-screen but was still keyboard-reachable, so a
   desktop Tab pass walked through invisible menu links. visibility:hidden
   removes it from the focus order and reverses cleanly when it opens. */
.mobile-nav {
    visibility: hidden;
    transition: right 0.4s ease, visibility 0s linear 0.4s;
}
.mobile-nav.active {
    visibility: visible;
    transition: right 0.4s ease, visibility 0s linear 0s;
}
