
        /*-------- FLOWRUSH OFFICIAL COLOR THEME --------*/
        * { margin:0; padding:0; box-sizing:border-box; }
        :root {
            --deep-blue: #001a4d;
            --brand: #1e40af;
            --accent: #3b82f6;
            --light-blue: #dbeafe;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --bg-soft: #f8fafc;
            --border: #e2e8f0;
            --grad-primary: linear-gradient(135deg, #1e40af, #3b82f6);
            --shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
            --radius: 28px;
            --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        body {
            font-family: var(--font);
            color: var(--text-dark);
            background: white;
            line-height: 1.5;
            overflow-x: hidden;
        }
        .container { max-width:1280px; margin:0 auto; padding:0 24px; width:100%; contain: layout; }
        @media (min-width:768px) { .container { padding:0 30px; } }
        h1,h2,h3 { font-weight:700; line-height:1.2; letter-spacing:-0.02em; }
        h1 { font-size:clamp(2.5rem,7vw,4.5rem); }
        h2 { font-size:clamp(1.8rem,5vw,2.8rem); margin-bottom:0.5rem; }
        img { max-width:100%; height:auto; display:block; }
        a { text-decoration:none; color:inherit; }

        /* Header spacer - match common-components */
        .header-spacer { height: 80px; }
        @media (max-width: 768px) { .header-spacer { height: 70px; } }

        /* Disable transitions for performance */
        *, *:hover, *:focus { transition: none !important; }

        /* ===== HERO HALF COVER (60vh) ===== */
        .hero-half {
            background: linear-gradient(135deg, #001a4d, #1e3a8a);
            min-height: 60vh;
            contain: layout;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
            isolation: isolate;
            padding: 40px 0;
        }
        .hero-half::before {
            content: '';
            position: absolute; inset: 0;
            background-image: radial-gradient(rgba(255,255,255,0.05) 2px, transparent 2px);
            background-size: 30px 30px;
            opacity: 0.3;
            z-index: 1;
        }
        .hero-half .container {
            position: relative;
            z-index: 3;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }
        .hero-half h1 {
            color: white;
            margin-bottom: 1.2rem;
        }
        .hero-half p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.95);
            max-width: 800px;
            margin: 0 auto 1.5rem;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(212, 175, 55, 0.2);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 8px 22px;
            border-radius: 50px;
            color: #d4af37;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .hero-half { min-height: 50vh; padding: 30px 0; }
            .hero-half h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
            .hero-half p { font-size: 1rem; }
        }

        /* ===== BREADCRUMB ===== */
        .breadcrumb-wrapper {
            background: var(--bg-soft);
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            contain: layout;
        }
        .breadcrumb {
            display: flex;
            flex-wrap: nowrap;
            gap: 8px;
            list-style: none;
            font-size: 0.9rem;
            overflow-x: auto;
            white-space: nowrap;
            padding: 4px 0;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
        }
        .breadcrumb::-webkit-scrollbar { display: none; }
        .breadcrumb-item a { color: var(--brand); font-weight: 500; }
        .breadcrumb-item.active { color: var(--text-muted); }
        .breadcrumb-item + .breadcrumb-item::before { content: "/"; padding-right: 8px; color: var(--text-muted); }

        /* ===== CENTERED HEADING & IMAGE GRID ===== */
        .gallery-heading {
            text-align: center;
            margin: 40px 0 20px;
        }
        .gallery-heading h2 {
            color: var(--deep-blue);
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.2;
        }
        .gallery-heading h2 span {
            color: var(--brand); /* This makes "Clients Say & Moments" blue */
            font-weight: 700;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0 50px;
            contain: layout;
        }

        /* Desktop default */
        .image-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            border: 1px solid var(--border);
        }

        /* Tablet (iPad) specific: 2 columns - aspect-ratio for CLS */
        @media (min-width: 600px) and (max-width: 1024px) {
            .image-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .image-grid img {
                width: 100%;
                aspect-ratio: 1;
                object-fit: cover;
                border-radius: 16px;
                border: 1px solid var(--border);
            }
        }

        /* Mobile: 1 column - use aspect-ratio for CLS stability */
        @media (max-width: 600px) {
            .image-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .image-grid img {
                aspect-ratio: 1;
                object-fit: cover;
            }
        }

        /* ===== STATS SECTION ===== */
        .stats-section {
            padding: 60px 0;
            background: white;
            contain: layout;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 30px;
        }
        @media (max-width:768px) {
            .stats-grid { grid-template-columns: repeat(2,1fr); gap:20px; }
        }
        .stat-card {
            text-align: center;
            padding: 30px 20px;
            background: var(--bg-soft);
            border-radius: 20px;
            border: 1px solid var(--border);
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--brand);
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* ===== CTA (same as previous pages) ===== */
        .cta-gradient-box {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            border-radius: 32px;
            padding: 60px 45px;
            display: flex;
            flex-direction: column;
            gap: 35px;
            color: white;
            margin: 40px 0 60px;
        }
        .cta-gradient-box h2 { font-size: 2.2rem; color: white !important; }
        .cta-gradient-box p { font-size: 1.2rem; line-height: 1.7; color: rgba(255,255,255,0.95); }
        .cta-buttons-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .cta-btn {
            display: inline-flex; align-items: center; gap: 14px;
            background: white; color: #000;
            padding: 18px 44px; border-radius: 60px;
            font-weight: 700; font-size: 1.2rem;
            border: none;
        }
        .cta-btn .icon { width: 22px; height: 22px; fill: currentColor; display: inline-block; flex-shrink: 0; }
        .cta-btn.wa { background: #25D366; color: white; }
        @media (max-width: 768px) {
            .cta-gradient-box { padding: 40px 25px; gap: 25px; }
            .cta-buttons-row { flex-direction: column; }
            .cta-btn { justify-content: center; padding: 16px 30px; }
        }

        .footer-credit {
            padding: 1.5rem 0;
            text-align: center;
            color: #aaa;
            border-top: 1px solid var(--border);
            font-size: 0.9rem;
        }
