/* ========================================
           CSS CUSTOM PROPERTIES / DESIGN TOKENS
           ======================================== */
        :root {
            --navy: #071568;
            --navy-dark: #030a35;
            --navy-light: #0d2299;
            --blue-accent: #071568;
            --blue-bright: #0d2299;
            --blue-glow: #1a3ae6;
            --blue-pale: #e0e5ff;
            --blue-ghost: #f0f3ff;
            --gold: #DB9D00;
            --gold-light: #F5B000;
            --white: #ffffff;
            --off-white: #f8fafc;
            --gray-50: #f9fafb;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #000000;
            --text-primary: #000000;
            --text-secondary: #334155;
            --text-muted: #64748b;
            --success: #10b981;
            --error: #ef4444;
            --font-heading: 'Playfair Display', Georgia, serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            --shadow-sm: 0 1px 2px rgba(7,21,104,0.05);
            --shadow-md: 0 4px 6px -1px rgba(7,21,104,0.07), 0 2px 4px -2px rgba(7,21,104,0.05);
            --shadow-lg: 0 10px 15px -3px rgba(7,21,104,0.08), 0 4px 6px -4px rgba(7,21,104,0.04);
            --shadow-xl: 0 20px 25px -5px rgba(7,21,104,0.1), 0 8px 10px -6px rgba(7,21,104,0.05);
            --shadow-2xl: 0 25px 50px -12px rgba(7,21,104,0.2);
            --shadow-glow: 0 0 40px rgba(7,21,104,0.15);
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            --container-max: 1200px;
            --header-height: 80px;
        }

        /* ========================================
           RESET & BASE
           ======================================== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-height);
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-primary);
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

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

        ul, ol { list-style: none; }

        button {
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: inherit;
        }

        input, textarea, select {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            line-height: 1.2;
            color: var(--navy);
        }

        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        section {
            display: none;
        }

        section.active {
            display: block;
        }

        /* ========================================
           ANIMATIONS
           ======================================== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-60px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(60px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulse-ring {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.4); opacity: 0; }
        }

        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

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

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }

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

        .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
        .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
        .animate-on-scroll.delay-3 { transition-delay: 0.3s; }
        .animate-on-scroll.delay-4 { transition-delay: 0.4s; }

        /* ========================================
           BUTTONS
           ======================================== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: var(--radius-full);
            transition: all var(--transition-base);
            letter-spacing: 0.02em;
            position: relative;
            overflow: hidden;
        }

        .btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
            opacity: 0;
            transition: opacity var(--transition-fast);
        }

        .btn:hover::after { opacity: 1; }

        .btn-primary {
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            color: var(--white);
            box-shadow: 0 4px 15px rgba(7,21,104,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(7,21,104,0.4);
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--blue-accent), var(--blue-bright));
            color: var(--white);
            box-shadow: 0 4px 15px rgba(7,21,104,0.3);
        }

        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(7,21,104,0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }

        .btn-outline:hover {
            background: var(--navy);
            color: var(--white);
            transform: translateY(-2px);
        }

        .btn-white {
            background: var(--white);
            color: var(--navy);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--navy);
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(219,157,0,0.3);
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(219,157,0,0.4);
        }

        .btn-lg {
            padding: 18px 40px;
            font-size: 1.05rem;
        }

        .btn-sm {
            padding: 10px 24px;
            font-size: 0.875rem;
        }

        /* ========================================
           SECTION LABEL
           ======================================== */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--blue-accent);
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            display: block;
            width: 32px;
            height: 2px;
            background: linear-gradient(90deg, var(--blue-accent), var(--blue-bright));
            border-radius: 2px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--navy);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.8;
        }

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

        .section-header .section-subtitle {
            margin: 0 auto;
        }

        /* ========================================
           HEADER / NAVIGATION
           ======================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--header-height);
            z-index: 1000;
            transition: all var(--transition-base);
            background: rgba(255,255,255,0.0);
        }

        .header.scrolled {
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 20px rgba(7,21,104,0.08);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1001;
        }

        .logo-img {
            height: 42px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
            transition: filter var(--transition-base);
        }

        .header.scrolled .logo-img {
            filter: none;
        }

        /* Brand Fonts definitions and styles */
        .brand-logotext {
            font-family: "Humanst521 BT", "Humanist 521", "Gill Sans MT", "Gill Sans", sans-serif;
            font-weight: bold;
        }

        .brand-tagline {
            font-family: "Humanst521 Lt BT", "Humanist 521 Light", "Gill Sans MT Light", "Gill Sans", sans-serif;
            font-weight: 300;
            font-style: italic;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-links a {
            padding: 8px 18px;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255,255,255,0.85);
            border-radius: var(--radius-full);
            transition: all var(--transition-fast);
            position: relative;
        }

        .header.scrolled .nav-links a {
            color: var(--gray-600);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--white);
            background: rgba(255,255,255,0.15);
        }

        .header.scrolled .nav-links a:hover,
        .header.scrolled .nav-links a.active {
            color: var(--navy);
            background: var(--blue-ghost);
        }

        .nav-links a.active {
            font-weight: 600;
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .header-cta .btn {
            padding: 10px 24px;
            font-size: 0.875rem;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            padding: 8px;
            z-index: 1001;
        }

        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--white);
            border-radius: 2px;
            transition: all var(--transition-base);
            transform-origin: center;
        }

        .header.scrolled .mobile-toggle span,
        .mobile-toggle.open span {
            background: var(--navy);
        }

        .mobile-toggle.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.open span:nth-child(2) {
            opacity: 0;
        }

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

        /* ========================================
           HOME - HERO SECTION
           ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--blue-accent) 0%, var(--blue-accent) 40%, var(--blue-accent) 100%);
            padding-top: var(--header-height);
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 80%, rgba(7,21,104,0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(13,34,153,0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 50%, rgba(7,21,104,0.3) 0%, transparent 70%);
            z-index: 1;
        }

        .hero-mesh {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 1;
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 1;
            animation: float 8s ease-in-out infinite;
        }

        .hero-orb-1 {
            width: 400px;
            height: 400px;
            background: rgba(7,21,104,0.12);
            top: -100px;
            right: -100px;
        }

        .hero-orb-2 {
            width: 300px;
            height: 300px;
            background: rgba(13,34,153,0.08);
            bottom: -50px;
            left: -50px;
            animation-delay: 3s;
        }

        .hero-orb-3 {
            width: 200px;
            height: 200px;
            background: rgba(219,157,0,0.06);
            top: 40%;
            right: 20%;
            animation-delay: 5s;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 40px 0;
        }

        .hero-text {
            animation: fadeInUp 1s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-family: "Humanst521 Lt BT", "Humanist 521 Light", "Gill Sans MT Light", "Gill Sans", sans-serif;
            font-size: 0.85rem;
            font-weight: 300;
            font-style: italic;
            color: var(--blue-pale);
            margin-bottom: 28px;
            letter-spacing: 0.05em;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            position: relative;
        }

        .hero-badge .dot::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: var(--success);
            animation: pulse-ring 2s infinite;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.15;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 36px;
            max-width: 520px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1;
            margin-bottom: 4px;
        }

        .hero-stat-label {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.5);
            font-weight: 500;
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out 0.3s both;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .hero-image-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(7,21,104,0.4) 100%);
            pointer-events: none;
        }

        .hero-float-card {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            padding: 20px 24px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            z-index: 3;
            animation: float 6s ease-in-out infinite;
        }

        .hero-float-card .card-title {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .hero-float-card .card-text {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .hero-float-card .card-stars {
            color: var(--gold);
            font-size: 0.85rem;
            margin-top: 6px;
        }

        /* ========================================
           TRUST STRIP
           ======================================== */
        .trust-strip {
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            padding: 32px 0;
        }

        .trust-strip-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .trust-label {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .trust-items {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--gray-500);
            font-size: 0.9rem;
        }

        .trust-item svg {
            width: 20px;
            height: 20px;
            color: var(--blue-accent);
            flex-shrink: 0;
        }

        /* ========================================
           KEY BENEFITS
           ======================================== */
        .benefits {
            padding: 100px 0;
            background: var(--off-white);
        }

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

        .benefit-card {
            background: var(--white);
            padding: 36px 28px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            border: 1px solid var(--gray-100);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--navy), var(--blue-accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition-base);
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--blue-ghost), var(--blue-pale));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .benefit-card h3 {
            font-family: var(--font-body);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--navy);
        }

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

        /* ========================================
           SERVICES PREVIEW (HOME)
           ======================================== */
        .services-preview {
            padding: 100px 0;
            background: var(--white);
        }

        .services-preview-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .service-preview-card {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-base);
        }

        .service-preview-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
        }

        .service-preview-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .service-preview-card:hover img {
            transform: scale(1.05);
        }

        .service-preview-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 20%, rgba(7,21,104,0.92) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px;
        }

        .service-preview-overlay h3 {
            font-size: 1.25rem;
            color: var(--white);
            margin-bottom: 6px;
        }

        .service-preview-overlay p {
            color: rgba(255,255,255,0.75);
            font-size: 0.85rem;
            margin-bottom: 14px;
            line-height: 1.5;
        }

        .service-preview-overlay .btn {
            align-self: flex-start;
        }

        /* ========================================
           TESTIMONIALS
           ======================================== */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--navy-dark), var(--navy));
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 10% 90%, rgba(37,99,235,0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 90% 10%, rgba(96,165,250,0.08) 0%, transparent 50%);
        }

        .testimonials .section-label {
            color: var(--blue-glow);
        }

        .testimonials .section-title {
            color: var(--white);
        }

        .testimonials .section-subtitle {
            color: rgba(255,255,255,0.6);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 32px;
            border-radius: var(--radius-lg);
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-4px);
            border-color: rgba(255,255,255,0.2);
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 0.9rem;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            color: rgba(255,255,255,0.85);
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 24px;
            font-style: italic;
            flex: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue-glow);
            flex-shrink: 0;
        }

        .testimonial-avatar svg {
            width: 22px;
            height: 22px;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--white);
            font-size: 0.9rem;
        }

        .testimonial-role {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.5);
        }

        /* ========================================
           ABOUT PREVIEW (HOME)
           ======================================== */
        .about-preview {
            padding: 100px 0;
            background: var(--off-white);
        }

        .about-preview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-preview-image {
            position: relative;
        }

        .about-preview-image img {
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            width: 100%;
            height: 480px;
            object-fit: cover;
            object-position: top;
        }

        .about-preview-image .experience-badge {
            position: absolute;
            bottom: -16px;
            right: -16px;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            color: var(--white);
            padding: 20px 28px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            text-align: center;
        }

        .experience-badge .number {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1;
        }

        .experience-badge .text {
            font-size: 0.75rem;
            font-weight: 500;
            opacity: 0.8;
        }

        .about-preview-text h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 20px;
        }

        .about-preview-text p {
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.8;
        }

        .about-check-list {
            margin: 24px 0 32px;
        }

        .about-check-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            font-weight: 500;
            color: var(--text-primary);
        }

        .about-check-list li svg {
            width: 20px;
            height: 20px;
            color: var(--success);
            flex-shrink: 0;
        }

        /* ========================================
           FINAL CTA
           ======================================== */
        .final-cta {
            padding: 100px 0;
            background: var(--white);
            text-align: center;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            border-radius: var(--radius-xl);
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 0% 100%, rgba(7,21,104,0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 100% 0%, rgba(219,157,0,0.1) 0%, transparent 50%);
        }

        .cta-box h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            color: var(--white);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .cta-box p {
            color: rgba(255,255,255,0.7);
            font-size: 1.1rem;
            margin-bottom: 36px;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .cta-box .btn {
            position: relative;
            z-index: 1;
        }

        /* ========================================
           ABOUT PAGE
           ======================================== */
        .page-hero {
            padding: 160px 0 80px;
            background: linear-gradient(135deg, var(--navy-dark), var(--navy));
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 30% 70%, rgba(37,99,235,0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(96,165,250,0.08) 0%, transparent 50%);
        }

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

        .page-hero-content .section-label {
            color: var(--white) !important;
        }

        .page-hero-content .section-label::before {
            background: linear-gradient(90deg, var(--white), rgba(255,255,255,0.4)) !important;
        }

        .page-hero-content h1 {
            font-size: clamp(2.2rem, 4.5vw, 3.5rem);
            color: var(--gold) !important;
            margin-bottom: 16px;
        }

        .page-hero-content p {
            color: rgba(255,255,255,0.7);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .about-story {
            padding: 100px 0;
            background: var(--white);
        }

        .about-story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-story-image img {
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            width: 100%;
            /* height: 480px; */
            object-fit: cover;
            object-position: top;
        }

        .about-story-text h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 20px;
        }

        .about-story-text p {
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.8;
        }

        /* Mission / Vision */
        .mission-vision {
            padding: 100px 0;
            background: var(--off-white);
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .mv-card {
            background: var(--white);
            padding: 48px 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-100);
            transition: all var(--transition-base);
        }

        .mv-card:hover {
            box-shadow: var(--shadow-xl);
            transform: translateY(-4px);
        }

        .mv-card .mv-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.4rem;
            color: var(--white);
        }

        .mv-card h3 {
            font-family: var(--font-body);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--navy);
        }

        .mv-card p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* What makes us different */
        .differentiators {
            padding: 100px 0;
            background: var(--white);
        }

        .diff-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .diff-card {
            text-align: center;
            padding: 40px 24px;
            border-radius: var(--radius-lg);
            background: var(--blue-ghost);
            border: 1px solid var(--blue-pale);
            transition: all var(--transition-base);
        }

        .diff-card:hover {
            background: var(--white);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .diff-card .diff-icon {
            font-size: 2.2rem;
            margin-bottom: 16px;
        }

        .diff-card h4 {
            font-family: var(--font-body);
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--navy);
            font-size: 1rem;
        }

        .diff-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ========================================
           SERVICES PAGE - FULL CARDS
           ======================================== */
        .services-full-grid {
            padding: 100px 0;
            background: var(--off-white);
        }

        .services-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .service-full-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-100);
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
        }

        .service-full-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
        }

        .service-full-card .service-img-wrap {
            position: relative;
            overflow: hidden;
        }

        .service-full-card .service-img-wrap img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .service-full-card:hover .service-img-wrap img {
            transform: scale(1.04);
        }

        .service-tagline {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 12px 24px;
            background: linear-gradient(180deg, transparent, rgba(7,21,104,0.85));
            color: var(--gold-light);
            font-size: 0.85rem;
            font-weight: 600;
            font-style: italic;
        }

        .service-full-card .service-body {
            padding: 32px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-full-card h3 {
            font-family: var(--font-body);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--navy);
        }

        .service-full-card .service-desc {
            color: var(--text-secondary);
            font-size: 0.93rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        /* Before/After columns inside service cards */
        .reality-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        .reality-col h4 {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 10px;
            padding-bottom: 8px;
            border-bottom: 2px solid;
        }

        .reality-col.before h4 {
            color: var(--gray-400);
            border-color: var(--gray-200);
        }

        .reality-col.after h4 {
            color: var(--success);
            border-color: var(--success);
        }

        .reality-col li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            padding: 4px 0;
            font-size: 0.82rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .reality-col li .dot-icon {
            flex-shrink: 0;
            margin-top: 3px;
            font-size: 0.75rem;
            width: 14px;
            text-align: center;
        }

        .reality-col.before li .dot-icon { color: #f87171; } /* Light red for before list crosses */
        .reality-col.after li .dot-icon { color: var(--success); }

        .service-features {
            margin-bottom: 20px;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            font-size: 0.88rem;
            color: var(--text-secondary);
        }

        .service-features li svg {
            width: 16px;
            height: 16px;
            color: var(--success);
            flex-shrink: 0;
        }

        .service-full-card .btn {
            margin-top: auto;
            align-self: flex-start;
        }

        /* How it works */
        .how-it-works {
            padding: 100px 0;
            background: var(--white);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, var(--blue-pale), var(--blue-accent), var(--blue-pale));
            z-index: 0;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--navy), var(--navy-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0 auto 20px;
            box-shadow: 0 4px 15px rgba(7,21,104,0.2);
            border: 4px solid var(--white);
        }

        .step-card h4 {
            font-family: var(--font-body);
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--navy);
            font-size: 1.05rem;
        }

        .step-card p {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* FAQ */
        .faq-section {
            padding: 100px 0;
            background: var(--off-white);
        }

        .faq-list {
            max-width: 760px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-100);
            overflow: hidden;
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 22px 28px;
            background: none;
            font-weight: 600;
            color: var(--navy);
            font-size: 1rem;
            text-align: left;
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .faq-question:hover {
            background: var(--blue-ghost);
        }

        .faq-question svg {
            width: 20px;
            height: 20px;
            transition: transform var(--transition-base);
            flex-shrink: 0;
            color: var(--blue-accent);
        }

        .faq-item.open .faq-question svg {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-base);
        }

        .faq-answer-inner {
            padding: 0 28px 22px;
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        /* ========================================
           LISTINGS / PORTFOLIO PAGE
           ======================================== */
        .listings-section {
            padding: 100px 0;
            background: var(--off-white);
        }

        .filter-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 24px;
            border-radius: var(--radius-full);
            font-weight: 500;
            font-size: 0.88rem;
            color: var(--gray-600);
            background: var(--white);
            border: 1px solid var(--gray-200);
            transition: all var(--transition-fast);
            cursor: pointer;
        }

        .filter-btn:hover {
            border-color: var(--blue-accent);
            color: var(--blue-accent);
        }

        .filter-btn.active {
            background: var(--navy);
            color: var(--white);
            border-color: var(--navy);
        }

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

        .listing-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-100);
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
        }

        .listing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .listing-card-image {
            position: relative;
            overflow: hidden;
        }

        .listing-card-image img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .listing-card:hover .listing-card-image img {
            transform: scale(1.05);
        }

        .listing-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--navy);
            color: var(--white);
            padding: 4px 14px;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
        }

        .listing-card-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .listing-card-body h3 {
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--navy);
        }

        .listing-card-body p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .listing-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid var(--gray-100);
            margin-top: auto;
        }

        .listing-tag {
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--blue-accent);
            background: var(--blue-ghost);
            padding: 4px 12px;
            border-radius: var(--radius-full);
        }

        /* Portrait layout for books & flyers */
        .listing-card.portrait-card .listing-card-image {
            height: 320px;
            background: var(--gray-50);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        .listing-card.portrait-card .listing-card-image img {
            height: 100%;
            width: auto;
            object-fit: contain;
            box-shadow: 0 8px 20px rgba(7,21,104,0.1);
            border-radius: 4px;
        }

        .listing-card.portrait-card:hover .listing-card-image img {
            transform: scale(1.03);
        }

        /* Aspiration Card Image Zoom */
        .aspiration-card:hover img {
            transform: scale(1.05);
        }

        /* ========================================
           CONTACT PAGE
           ======================================== */
        .contact-section {
            padding: 100px 0;
            background: var(--off-white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

        .contact-form-wrapper {
            background: var(--white);
            padding: 48px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-100);
        }

        .contact-form-wrapper h3 {
            font-family: var(--font-body);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--navy);
        }

        .contact-form-wrapper > p {
            color: var(--text-secondary);
            margin-bottom: 32px;
            font-size: 0.95rem;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: var(--gray-50);
            border: 2px solid var(--gray-200);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
            color: var(--text-primary);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--blue-accent);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
        }

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

        .form-success {
            display: none;
            text-align: center;
            padding: 40px;
        }

        .form-success.show {
            display: block;
        }

        .form-success .success-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--success), #34d399);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: var(--white);
        }

        .form-success h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--navy);
        }

        .form-success p {
            color: var(--text-secondary);
        }

        .contact-info-wrapper {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-info-card {
            background: var(--white);
            padding: 24px 28px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-100);
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: all var(--transition-base);
        }

        .contact-info-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        .contact-info-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--blue-ghost), var(--blue-pale));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.2rem;
        }

        .contact-info-card h4 {
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .contact-info-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .contact-info-card a {
            color: var(--blue-accent);
            font-weight: 500;
        }

        .contact-info-card a:hover {
            text-decoration: underline;
        }

        .contact-map {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-100);
        }

        .contact-map iframe {
            width: 100%;
            height: 220px;
            border: none;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: var(--blue-ghost);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-fast);
            color: var(--navy);
        }

        .social-link:hover {
            background: var(--navy);
            color: var(--white);
            transform: translateY(-2px);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        /* ========================================
           FOOTER
           ======================================== */
        .footer {
            background: var(--gray-900);
            color: rgba(255,255,255,0.7);
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 48px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .footer-brand .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 20px;
        }

        .footer-brand .footer-logo img {
            height: 56px;
            width: auto;
            background: var(--white);
            padding: 8px 16px;
            border-radius: var(--radius-md);
            object-fit: contain;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .footer h4 {
            color: var(--white);
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .footer-links a {
            display: block;
            padding: 6px 0;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            transition: all var(--transition-fast);
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 4px;
        }

        .footer-contact-info p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 6px 0;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px 0;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.3);
        }

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

        .footer-social a {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.06);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-fast);
            color: rgba(255,255,255,0.4);
        }

        .footer-social a:hover {
            background: var(--blue-accent);
            color: var(--white);
        }

        /* ========================================
           RESPONSIVE
           ======================================== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-desc { margin: 0 auto 36px; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-image { max-width: 520px; margin: 0 auto; }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-preview-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-cards {
                grid-template-columns: 1fr;
            }

            .about-preview-grid,
            .about-story-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .diff-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .steps-grid::before { display: none; }

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

            .listings-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            :root {
                --header-height: 70px;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 360px;
                height: 100vh;
                height: 100dvh;
                background: var(--white);
                flex-direction: column;
                padding: 100px 32px 32px;
                box-shadow: -10px 0 40px rgba(0,0,0,0.1);
                transition: right var(--transition-base);
                gap: 4px;
                z-index: 1000;
                overflow-y: auto;
            }

            .nav-links.open {
                right: 0;
            }

            .nav-links a {
                width: 100%;
                padding: 14px 18px;
                font-size: 1rem;
                border-radius: var(--radius-md);
                color: var(--navy) !important;
            }

            .nav-links a:hover,
            .nav-links a.active {
                color: var(--navy) !important;
                background: var(--blue-ghost) !important;
            }

            .header-cta {
                display: none;
            }

            .mobile-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.4);
                z-index: 999;
            }

            .mobile-overlay.show {
                display: block;
            }

            .hero h1 { font-size: 2.2rem; }
            .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
            .hero-float-card { display: none; }

            .benefits-grid,
            .services-preview-grid,
            .testimonials-grid,
            .services-cards,
            .mv-grid,
            .listings-grid {
                grid-template-columns: 1fr;
            }

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

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

            .filter-bar {
                gap: 6px;
            }

            .filter-btn {
                padding: 8px 16px;
                font-size: 0.82rem;
            }

            .cta-box {
                padding: 48px 28px;
            }

            .contact-form-wrapper {
                padding: 32px 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .about-preview-image .experience-badge {
                right: 16px;
                bottom: 16px;
            }

            .trust-items {
                justify-content: center;
            }

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

        @media (max-width: 480px) {
            .hero h1 { font-size: 1.8rem; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .hero-buttons .btn { width: 100%; justify-content: center; }
            .diff-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 1.8rem; }
        }

        /* ========================================
           POLICIES PAGE
           ======================================== */
        .policies-container {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
            align-items: start;
        }

        .policies-sidebar {
            background: var(--white);
            padding: 24px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-100);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .policy-tab {
            width: 100%;
            text-align: left;
            padding: 14px 18px;
            border-radius: var(--radius-md);
            font-weight: 500;
            font-size: 0.9rem;
            background: none;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-fast);
            border: none;
        }

        .policy-tab:hover {
            background: var(--gray-50);
            color: var(--navy);
        }

        .policy-tab.active {
            background: var(--blue-ghost);
            color: var(--navy);
            font-weight: 600;
        }

        .policies-content {
            background: var(--white);
            padding: 48px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-100);
        }

        .policy-pane h2 {
            font-family: var(--font-body);
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--navy);
            border-bottom: 2px solid var(--gray-100);
            padding-bottom: 12px;
        }

        .policy-pane h3 {
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-weight: 700;
            margin-top: 28px;
            margin-bottom: 12px;
            color: var(--navy);
        }

        .policy-pane p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .policy-pane ul {
            margin-bottom: 20px;
            padding-left: 20px;
            list-style-type: disc;
        }

        .policy-pane li {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 8px;
        }

        @media (max-width: 768px) {
            .policies-container {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .policies-content {
                padding: 32px 24px;
            }
        }

        /* ========================================
           UK GLOBAL TALENT VISA PAGE
           ======================================== */
        .eca-focus-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }

        @media (max-width: 991px) {
            .eca-focus-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

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

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

        @media (max-width: 600px) {
            .packages-grid {
                grid-template-columns: 1fr;
            }
        }

        .package-card {
            transition: all var(--transition-base);
        }

        .package-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg) !important;
        }

        .terms-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        @media (max-width: 768px) {
            .terms-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        /* ========================================
           BOOK PUBLISHING SERVICE PAGE
           ======================================== */
        .process-steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        @media (max-width: 991px) {
            .process-steps-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        .process-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            padding: 36px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
        }

        .process-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .process-step-num {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 12px;
            display: block;
        }

        /* ========================================
           GENERAL WRITING SERVICE PAGE
           ======================================== */
        /* Reuses .eca-focus-grid and .process-steps-grid */

        /* ========================================
           PASSPORT PROCESSING SERVICE PAGE
           ======================================== */
        /* Reuses .eca-focus-grid and .process-steps-grid */

        /* ========================================
           CARD CAROUSEL STYLING
           ======================================== */
        .listing-card-image.card-carousel {
            position: relative;
            height: 320px;
            overflow: hidden;
        }
        
        .listing-card-image.card-carousel .carousel-track {
            width: 100%;
            height: 100%;
            position: relative;
        }
        
        .listing-card-image.card-carousel .carousel-slide {
            position: absolute !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
            width: 100% !important;
            height: 100% !important;
            object-fit: contain !important;
            object-position: center !important;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            z-index: 1;
            background: var(--gray-50) !important;
            padding: 16px !important;
        }
        
        .listing-card-image.card-carousel .carousel-slide.active {
            opacity: 1;
            z-index: 2;
        }
        
        .listing-card-image.card-carousel .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(7, 21, 104, 0.85);
            color: var(--white);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            font-size: 0.85rem;
            transition: all var(--transition-fast);
            opacity: 0;
        }
        
        .listing-card-image.card-carousel:hover .carousel-btn {
            opacity: 1;
        }
        
        .listing-card-image.card-carousel .carousel-btn:hover {
            background: var(--gold);
            color: var(--navy);
        }
        
        .listing-card-image.card-carousel .carousel-btn.prev {
            left: 12px;
        }
        
        .listing-card-image.card-carousel .carousel-btn.next {
            right: 12px;
        }
        
        .listing-card-image.card-carousel .carousel-indicators {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 10;
        }
        
        .listing-card-image.card-carousel .carousel-indicators .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(7, 21, 104, 0.3);
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        
        .listing-card-image.card-carousel .carousel-indicators .indicator.active {
            background: var(--gold);
            transform: scale(1.2);
        }