        /* 
         * COLOR PALETTE (STRICT) 
         */
        :root {
            --primary-navy: #0B2C4A;
            /* Authority, Headings */
            --primary-green: #1F7A5A;
            /* CTAs, Growth */
            --primary-green-dark: #166046;
            /* Hover state */
            --accent-gold: #C9A24D;
            /* Micro-highlights */
            --bg-white: #FFFFFF;
            /* 80% dominant */
            --bg-off-white: #F6F8FA;
            /* Accents/Sections */
            --text-dark: #1F2933;
            /* Body copy primary */
            --text-muted: #626975;
            /* Supporting text */
            --border-light: #EEF2F5;
            /* Subtle dividers */

            --shadow-subtle: 0 4px 20px rgba(11, 44, 74, 0.06);
            --shadow-elevation: 0 10px 30px rgba(11, 44, 74, 0.08);

            --max-width: 1280px;
            --header-height: 85px;
            --radius-md: 8px;
            --radius-lg: 16px;
        }

        /* RESET & BASE */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-white);
            color: var(--text-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--primary-navy);
            line-height: 1.2;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.2s ease;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* BUTTONS & LINKS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            font-weight: 600;
            border-radius: var(--radius-md);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .btn-primary {
            background-color: var(--primary-green);
            color: white;
            border: 1px solid var(--primary-green);
        }

        .btn-primary:hover {
            background-color: var(--primary-green-dark);
            border-color: var(--primary-green-dark);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--primary-navy);
            border: 1px solid var(--primary-navy);
        }

        .btn-secondary:hover {
            background-color: var(--bg-off-white);
            border-color: var(--primary-navy);
            transform: translateY(-1px);
        }

        /* HEADER */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.98);
            border-bottom: 1px solid var(--border-light);
            height: var(--header-height);
            display: flex;
            align-items: center;
            backdrop-filter: blur(8px);
        }

        .nav-container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 24px;
            color: var(--primary-navy);
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo span {
            color: var(--accent-gold);
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-link {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .nav-link:hover {
            color: var(--primary-green);
        }

        .nav-cta {
            padding: 10px 24px;
            font-size: 14px;
        }

        /* HERO SECTION */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(to bottom, #FFFFFF 0%, #FAFCFE 100%);
            overflow: hidden;
            padding: 40px 0;
        }

        .hero-container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            /* Asymmetric split */
            gap: 60px;
            align-items: center;
        }

        /* Left Column - Content */
        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
            position: relative;
            z-index: 2;
        }

        .auth-label-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .auth-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: var(--bg-off-white);
            border-left: 2px solid var(--accent-gold);
            color: var(--primary-navy);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 0 20px 20px 0;
        }

        h1 {
            font-size: 56px;
            letter-spacing: 1px;
            line-height: 1.25;
        }

        .h1-highlight {
            display: block;
            color: var(--primary-navy);
            font-weight: 800;
        }

        .h1-secondary {
            display: block;
            font-weight: 500;
            /* color: #4a5362; */
            color: var(--primary-green-dark);
            /* Slightly lighter navy/gray mix */
            margin-top: 18px;
            font-size: 24px;
        }

        .hero-desc {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 540px;
            line-height: 1.6;
        }

        .logo-img {
            height: 60px;
            width: auto;
            display: block;
        }

        .cta-group {
            display: flex;
            gap: 16px;
            margin-top: 8px;
        }

        /* Service Priority Indicators */
        .priority-indicators {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
            padding-top: 32px;
            border-top: 1px solid var(--border-light);
        }

        .indicator {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            background: white;
            border-radius: 8px;
            transition: transform 0.2s;
            border: 1px solid transparent;
        }

        .indicator.primary {
            border-color: rgba(31, 122, 90, 0.15);
            background: #F0FDF8;
        }

        .indicator.secondary {
            opacity: 0.9;
        }

        .indicator.supporting {
            opacity: 0.7;
        }

        .indicator-icon-box {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
        }

        .indicator.primary .indicator-icon-box {
            background-color: var(--primary-navy);
            color: white;
            /* High contrast for primary */
        }

        .indicator.secondary .indicator-icon-box {
            background-color: #E6EBF0;
            color: var(--primary-navy);
        }

        .indicator.supporting .indicator-icon-box {
            background-color: #F6F8FA;
            color: var(--text-muted);
        }

        .indicator-text {
            font-size: 14px;
            line-height: 1.2;
        }

        .indicator-text strong {
            display: block;
            color: var(--primary-navy);
            font-weight: 700;
            font-size: 15px;
        }

        .indicator-text span {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Right Column - Visuals */
        .hero-visuals {
            position: relative;
            height: 650px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .visual-circle-bg {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #EDF2F7 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 1;
            opacity: 0.6;
            border-radius: 50%;
        }

        /* Placeholder images used for demonstration. In production, these would be real files. */
        .img-card {
            position: absolute;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-elevation);
            background-color: #eee;
            z-index: 2;
        }

        .img-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .img-card:hover img {
            transform: scale(1.03);
        }

        .card-main {
            width: 440px;
            height: 540px;
            top: 20px;
            right: 40px;
            z-index: 2;
        }

        .card-overlap {
            width: 300px;
            height: 220px;
            bottom: 60px;
            left: 0;
            z-index: 3;
            border: 4px solid white;
        }

        /* Overlay floating badges */
        .floating-badge {
            position: absolute;
            background: var(--primary-navy);
            color: white;
            padding: 12px 20px;
            border-radius: 12px;
            box-shadow: var(--shadow-elevation);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 4;
            backdrop-filter: blur(4px);
        }

        .badge-1 {
            top: 100px;
            left: -30px;
        }

        .badge-2 {
            bottom: 40px;
            right: 0px;
        }

        .badge-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
        }

        .badge-content h4 {
            color: white;
            font-size: 16px;
            margin-bottom: 2px;
        }

        .badge-content p {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        /* Placeholder colors for images */
        .bg-img-1 {
            background-color: #d1d5db;
        }

        .bg-img-2 {
            background-color: #e5e7eb;
        }

        /* SERVICES SECTION */
        .services-section {
            background-color: var(--bg-off-white);
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .section-header h2 {
            font-size: 36px;
            margin-bottom: 16px;
            color: var(--primary-navy);
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-muted);
        }

        .divider-gold {
            width: 60px;
            height: 3px;
            background-color: var(--accent-gold);
            margin: 24px auto 0;
            border-radius: 2px;
        }

        /* Service Blocks */
        .service-block-container {
            display: flex;
            flex-direction: column;
            gap: 100px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .service-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .service-block.reverse {
            direction: rtl;
            /* Simple way to swap visually, but grid areas are better for responsiveness */
        }

        .service-block.reverse>* {
            direction: ltr;
        }

        .service-content h3 {
            font-size: 32px;
            margin-bottom: 24px;
            color: var(--primary-navy);
        }

        .service-content p {
            font-size: 17px;
            color: var(--text-muted);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .check-list {
            margin-bottom: 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .check-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            color: var(--primary-navy);
        }

        .check-icon {
            color: var(--accent-gold);
            flex-shrink: 0;
        }

        .service-img-wrapper {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-subtle);
        }

        .service-img-wrapper img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .service-block:hover .service-img-wrapper img {
            transform: scale(1.02);
        }

        /* Supporting Grid */
        .supporting-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 20px;
            padding-top: 60px;
            border-top: 1px solid #E2E8F0;
        }

        .support-card {
            padding: 24px;
            background: white;
            border-radius: var(--radius-md);
            border: 1px solid transparent;
            transition: all 0.2s ease;
        }

        .support-card:hover {
            border-color: var(--border-light);
            box-shadow: var(--shadow-subtle);
            transform: translateY(-2px);
        }

        .support-icon {
            width: 48px;
            height: 48px;
            color: var(--primary-green);
            background: #F0FDF8;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .support-card h4 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .support-card p {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .text-link {
            color: var(--primary-navy);
            font-weight: 600;
            font-size: 15px;
            position: relative;
            display: inline-block;
        }

        .text-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: var(--accent-gold);
            transition: width 0.3s;
        }

        .text-link:hover::after {
            width: 100%;
        }

        /* WHY CHOOSE US SECTION */
        .choose-us-section {
            background-color: var(--bg-white);
            padding: 100px 0;
        }

        .editorial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            align-items: start;
        }

        .col-left,
        .col-right {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .col-center {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            /* Centered stats */
            gap: 48px;
            border-left: 1px solid var(--border-light);
            border-right: 1px solid var(--border-light);
            padding: 0 24px;
            height: 100%;
        }

        .editorial-h3 {
            font-size: 24px;
            color: var(--primary-navy);
            margin-bottom: 8px;
        }

        .editorial-p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .editorial-img {
            border-radius: var(--radius-lg);
            overflow: hidden;
            height: 300px;
            width: 100%;
            margin-top: 10px;
        }

        .editorial-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .col-left:hover .editorial-img img,
        .col-right:hover .editorial-img img {
            transform: scale(1.04);
        }

        /* Stats */
        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 56px;
            color: var(--primary-navy);
            line-height: 1;
            letter-spacing: -2px;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 15px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Placeholder colors for new images */
        .bg-img-3 {
            background-color: #d1d5db;
            background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&q=80&w=600');
        }

        .bg-img-4 {
            background-color: #e5e7eb;
            background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&q=80&w=600');
        }

        /* CONTACT SECTION */
        .contact-section {
            background-color: var(--bg-off-white);
            padding: 100px 0;
            text-align: center;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .contact-title {
            font-size: 36px;
            color: var(--primary-navy);
            margin-bottom: 24px;
        }

        .contact-desc {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        /* FOOTER */
        footer {
            background-color: var(--primary-navy);
            color: rgba(255, 255, 255, 0.85);
            /* Soft white */
            padding: 100px 0 40px;
            font-size: 15px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1.2fr 0.8fr 1.2fr;
            gap: 60px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            margin-bottom: 80px;
        }

        .footer-brand h2 {
            color: #fff;
            font-size: 26px;
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .footer-logo-dot {
            color: var(--accent-gold);
        }

        .footer-role {
            display: block;
            color: var(--accent-gold);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-desc {
            color: rgba(255, 255, 255, 0.65);
            /* Muted white */
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 320px;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.2s;
            font-size: 18px;
        }

        .footer-social a:hover {
            color: var(--accent-gold);
        }

        .footer-col h4 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 32px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .footer-links li {
            margin-bottom: 16px;
            /* Comfortable spacing */
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 15px;
            transition: all 0.2s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #fff;
            transform: translateX(4px);
        }

        .footer-contact-item {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            align-items: flex-start;
        }

        .footer-icon {
            color: var(--accent-gold);
            font-size: 18px;
            margin-top: 2px;
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            /* Very subtle divider */
            padding-top: 40px;
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* PROCESS SECTION - SPLIT PANEL */
        .process-section {
            background-color: var(--bg-off-white);
            padding: 120px 0;
            border-top: 1px solid var(--border-light);
        }

        .process-grid {
            display: grid;
            grid-template-columns: 0.35fr 0.65fr;
            /* 35% - 65% split */
            gap: 80px;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            align-items: start;
        }

        /* Left Panel - Overview */
        .process-overview {
            position: sticky;
            top: 120px;
            /* Sticky scroll effect */
            height: min-content;
        }

        .process-label {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            font-weight: 600;
            margin-bottom: 24px;
            display: block;
        }

        .process-overview h2 {
            font-size: 40px;
            margin-bottom: 24px;
            position: relative;
        }

        /* Thin vertical accent line beside heading */
        .process-overview h2::before {
            content: '';
            position: absolute;
            left: -24px;
            top: 6px;
            bottom: 6px;
            width: 2px;
            background-color: var(--accent-gold);
        }

        .process-overview p {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .process-visual-mini {
            width: 100%;
            height: 250px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background-color: #f0f0f0;
        }

        .process-visual-mini img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(0);
            transition: filter 0.3s;
        }

        .process-overview:hover .process-visual-mini img {
            filter: saturate(0.5);
        }

        /* Right Panel - Framework */
        .process-framework {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .process-step-row {
            display: grid;
            grid-template-columns: 60px 1fr;
            gap: 32px;
            padding: 32px;
            border-radius: var(--radius-md);
            transition: background-color 0.3s, transform 0.2s;
            cursor: default;
        }

        .process-step-row:hover {
            background-color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .step-number-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 32px;
            font-weight: 300;
            color: #94A3B8;
            line-height: 1;
        }

        .process-step-row:hover .step-number-text {
            color: var(--primary-navy);
        }

        .step-content-block h4 {
            font-size: 20px;
            color: var(--primary-navy);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .step-content-block p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* CASE STUDIES SECTION */
        .case-studies-section {
            background-color: var(--bg-white);
            padding: 120px 0 0;
        }

        .case-studies-grid {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            margin-bottom: 60px;
        }

        .section-cta-wrapper {
            text-align: center;
            margin-top: 40px;
        }

        .ti-footer-filter-text {
            display: none !important;
        }

        /* FAQ SECTION */
        .faq-section {
            background-color: var(--bg-off-white);
            padding: 100px 0;
            border-top: 1px solid var(--border-light);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            border-top: 1px solid var(--border-light);
        }

        .faq-item {
            border-bottom: 1px solid var(--border-light);
        }

        .faq-question {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 24px 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 18px;
            color: var(--primary-navy);
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.2s;
        }

        .faq-question:hover {
            color: var(--primary-green);
        }

        .faq-icon {
            color: var(--accent-gold);
            font-size: 24px;
            line-height: 1;
            font-weight: 300;
        }

        .faq-icon::after {
            content: '+';
        }

        details[open] .faq-icon::after {
            content: '\2212';
            /* Minus sign */
        }

        details[open] .faq-icon {
            transform: none;
            /* No rotation */
        }

        .faq-answer {
            padding-bottom: 24px;
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 16px;
            display: none;
            /* Controlled by details/summary usually, but for custom accordion we might need simple details tag */
        }

        /* Using standard details/summary for accessibility and simplicity without JS if possible,
           but styling needs to ensure smooth reset. */
        details {
            width: 100%;
        }

        summary {
            list-style: none;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        details[open] .faq-answer {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* EXECUTIVE SPLIT CTA SECTION */
        .contact-section {
            background-color: var(--primary-navy);
            padding: 100px 0;
            color: var(--bg-white);
            position: relative;
        }

        .contact-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* Left Column */
        .cta-left h6 {
            color: var(--accent-gold);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            margin-bottom: 24px;
            display: block;
        }

        .cta-left h2 {
            font-size: 42px;
            color: #fff;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .cta-left p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 0;
            max-width: 500px;
        }

        /* Right Column - Form */
        .cta-form-box {
            background: #fff;
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-input {
            width: 100%;
            padding: 16px;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            color: var(--primary-navy);
            background: #f8fafc;
            transition: all 0.2s;
            outline: none;
        }

        .form-input:focus {
            border-color: var(--primary-green);
            background: #fff;
        }

        .cta-button {
            width: 100%;
            background-color: var(--primary-green);
            color: #fff;
            padding: 18px;
            border: none;
            border-radius: var(--radius-md);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .cta-button:hover {
            background-color: #166648;
            /* Darker green */
        }

        .trust-indicator {
            margin-top: 16px;
            text-align: center;
            font-size: 13px;
            color: rgba(11, 44, 74, 0.6);
            /* Muted navy on white bg */
        }

        /* MOBILE MENU STYLES */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-navy);
            cursor: pointer;
            padding: 4px;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: white;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            padding: 24px;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
            margin-bottom: 40px;
        }

        .mobile-nav-link {
            font-size: 20px;
            font-weight: 600;
            color: var(--primary-navy);
            text-decoration: none;
        }

        .mobile-nav-link:hover {
            color: var(--primary-green);
        }

        .mobile-cta-group {
            display: flex;
            flex-direction: column;
            gap: 16px;
            width: 100%;
            max-width: 280px;
        }

        /* FORM SUBMISSION STYLES */
        .cta-button:disabled {
            opacity: 0.8;
            cursor: not-allowed;
        }

        .spinner {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 0.8s linear infinite;
            margin-right: 8px;
            vertical-align: middle;
            position: relative;
            top: -1px;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .form-success-message {
            margin-top: 16px;
            padding: 16px;
            border-radius: var(--radius-md);
            background-color: #F0FDF4;
            /* Light green bg */
            border: 1px solid #DCFCE7;
            color: #166534;
            /* Dark green text */
            font-size: 14px;
            line-height: 1.5;
            text-align: center;
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .form-success-message.visible {
            display: block;
        }

        /* ============================================
           MEDIA QUERIES (CONSOLIDATED)
           ============================================ */

        /* Tablet & Mobile - 1024px and below */
        @media (max-width: 1024px) {

            /* Header & Navigation */
            .nav-links,
            .nav-cta {
                display: none;
            }

            .hamburger-btn {
                display: block;
            }

            /* Hero Section */
            .hero-container {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
                padding-top: 60px;
            }

            .hero-content {
                align-items: center;
            }

            h1 {
                font-size: 42px;
            }

            .h1-secondary {
                font-size: 32px;
            }

            .priority-indicators {
                justify-content: center;
            }

            .card-main {
                position: relative;
                top: 0;
                right: 0;
                width: 90%;
                max-width: 440px;
                height: auto;
                aspect-ratio: 440/540;
                margin: 0 auto;
            }

            .hero-visuals {
                height: auto;
                min-height: auto;
                display: block;
                margin: 0 auto;
                max-width: 500px;
                padding-bottom: 40px;
            }

            /* Footer */
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 50px;
            }

            /* Executive CTA Section */
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .cta-left p {
                margin: 0 auto;
            }

            /* Process Section */
            .process-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .process-overview {
                position: static;
                margin-bottom: 40px;
            }

            .process-overview h2::before {
                left: -16px;
            }
        }

        /* Tablet - 968px and below */
        @media (max-width: 968px) {

            /* Services Section */
            .service-block {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: left;
                margin-bottom: 25px;
            }

            .service-block.reverse {
                direction: ltr;
            }

            .supporting-grid {
                grid-template-columns: 1fr;
            }

            /* Editorial Grid (Why Choose Us) */
            .editorial-grid {
                grid-template-columns: 1fr;
            }

            .col-center {
                border-left: none;
                border-right: none;
                padding: 0;
            }
        }

        /* Mobile - 768px and below */
        @media (max-width: 768px) {

            /* Hero Section */
            .card-overlap,
            .floating-badge,
            .visual-circle-bg {
                display: none;
            }

            .hero-visuals {
                padding-top: 20px;
            }

            h1 {
                font-size: 36px;
            }

            .h1-secondary {
                font-size: 24px;
            }

            /* Process Section */
            .process-step-row {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 24px 16px;
            }

            .step-number-text {
                font-size: 24px;
                margin-bottom: 8px;
            }
        }

        /* Small Mobile - 600px and below */
        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero {
                padding: 0;
            }

            .hero-content {
                text-align: left;
            }

            .auth-label-wrapper {
                margin-left: -15px;
            }

            .hero-desc {
                font-size: 16px;
            }

            .priority-indicators {
                display: none;
            }

            .card-main {
                width: 100%;
            }

            .hero-visuals {
                padding: 0;
            }
        }

        @media (max-width: 425px) {
            .cta-group {
                flex-direction: column;
            }

            .service-block-container {
                gap: 0px;
            }

            .cta-group {
                width: 100%;
            }
        }
        /* PAGE LOADER - Bar Growth Theme */
        #loader-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background-color: #FFFFFF;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        #loader-overlay.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-container {
            display: flex;
            align-items: flex-end;
            gap: 12px;
            height: 60px;
        }

        .bar {
            width: 8px;
            background-color: #0B2C4A;
            /* Primary Navy */
            border-radius: 4px 4px 0 0;
            opacity: 0;
            transform-origin: bottom;
            animation: growBar 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        /* Fifth bar is accent green */
        .bar:nth-child(5) {
            background-color: #1F7A5A;
        }

        /* Heights */
        .bar:nth-child(1) {
            height: 35%;
            animation-delay: 0.1s;
        }

        .bar:nth-child(2) {
            height: 50%;
            animation-delay: 0.25s;
        }

        .bar:nth-child(3) {
            height: 65%;
            animation-delay: 0.4s;
        }

        .bar:nth-child(4) {
            height: 80%;
            animation-delay: 0.55s;
        }

        .bar:nth-child(5) {
            height: 100%;
            animation-delay: 0.7s;
        }

        @keyframes growBar {
            0% {
                opacity: 0;
                transform: scaleY(0);
            }

            100% {
                opacity: 1;
                transform: scaleY(1);
            }
        }

/* STICKY MOBILE CTA & WHATSAPP */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    z-index: 999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}
.sticky-mobile-cta a {
    text-align: center;
    padding: 14px 0;
    font-weight: 600;
    font-size: 14px;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.sticky-mobile-cta a i { font-size: 18px; }
.sticky-mobile-cta .btn-call { background-color: var(--primary-navy); }
.sticky-mobile-cta .btn-whatsapp { background-color: #25D366; }
.sticky-mobile-cta .btn-consult { background-color: var(--primary-green); }

@media (min-width: 769px) { 
    .sticky-mobile-cta { display: none; } 
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: 1px solid #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    color: white;
}

/* Page Section Utilities */
.page-section-padding {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
}
.page-section-padding.narrow {
    max-width: 900px;
}
.page-section-padding.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .page-section-padding {
        padding: 80px 16px;
    }
}
@media (max-width: 425px) {
    .page-section-padding {
        padding: 60px 16px;
    }
    .btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Blog Load More Utilities */
.hidden-blog {
    display: none !important;
}
.load-more-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}
/* CA Services Section Redesign */
.ca-services-section {
    background: linear-gradient(135deg, var(--bg-off-white), #f4f9ff);
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    margin: 40px auto;
    max-width: 1200px;
}
.ca-services-section .section-title { 
    margin-bottom: 40px; 
    font-size: 36px; 
    color: var(--primary-navy); 
}
.service-cards { 
    display: flex; 
    gap: 24px; 
    justify-content: center; 
    flex-wrap: wrap; 
}
.service-card { 
    background: white; 
    border-radius: var(--radius-md); 
    padding: 32px 24px; 
    flex: 1 1 260px; 
    max-width: 320px; 
    transition: transform 0.3s ease, box-shadow 0.2s; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.service-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-elevation); 
}
.service-icon { 
    font-size: 48px; 
    color: var(--primary-green); 
    margin-bottom: 20px; 
    display: inline-block;
}
.service-name { 
    font-size: 22px; 
    color: var(--primary-navy); 
    margin-bottom: 12px; 
    font-weight: 700;
}
.service-desc { 
    font-size: 16px; 
    color: var(--text-muted); 
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-cards { 
        flex-direction: column; 
        align-items: center; 
    }
}

/* Trust Section (Service Page) */
.trust-section {
    background: linear-gradient(135deg, var(--bg-off-white), #f4f9ff);
    padding: 80px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    margin: 40px auto;
    max-width: 1200px;
}
.trust-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.trust-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    flex: 1 1 180px;
    max-width: 240px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.2s;
}
.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevation);
}
.trust-item i {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 16px;
    display: block;
}
.trust-item h4 {
    color: var(--primary-navy);
    font-size: 20px;
    margin-bottom: 6px;
}
.trust-item p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* Process / How It Works Section */
.process-section {
    padding: 80px 24px;
    background-color: var(--bg-white);
    max-width: var(--max-width);
    margin: 0 auto;
}
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
}
.step-card {
    background: var(--bg-off-white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    flex: 1 1 240px;
    max-width: 320px;
    position: relative;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.2s;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-subtle);
    border-color: var(--primary-green);
}
.step-icon {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 16px;
}
.step-card h4 {
    color: var(--primary-navy);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}
.step-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
.process-cta {
    text-align: center;
    margin-top: 20px;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* ---- Hero ---- */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0d2a4a 100%);
    padding: 100px 24px;
    overflow: hidden;
}
.contact-hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.contact-content { flex: 1 1 400px; }
.contact-h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin: 12px 0 20px;
}
.contact-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-visual { flex: 1 1 380px; }
.contact-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevation);
    max-height: 420px;
    object-fit: cover;
}

/* ---- Quick Contact Cards ---- */
.quick-contact-section {
    padding: 80px 24px;
    background: var(--bg-off-white);
}
.quick-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
}
.contact-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    flex: 1 1 220px;
    max-width: 280px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevation);
}
.contact-card .icon-box {
    width: 64px;
    height: 64px;
    background: var(--bg-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-navy);
    margin-bottom: 20px;
}
.contact-card h3 {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 8px;
}
.contact-card .contact-value {
    font-size: 15px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 20px;
}
.contact-card .card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-green);
    text-decoration: none;
    transition: gap 0.2s;
}
.contact-card .card-link:hover { gap: 10px; }

/* ---- Main Form Section ---- */
.form-section {
    padding: 80px 24px;
    background: white;
}
.form-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.form-wrapper {
    flex: 1 1 480px;
    background: var(--bg-off-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}
.form-wrapper h2 {
    color: var(--primary-navy);
    font-size: 28px;
    margin-bottom: 8px;
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    background: white;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(26, 115, 84, 0.12);
}
.form-textarea {
    height: 130px;
    resize: vertical;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 500px) { .form-grid { grid-template-columns: 1fr; } }

/* ---- Info Column ---- */
.info-col {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-block {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.info-block h4 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--bg-off-white);
}
.info-item:last-child { border-bottom: none; }
.info-icon {
    font-size: 22px;
    color: var(--primary-green);
    margin-top: 2px;
    flex-shrink: 0;
}
.info-text strong {
    display: block;
    font-size: 14px;
    color: var(--primary-navy);
    margin-bottom: 4px;
}
.info-text span {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---- Trust Block ---- */
.trust-block {
    background: linear-gradient(135deg, var(--primary-navy), #0d2a4a);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: white;
}
.trust-block h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}
.trust-block p { font-size: 14px; opacity: 0.8; margin-bottom: 24px; }
.trust-stats { display: flex; flex-direction: column; gap: 16px; }
.stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
}
.stat-val {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-gold);
    min-width: 70px;
}
.stat-lbl { font-size: 14px; color: rgba(255,255,255,0.8); }

/* ---- Map Section ---- */
.map-section {
    padding: 80px 24px;
    background: var(--bg-off-white);
}
.map-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.location-info {
    flex: 1 1 320px;
}
.location-info h3 {
    font-size: 26px;
    color: var(--primary-navy);
    margin-bottom: 12px;
}
.location-info > p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.location-details { display: flex; flex-direction: column; gap: 24px; }
.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.detail-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-navy);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    flex-shrink: 0;
}
.detail-content h5 {
    font-size: 15px;
    color: var(--primary-navy);
    margin-bottom: 6px;
}
.detail-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}
.directions-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    border: 1.5px solid var(--primary-green);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.directions-btn-outline:hover {
    background: var(--primary-green);
    color: white;
}
.map-frame {
    flex: 1 1 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elevation);
    min-height: 380px;
}
.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
}

/* ---- Reviews Section ---- */
.reviews-section {
    padding: 80px 24px;
    background: white;
}
.review-cta {
    text-align: center;
    margin-top: 32px;
}
.review-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-green);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}
.review-link:hover { border-color: var(--primary-green); }

/* ---- Final CTA ---- */
.final-cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #0d2a4a 100%);
    text-align: center;
}
.final-cta-container {
    max-width: 700px;
    margin: 0 auto;
}
.final-cta-h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin: 16px 0 16px;
}
.final-cta-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
}
.cta-trust-micro {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.cta-trust-micro .micro-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    display: inline-block;
}
.cta-gold-divider {
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
    margin: 12px auto 0;
}

