:root {
    --primary: #1E40AF;
    /* Primary Accent */
    --navy: #020617;
    /* Deep Navy / Slate 950 */
    --black: #0F172A;
    /* Primary Text / Slate 900 */
    --light-gray: #F1F5F9;
    /* Slate 100 */
    --white: #FFFFFF;
    --accent-gray: #64748B;
    /* Slate 500 */
    --text-muted: #CBD5E1;
    /* Slate 300 */

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --gold: #C5A059; /* Gold from Logo */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}




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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

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

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--navy);
}

.section-title p {
    color: var(--accent-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 0;
    /* Sharp edges */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

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

.btn-white {
    background-color: var(--white);
    color: var(--navy);
    border: none;
    font-weight: 800;
}

.btn-white:hover {
    background-color: var(--light-gray);
    color: var(--primary);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.2rem;
}

/* Header & Navigation */
.main-header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

.header-top {
    background-color: var(--white);
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 5;
    font-size: 0.85rem;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    color: var(--black);
    font-weight: 700;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.top-bar-left i {
    color: var(--primary);
    font-size: 0.9rem;
}

.header-top .logo img {
    height: 80px;
    width: auto;
}

.nav-logo-img {
    height: 54px;
    width: auto;
    display: block;
    object-fit: contain;
    /* No filter — show logo in its original colours */
}

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

.footer-logo-img-actual {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 15px;
    /* No filter — show logo in its original colours */
}

.text-logo {
    color: var(--white);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    text-transform: uppercase;
    text-decoration: none;
}

.footer-text-logo {
    color: var(--white);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.header-info-blocks {
    display: flex;
    gap: 30px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-content span {
    display: none; /* Hide labels for a thinner bar */
}

.info-content strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.navbar {
    background-color: var(--navy);
    padding: 0;
    height: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .header-top {
        display: none !important; /* Hide ALL info blocks on mobile as requested, or hide entire top bar */
    }

    .hide-on-mobile, 
    .about-image {
        display: none !important; /* Force hide benefits photos on mobile */
    }
}

/* Base layout cleanup */
body {
    padding-top: 0; 
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.nav-links {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    padding-left: 0;
    margin-left: 0;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    transition: var(--transition);
    padding: 15px 0;
}

.nav-links a:hover {
    color: var(--white);
    opacity: 0.8;
}

.center-logo {
    justify-self: center;
}

.nav-right {
    display: flex;
    justify-self: flex-end;
    align-items: center;
    gap: 12px;
}

.nav-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--navy) !important;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-call-btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.nav-call-btn i {
    font-size: 0.85rem;
}

.nav-btn {
    background: transparent !important;
    color: var(--navy) !important;
    border: 1px solid var(--navy) !important;
    padding: 8px 18px;
    font-size: 0.7rem;
    border-radius: 0;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--navy) !important;
    color: var(--white) !important;
    transform: none !important;
    box-shadow: none !important;
}



.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease-in-out forwards;
}



@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10001;
    padding: 5px;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .center-logo {
        order: 1;
    }

    .nav-right {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
        order: 3;
        z-index: 100002; /* Higher than nav-links */
        color: var(--white);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(11, 28, 44, 0.98); /* Solid Deep Navy */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center; /* Centered as requested */
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        z-index: 100001;
        padding: 0;
        margin: 0;
        gap: 30px;
        display: flex;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        list-style: none;
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        font-size: 1rem;
        font-weight: 700;
        color: var(--white) !important;
        display: block;
        width: 100%;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }
    
    .mobile-only-btn {
        display: flex !important; /* Changed to flex to allow centering without stretching */
        justify-content: center;
        width: 100%;
        margin-top: 20px;
    }
    
    .mobile-only-btn .nav-call-btn {
        background: var(--white);
        color: var(--navy) !important;
        font-size: 0.85rem;
        font-weight: 800;
        padding: 10px 25px;
        border-radius: 4px;
        display: inline-flex !important; /* Force inline-flex to prevent stretching */
        width: auto !important; /* Force auto width */
        max-width: fit-content;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        margin: 10px auto 0 !important; /* Center itself */
    }
    
    .mobile-only-btn .nav-call-btn i {
        font-size: 1rem;
        color: var(--navy);
    }

}

.mobile-only-btn {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0; /* Changed since header is not absolute */
    color: var(--white);
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 85vh; 
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    filter: blur(5px);
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.85) 55%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 40px;
    width: 100%;
}

.hero-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--navy); /* Switched from Gold to Navy */
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-tagline::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--navy); /* Switched from Gold to Navy */
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem); 
    margin-bottom: 20px;
    color: var(--black); 
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-content h1 span {
    color: var(--navy); /* Switched from Gold to Navy */
}

.hero-subheadline {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    margin-bottom: 35px;
    color: var(--black); /* Switched to Black */
    max-width: 500px;
    line-height: 1.6;
    opacity: 0.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-gold {
    background-color: var(--navy); /* Navy background */
    color: var(--white);
    font-weight: 400; /* Non-bold thinner font */
    padding: 10px 24px; /* Reduced button size */
    font-size: 0.9rem; /* Smaller text */
    letter-spacing: 0.05em;
}

.btn-gold:hover {
    background-color: #030a30;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.hero-bullets li {
    font-size: 1.1rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero-bullets i {
    color: var(--navy);
    font-size: 1.2rem;
}

/* Simple Modern Form */
.hero-form-wrapper {
    flex-shrink: 0;
    width: 100%;
    max-width: 400px;
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        padding-top: 60px;
        padding-bottom: 60px;
        gap: 30px;
    }
    
    .hero-form-wrapper {
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
        flex-shrink: 0;
    }
    
    .hero-form-container {
        width: 100%;
        max-width: 100%;
    }
    
    .form-minimal {
        width: 100%;
    }
}

.hero-form-container {
    background: #f5f5f5;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
    border: 1px solid #e0e0e0;
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: hidden;
}

.form-minimal {
    background: #f5f5f5;
    border-radius: 0;
    padding: 36px 32px 32px;
    border: none;
}

.form-minimal .form-header {
    text-align: left;
    margin-bottom: 25px;
}

.form-minimal .form-header h2 {
    font-size: 2rem;
    color: #0d1b2e;
    margin-bottom: 6px;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.form-minimal .form-header p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
    text-transform: none;
    font-family: var(--font-body);
}

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

.form-minimal label {
    display: block;
    font-size: 0.72rem;
    color: #111;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.form-minimal input, 
.form-minimal select {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--primary);
    background: transparent;
    padding: 10px 0;
    font-size: 1rem;
    color: #333;
    outline: none;
    border-radius: 0;
    box-shadow: none;
    font-family: var(--font-body);
}

.form-minimal input:focus, 
.form-minimal select:focus {
    border-bottom-color: var(--navy);
    background: transparent;
    box-shadow: none;
}

.form-minimal input::placeholder {
    color: #888;
    font-size: 0.95rem;
}

.form-minimal .btn-gold {
    background-color: var(--navy);
    color: white;
    font-weight: 800;
    letter-spacing: 0.08em;
    border: none;
    transition: var(--transition);
    width: 100%;
    padding: 18px 24px;
    font-size: 1rem;
    border-radius: 6px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.form-minimal .btn-gold:hover {
    background-color: #030a30;
}

.form-header h3 {
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    text-align: center;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.8rem;
    transition: var(--transition);
    outline: none;
    border-radius: 6px;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-minimal select {
    color: #555;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231E40AF' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}

.form-minimal select option {
    color: #333;
    background: #fff;
}





/* Trust Bar */
.trust-bar {
    background-color: var(--primary);
    padding: 25px 0;
    color: var(--white);
}

.trust-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--navy);
}

/* Services */
.services {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--navy);
    font-size: 1.1rem;
}

.service-card p {
    color: var(--accent-gray);
}

/* Why Choose Us */
.why-us {
    background-color: var(--primary);
    padding: 120px 0;
    position: relative;
    color: var(--white);
}



.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-content h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.why-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-box {
    background-color: var(--navy);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: var(--transition);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box:hover {
    background-color: var(--black);
    transform: translateY(-5px);
}

.feature-icon {
    color: var(--primary);
    font-size: 2.5rem;
}

.feature-text h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* How It Works */
.how-it-works {
    background-color: var(--white);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.step {
    text-align: center;
    width: 30%;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.step-icon {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.step h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.step p {
    color: var(--accent-gray);
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background-color: var(--primary);
    position: relative;
    top: 20px;
    z-index: 1;
    border-style: dashed;
    border-width: 2px;
    border-color: var(--primary);
    background: none;
}

/* Modern Reviews Carousel */
.reviews-modern {
    padding: 60px 0;
    margin-bottom: 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.reviews-header-top {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.google-trust-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 15px 30px;
    box-shadow: var(--shadow);
    border-radius: 50px;
}

.google-icon-navy {
    font-size: 1.5rem;
    color: var(--navy);
}

.trust-info .stars-navy {
    color: var(--navy);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.trust-info p {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reviews-carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 380px; /* Reduced and standardized */
}

.reviews-slider {
    position: relative;
    height: 100%;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.review-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.review-card-large {
    background: var(--white);
    padding: 40px; /* Reduced from 60px */
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    height: 380px; /* Fixed height for uniformity */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-quote {
    font-size: 3.5rem;
    color: var(--navy);
    margin-bottom: 30px;
    opacity: 0.25; /* Increased opacity to make navy blue distinct */
}

.review-card-large .review-body {
    font-size: clamp(1.1rem, 2vw, 1.4rem); /* Slightly smaller to fit fixed height */
    line-height: 1.5;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 25px;
    font-style: italic;
}

.reviewer-meta h4 {
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.reviewer-meta span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.r-dot {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.r-dot.active {
    background: var(--navy);
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .review-card-large {
        padding: 40px 20px;
    }
    
    .reviews-carousel-container {
        min-height: 450px;
    }
}

/* Brands */
.brands {
    background-color: var(--light-gray);
}

.brands-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.brand-item:hover {
    color: var(--navy);
}

/* About Section */
/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.comparison-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 15px;
}

.comparison-section p {
    color: var(--accent-gray);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.comparison-outer-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.comparison-scroll-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    padding: 40px 0;
}

.comparison-scroll-container::-webkit-scrollbar {
    display: none;
}

.comparison-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    padding: 0 50px;
}

.comparison-card {
    width: 400px; /* Smaller size */
    flex-shrink: 0;
    position: relative;
}

.comparison-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    background: #fdfdfd;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px; /* Extra padding to ensure it's "whole" */
}

.comparison-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensure whole tyre is visible */
}

.card-label {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    border-radius: 6px;
    z-index: 10;
}

.card-label.before {
    background: #ffeded;
    color: #cc0000;
}

.card-label.after {
    background: #e8fdf0;
    color: #008833;
}

/* Horizontal Bar */
.comparison-divider {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.prompt-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(to right, #f0f0f0, var(--navy), #f0f0f0);
    border-radius: 2px;
    opacity: 0.3;
}

.mobile-scroll-hint {
    display: none;
}

@media (max-width: 991px) {
    .comparison-card {
        width: 320px;
    }
    
    .comparison-divider {
        width: 100px;
        padding: 0 10px;
    }

    .mobile-scroll-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 25px;
        color: var(--navy);
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        animation: hintPulse 2s infinite;
    }

    @keyframes hintPulse {
        0%, 100% { opacity: 0.6; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.03); }
    }
}

.about-section {
    padding: 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-image {
    position: relative;
    min-height: 500px;
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    padding: 80px 10%;
    background-color: var(--white);
    position: relative;
}

/* Orange border overlay similar to reference */
.about-text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 20px solid var(--primary);
    z-index: 0;
    pointer-events: none;
    display: none;
    /* Might clash on small screens, keep hidden or adjust */
}

.intro-label {
    display: inline-block;
    padding: 5px 15px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: bold;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 1.5rem;
    color: var(--black);
}

.about-text p {
    color: var(--accent-gray);
    margin-bottom: 20px;
}

.about-list {
    margin-top: 30px;
}

.about-list li {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list i {
    color: var(--primary);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(rgba(11, 28, 44, 0.9), rgba(11, 28, 44, 0.9)), url('https://images.unsplash.com/photo-1551044439-c1bd2cc950f6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    padding: 100px 0;
    color: var(--white);
}

.final-cta h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--light-gray);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.brand-col p {
    margin-bottom: 20px;
    color: var(--accent-gray);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul a {
    color: var(--accent-gray);
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-col p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--accent-gray);
}

.contact-col i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 20px 0;
    text-align: center;
    color: var(--accent-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10; /* Low z-index so mobile menu fully covers them */
}

.dot {
    width: 6px; 
    height: 6px;
    background: rgba(2, 6, 23, 0.2); 
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(2, 6, 23, 0.4);
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.dot.active {
    background: var(--navy); 
    transform: scale(1.3);
    border-color: var(--navy);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 0;
    }

    .why-us-inner {
        grid-template-columns: 1fr;
    }

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

    .about-image {
        min-height: 400px;
    }

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-btn {
        display: none;
    }

    .nav-call-btn {
        padding: 6px 14px;
        font-size: 0.6rem;
    }

    .nav-right {
        gap: 8px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step {
        width: 100%;
    }

    .step-connector {
        display: none;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

}

/* The CJS Advantage Section */
.advantage-modern {
    background-color: var(--white);
    padding: 120px 0 140px; /* Increased bottom padding to elongate background */
    margin-top: 0;
    position: relative;
    z-index: 5;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start; /* Changed from center to prevent jumping */
    min-height: 700px; /* Added min-height to keep section size stable */
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f1f5f9;
    color: var(--navy);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem; /* Smaller */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.advantage-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem); /* Smaller */
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 800;
}

.advantage-title span {
    color: var(--navy);
}

.advantage-desc {
    color: #64748b;
    font-size: 0.95rem; /* Smaller */
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.advantage-accordions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acc-item {
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.acc-item.active {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
}

.acc-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.acc-icon {
    width: 32px; /* Smaller */
    height: 32px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 0.9rem;
}

.acc-header h3 {
    font-size: 1rem; /* Smaller */
    font-weight: 700;
    color: var(--black);
    flex: 1;
}

.acc-toggle {
    font-size: 0.8rem;
    color: #94a3b8;
    transition: var(--transition);
}

.acc-item.active .acc-toggle {
    color: var(--navy);
    transform: rotate(180deg);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 0 20px 0 65px;
}

.acc-item.active .acc-body {
    max-height: 200px;
    padding-bottom: 20px;
}

.acc-body p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.85rem;
}

/* Advantage Visuals */
.advantage-visuals {
    position: relative;
    padding-bottom: 40px; /* Space for static badge */
}

.visual-stack {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.image-main {
    flex: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-secondary {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.image-main img, .image-secondary img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.exp-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.05);
    border-radius: 0;
    text-align: right;
    z-index: 10;
}

.exp-num {
    font-size: 1.8rem; /* Smaller */
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.exp-txt {
    font-size: 0.75rem; /* Smaller */
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* Service Process Section */
/* Service Process Section Redesign */
.process-section {
    background-color: #f1f3f5;
}

.premium-intro-text {
    font-size: 1.3rem; /* Scaled down from 1.5rem */
    line-height: 1.5;
    color: var(--black);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.premium-intro-text strong {
    color: var(--navy);
    font-weight: 800;
}

.process-cards {
    display: flex;
    gap: 35px; /* Slightly tighter gap */
    height: 500px; /* Scaled down from 550px */
    width: 100%;
    max-width: 900px; /* Scaled down from 1000px */
    margin: 0 auto;
    transition: all 0.5s ease;
}

.process-card {
    flex: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    background: #fff;
}

/* Has Active State Logic */
.process-cards.has-active .process-card:not(.active) {
    display: none;
}

.process-card.active {
    flex: 3; /* Clicked card + space for description */
}

.process-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
}

/* Main Card View (The 1/3 Part) */
.card-main-view {
    width: 100%; /* Default when not active */
    padding: 22px; /* Scaled down */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: width 0.5s ease;
}

.process-card.active .card-main-view {
    width: 33.33%; /* Shrinks to 1/3 when active */
}

.style-light .card-main-view {
    background-color: #f8f9fa;
}

.style-navy .card-main-view {
    background-color: var(--navy);
    color: var(--white);
}

.card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px; /* Reduced */
}

.pill-label {
    padding: 6px 14px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    font-size: 0.7rem; /* Reduced */
    font-weight: 700;
    color: var(--black);
}

.style-navy .pill-label {
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}

.card-display-title {
    font-size: 1.1rem; /* Scaled down from 1.3rem */
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

.card-image-wrap {
    width: 100%;
    height: 220px; /* Scaled down from 250px */
    border-radius: 20px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.read-more-trigger {
    margin-top: 15px;
    background: none;
    border: none;
    color: inherit;
    font-weight: 700;
    font-size: 0.75rem; /* Reduced */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.read-more-trigger i {
    font-size: 0.65rem;
    background: rgba(0,0,0,0.05);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.style-navy .read-more-trigger i {
    background: rgba(255,255,255,0.1);
}

/* Expanded Description Box (The 2/3 Part) */
.card-expanded-view {
    display: none;
    width: 66.66%;
    height: 100%;
    padding: 40px; /* Reduced from 60px */
    flex-direction: column;
    justify-content: center;
    transition: all 0.5s ease;
}

.process-card.active .card-expanded-view {
    display: flex;
}

/* Color Inversion Logic */
.style-light.active .card-expanded-view {
    background-color: var(--navy); /* White card -> Navy box */
    color: var(--white);
}

.style-navy.active .card-expanded-view {
    background-color: var(--white); /* Navy card -> White box */
    color: var(--navy);
}

.card-expanded-view h3 {
    font-size: 1.6rem; /* Scaled down */
    margin-bottom: 15px;
    color: inherit;
}

.card-expanded-view p {
    font-size: 1rem; /* Scaled down from 1.15rem */
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
}

.back-btn {
    width: fit-content;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.style-light.active .back-btn {
    background: var(--white);
    color: var(--navy);
}

.style-navy.active .back-btn {
    background: var(--navy);
    color: var(--white);
}

/* Pill style matching Advantage section */
.intro-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f1f5f9;
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.about-list li i {
    color: var(--navy); /* Tick marks to navy blue */
    margin-right: 10px;
}

/* Mobile Responsive - Process Cards */
@media (max-width: 991px) {
    .process-cards {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .process-card {
        width: 100%;
        height: auto;
        min-height: 300px;
    }

    /* When active on mobile: stack main + expanded vertically */
    .process-card.active {
        flex: none;
    }

    .process-card-inner {
        flex-direction: column; /* Always column on mobile */
    }

    .card-main-view {
        width: 100% !important;
        height: auto;
        min-height: 260px;
    }

    /* Expanded view full-width block below the card */
    .card-expanded-view {
        width: 100% !important;
        height: auto !important;
        padding: 30px 25px;
        display: none;
    }

    .process-card.active .card-expanded-view {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .card-expanded-view h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .card-expanded-view p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .card-image-wrap {
        height: 160px; /* Shorter image on mobile */
    }
}

/* Redesigned How It Works Section */
.hiw-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.hiw-header {
    margin-bottom: 70px;
}

.hiw-main-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--navy);
    max-width: 600px; /* Force better wrapping */
    margin: 20px auto 0;
    line-height: 1.1;
    text-transform: none;
}

.hiw-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* 8px spacing as requested */
    max-width: 850px; /* Narrowed significantly */
    margin: 0 auto;
    position: relative;
}

.hiw-step-info {
    margin-bottom: 20px;
}

.step-num-text {
    font-size: 0.65rem;
    font-weight: 800;
    color: #999;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 8px;
}

.hiw-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    text-transform: none;
    margin-bottom: 0;
    line-height: 1.3;
}

.hiw-visual {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #f1f3f5;
    margin-bottom: 20px;
}

.hiw-visual i {
    transition: all 0.4s ease;
    -webkit-text-stroke: 1px var(--navy); /* Thin navy outline */
}

.hiw-card:hover .hiw-visual i {
    color: var(--navy);
    -webkit-text-stroke: 0; /* Solid on hover */
    transform: scale(1.1);
}

.hiw-footer {
    display: flex;
    justify-content: flex-start;
}

.hiw-badge {
    background: #f1f3f5;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    transition: all 0.3s ease;
}

.hiw-card:hover .hiw-badge {
    background: var(--navy);
    color: var(--white);
}

.hiw-card {
    flex: 1;
    background: #fdfdfd;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 380px; /* Reduced length much more */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 8px 25px rgba(0,0,0,0.02);
    position: relative;
    z-index: 1;
}

.hiw-card:hover {
    z-index: 5;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.hiw-connector {
    width: 32px; /* Scaled down arrow */
    height: 32px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    flex-shrink: 0;
    z-index: 10;
    margin: 0 -20px; /* Balanced overlap */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

@media (max-width: 991px) {
    .hiw-grid {
        flex-direction: column;
        gap: 30px;
    }
    .hiw-connector {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    .hiw-card {
        width: 100%;
        min-height: auto;
    }
}

/* Continuous Brand Carousel */
.brand-carousel-section {
    padding: 25px 0; /* Very slim, elegant band */
    background: #fff;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    margin-top: 0;
    margin-bottom: 0;
    z-index: 10;
}

.carousel-track-wrapper {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: 80px;
    animation: scrollBrands 30s linear infinite;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px; /* Increased from 40px */
    min-width: 200px; /* Increased from 150px */
    transition: all 0.3s ease;
}

.brand-logo img {
    max-height: 100%;
    max-width: 180px; /* Increased from 120px */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

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

/* Sticky Reveal Structure */
.sticky-reveal-wrapper {
    position: relative;
    background: #fff;
    overflow: visible;
}

.sticky-section {
    position: sticky;
    top: 0;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    background: #fff;
    overflow: hidden;
}

.quote-sheet {
    background: #ffffff;
    color: var(--navy);
    padding: 15vh 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 100; /* Below navbar (10000) but above sticky section (1) */
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    box-shadow: 0 -30px 60px rgba(0,0,0,0.08);
    transition: border-radius 0.4s ease-out;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: block;
}

.same-day-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--navy);
    padding: 6px 12px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.same-day-badge i {
    color: var(--navy);
}

.quote-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 15px;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}

.quote-subtitle {
    font-size: 0.9rem;
    color: #777;
    max-width: 350px;
    margin-bottom: 30px;
}

.quote-direct-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.info-item .value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

/* Industrial Form Styling - Optimized Size */
.quote-form-wrap {
    background: rgba(255,255,255,0.02);
    padding: 30px 40px;
    border-radius: 0;
}

.form-intro h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.form-intro p {
    color: #777;
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.industrial-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.industrial-form .form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.industrial-form label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 5px;
    text-align: left;
    display: block;
}

.industrial-form input, 
.industrial-form select, 
.industrial-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    padding: 6px 0;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

.industrial-form input:focus, 
.industrial-form select:focus, 
.industrial-form textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 1px 0 0 var(--navy);
}

.helper-text {
    font-size: 0.6rem;
    color: #fff !important;
    margin-left: 8px;
    font-weight: 400;
    text-transform: none;
}

.quote-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 800;
    background: var(--white) !important;
    color: var(--black) !important;
    margin-top: 10px;
    margin-bottom: 10px;
}

.quote-submit-btn:hover {
    background: var(--navy) !important;
    color: var(--white) !important;
}

.trust-line {
    font-size: 0.7rem;
    color: #444;
    text-align: center;
}

/* Sheet Footer */
.sheet-footer {
    margin-top: 80px;
    background: #0d0d0d;
    color: var(--white);
    padding: 60px 40px 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 25px;
}

.footer-brand p {
    color: #666;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-group h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    color: var(--white);
}

.link-group a, .link-group span {
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-bottom-mini {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 30px;
}

.footer-bottom-mini p {
    font-size: 0.7rem;
    color: #333;
    letter-spacing: 0.1em;
}

/* About Section - No Image Layout */
.about-grid.no-image {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-grid.no-image .about-text {
    padding: 0;
}

.about-grid.no-image .about-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.about-grid.no-image .about-list li {
    text-align: left;
    width: 100%;
    max-width: 400px;
}

@media (max-width: 991px) {
    .about-grid.no-image {
        padding: 0 20px;
    }
}
@media (max-width: 1200px) {
    .container { max-width: 1000px; }
    .hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 991px) {
    .section-padding { padding: 60px 0; }
    
    .hero { min-height: 70vh; padding-top: 80px; }
    .hero-content h1 { font-size: 2.8rem; }
    
    .about-grid, .services-grid, .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image { height: 300px; }
    
    .brand-carousel-section { margin-top: -30px; }
}

@media (max-width: 768px) {
    .header-top { display: none; } /* Simplify on mobile */
    .navbar { top: 0 !important; }
    
    .hero-content { text-align: left; } /* Always left-aligned */
    .hero-content h1 { font-size: 2.2rem; }
    .hero-btns { justify-content: flex-start; }
    
    .section-title h2 { font-size: 2rem; }
    
    .hiw-grid {
        grid-template-columns: 1fr;
    }
    
    .hiw-connector {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .industrial-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px; /* Better spacing between inputs */
        margin-bottom: 15px;
    }

    .industrial-form .form-group {
        margin-bottom: 0;
    }

    .industrial-form input, 
    .industrial-form select {
        padding: 15px 20px; /* Larger touch targets */
        font-size: 1rem;
    }

    .quote-sheet {
        padding: 50px 20px;
        border-radius: 40px 40px 0 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }
}

/* Full-Width Advantage Section - Text & Accordion Focused */
.advantage-container-large {
    max-width: 900px !important;
    margin: 0 auto;
}

.advantage-header-full {
    margin-bottom: 50px;
}

.exp-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 4px;
    margin: 20px 0;
    font-weight: 800;
}

.exp-badge-inline .exp-num {
    font-size: 1.5rem;
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,0.2);
    padding-right: 12px;
}

.exp-badge-inline .exp-txt {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.advantage-accordions-full {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.advantage-modern {
    background-color: #f8fafc; /* Subtle grey background to distinguish section */
    padding: 100px 0;
    margin-top: 0; /* Remove spacing from continuous band */
}

@media (max-width: 991px) {
    .advantage-container-large {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    /* Quote sheet full mobile overhaul */
    .quote-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 30px;
        text-align: center;
    }

    .quote-header-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .quote-direct-info {
        align-items: center;
    }

    .quote-form-wrap {
        padding: 20px 15px;
    }

    .industrial-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .industrial-form input,
    .industrial-form select,
    .industrial-form textarea {
        padding: 14px 0;
        font-size: 1rem;
    }

    .industrial-form label {
        font-size: 0.72rem;
        color: #aaa;
    }

    .form-intro h3 {
        font-size: 1.2rem;
    }

    /* Advantage section mobile */
    .advantage-modern {
        padding: 60px 0;
        margin-top: 0;
    }

    .acc-header {
        padding: 14px 16px;
        gap: 10px;
    }

    .acc-header h3 {
        font-size: 0.9rem;
    }

    .acc-body p {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .btn { width: 100%; text-align: center; }
    .quote-title { font-size: 1.8rem; }
    .footer-logo-img { height: 50px; }
}
/* =============================================
   COMPREHENSIVE RESPONSIVE OVERHAUL
   ============================================= */

/* --- Large Tablets (max 1024px) --- */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }

    .hero-container {
        flex-direction: column;
        padding-top: 60px;
        padding-bottom: 60px;
        gap: 30px;
    }
    .hero-form-wrapper {
        max-width: 100%;
        width: 100%;
    }
    .hero-overlay {
        width: 100%;
        background: linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0.2) 100%);
    }

    .nav-logo-img { height: 48px; }

    .process-cards {
        flex-direction: column;
        height: auto;
        max-width: 100%;
    }
    .process-card { min-height: 280px; }
    .process-card-inner { flex-direction: column; }
    .card-main-view { width: 100% !important; height: auto; min-height: 240px; }
    .card-expanded-view { width: 100% !important; height: auto !important; padding: 25px 20px; }
    .card-image-wrap { height: 180px; }

    .hiw-grid {
        flex-direction: column;
        gap: 20px;
        max-width: 500px;
    }
    .hiw-connector { transform: rotate(90deg); margin: 5px 0; }
    .hiw-card { width: 100%; height: auto; min-height: 200px; }
}

/* --- Tablets (max 991px) --- */
@media (max-width: 991px) {
    /* Header top bar hidden already */
    .container { padding: 0 20px; }

    /* HERO: overlay full-width with gradient going down on mobile */
    .hero {
        min-height: auto;
        padding: 0;
    }
    .hero-container {
        flex-direction: column;
        padding: 50px 20px 50px;
        gap: 30px;
        align-items: stretch;
    }
    .hero-content { flex: none; }
    .hero-content h1 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
    .hero-subheadline { max-width: 100%; font-size: 0.95rem; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .btn-gold { width: 100%; text-align: center; justify-content: center; }

    /* Form: full width on mobile, stacked below */
    .hero-form-wrapper {
        max-width: 100%;
        width: 100%;
        margin-top: 10px;
    }
    .hero-form-container,
    .form-minimal {
        width: 100%;
        border-radius: var(--radius);
    }
    .form-minimal { padding: 28px 20px; }
    .form-minimal .form-header h2 { font-size: 1.4rem; }

    /* Nav logo size */
    .nav-logo-img { height: 44px; }

    /* Brand carousel no top margin on mobile */
    .brand-carousel-section { margin-top: 40px; }

    /* Advantage section */
    .advantage-modern { padding: 60px 0; margin-top: 0; }
    .advantage-container-large { padding: 0 20px; }
    .advantage-title { font-size: 1.8rem; }

    /* About grid */
    .about-grid { grid-template-columns: 1fr; }
    .about-text { padding: 50px 20px; }

    /* Process cards */
    .process-cards { flex-direction: column; height: auto; max-width: 100%; }
    .process-card { width: 100%; min-height: 280px; }
    .process-card-inner { flex-direction: column; }
    .card-main-view { width: 100% !important; height: auto; min-height: 240px; }
    .card-expanded-view { width: 100% !important; height: auto !important; padding: 25px 20px; display: none; }
    .process-card.active .card-expanded-view { display: flex; flex-direction: column; justify-content: flex-start; }
    .card-image-wrap { height: 160px; }

    /* How it works */
    .hiw-grid { flex-direction: column; gap: 20px; max-width: 500px; }
    .hiw-connector { transform: rotate(90deg); margin: 5px 0; }
    .hiw-card { width: 100%; height: auto; min-height: 200px; }
    .hiw-main-title { font-size: 1.8rem; }

    /* Sticky quote section */
    .sticky-section { height: auto; min-height: 100vh; }
    .quote-sheet { border-top-left-radius: 50px; border-top-right-radius: 50px; padding: 50px 0 0; }
    .quote-container { padding: 0 20px; }
    .footer-content { flex-direction: column; gap: 30px; }
    .footer-links { flex-wrap: wrap; gap: 30px; }

    /* Reviews */
    .review-card-large { height: auto; min-height: 300px; padding: 30px 20px; }
    .reviews-carousel-container { min-height: 320px; }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
    .container { padding: 0 16px; }

    .hero-container { padding: 40px 16px 40px; }
    .hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); line-height: 1.15; }
    .hero-subheadline { font-size: 0.9rem; }

    /* Quote contacts left-aligned */
    .quote-contact-blocks {
        justify-content: flex-start !important;
        gap: 20px !important;
        margin-left: 0 !important;
    }
    .contact-card {
        width: 100%;
        text-align: left !important;
    }

    /* Nav */
    .navbar { height: 64px; }
    .nav-inner { padding: 0 16px; }
    .nav-logo-img { height: 40px; }

    /* Brand carousel */
    .brand-logo { min-width: 130px; height: 55px; }
    .brand-logo img { max-width: 110px; }
    .carousel-track { gap: 50px; }

    /* Advantage */
    .advantage-modern { padding: 50px 0; }
    .acc-header { padding: 12px 14px; gap: 10px; }
    .acc-header h3 { font-size: 0.9rem; }
    .acc-body { padding: 0 14px 0 52px; }
    .acc-body p { font-size: 0.85rem; }
    .exp-badge-inline { padding: 8px 16px; }
    .exp-badge-inline .exp-num { font-size: 1.2rem; }

    /* Process */
    .process-section { padding: 50px 0; }
    .premium-intro-text { font-size: 1.1rem; }

    /* Reviews */
    .reviews-modern { padding: 40px 0; margin-bottom: 30px; }
    .review-card-large { padding: 25px 16px; }
    .review-card-large .review-body { font-size: 1rem; }

    /* HIW */
    .hiw-section { padding: 50px 0; }
    .hiw-main-title { font-size: 1.6rem; }
    .hiw-header { margin-bottom: 40px; }
    .hiw-card { padding: 20px 16px; }

    /* Quote section */
    .quote-sheet { border-top-left-radius: 30px; border-top-right-radius: 30px; }
    .quote-contact-blocks { gap: 20px !important; flex-direction: column; align-items: center; }
    .contact-card { flex-direction: row; }

    /* Footer */
    .sheet-footer { padding: 40px 20px 20px; }
    .footer-links { flex-direction: column; gap: 25px; }
    .footer-logo-img-actual { height: 50px; }
    .footer-bottom-mini { padding-top: 20px; }

    /* Hero dots position */
    .hero-dots { bottom: 20px; }
}

/* --- Small Mobile (max 480px) --- */
@media (max-width: 480px) {
    .hero-container { padding: 30px 14px 36px; }
    .hero-content h1 { font-size: clamp(1.4rem, 8vw, 1.9rem); }
    .form-minimal { padding: 22px 14px; }
    .form-minimal .form-header h2 { font-size: 1.2rem; }
    .form-minimal input, .form-minimal select { font-size: 0.95rem; padding: 9px 0; }

    .google-trust-badge { padding: 10px 18px; flex-direction: column; text-align: center; gap: 10px; }
    .reviews-carousel-container { min-height: 360px; }
    .review-card-large { height: auto; }

    .process-intro { padding: 0 14px; }
    .premium-intro-text { font-size: 1rem; }

    .hiw-main-title { font-size: 1.4rem; }
    .hiw-card { padding: 16px 14px; }
    .hiw-visual { font-size: 2.5rem; }

    .acc-icon { width: 28px; height: 28px; font-size: 0.8rem; }

    .quote-sheet { border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 35px 0 0; }
    .quote-container { padding: 0 14px; }
    .btn { font-size: 0.85rem; padding: 12px 20px; }
    .quote-submit-btn { padding: 14px; font-size: 0.9rem; }
}

/* --- Very Small (max 360px) --- */
@media (max-width: 360px) {
    .nav-logo-img { height: 34px; }
    .hero-content h1 { font-size: 1.3rem; }
    .hero-tagline { font-size: 0.65rem; letter-spacing: 0.2em; }
    .form-minimal .form-header h2 { font-size: 1.1rem; }
    .advantage-title { font-size: 1.5rem; }
    .hiw-main-title { font-size: 1.3rem; }
    .acc-header h3 { font-size: 0.85rem; }
}

/* =============================================
   MOBILE FORM SECTION + FINAL FIXES
   ============================================= */

/* Mobile-only form: hidden on desktop */
.mobile-form-section {
    display: none;
}

/* Desktop form: always visible on desktop */
.desktop-form-wrapper {
    display: block;
}

/* Hero must be exactly viewport height on mobile so only heading shows */
@media (max-width: 991px) {
    /* Hero fills exactly one screen — only heading/subheading visible */
    .hero {
        min-height: 100svh;  /* fallback */
        min-height: 100dvh;  /* dynamic viewport height — accounts for browser chrome */
        height: 100dvh;
        display: flex;
        align-items: center;
    }

    /* Hero overlay: Fixed from white screen to subtle dark glass */
    .hero-overlay {
        width: 100%;
        background: rgba(11, 28, 44, 0.3); /* Transparent Navy tint */
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    
    .hero-content h1, 
    .hero-tagline, 
    .hero-subheadline,
    .hero-content h1 span {
        color: var(--white) !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    /* Hero container: only content (no form) on mobile */
    .hero-container {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 20px;
        gap: 0;
    }

    /* Hide the desktop form inside hero on mobile */
    .desktop-form-wrapper {
        display: none !important;
    }

    /* Show the separate mobile form section below hero */
    .mobile-form-section {
        display: block;
        width: 100%;
        background: #f5f5f5;
    }

    /* Mobile form: no padding, full bleed edge to edge */
    .mobile-form-section .hero-form-container {
        border-radius: 0;
        box-shadow: none;
        border: none;
        width: 100%;
    }

    .mobile-form-section .form-minimal {
        padding: 32px 20px 36px;
        width: 100%;
        border-radius: 0;
        border: none;
    }

    /* Hero dots hidden on mobile since hero is full-screen */
    .hero-dots {
        bottom: 24px;
    }
}

@media (max-width: 480px) {
    .mobile-form-section .form-minimal {
        padding: 26px 16px 30px;
    }
    .mobile-form-section .form-minimal .form-header h2 {
        font-size: 1.6rem;
    }
}

/* Ensure no gap between reviews → carousel → advantage on ALL sizes */
.reviews-modern { margin-bottom: 0 !important; }
.brand-carousel-section { margin-top: 0 !important; margin-bottom: 0 !important; }
.advantage-modern { margin-top: 0 !important; }

/* Select arrow colour fix to blue */
.form-minimal select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%231E40AF' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 28px;
    color: #555;
}

/* Form group spacing match screenshot */
.form-minimal .form-group {
    margin-bottom: 24px;
}

/* Submit button exact match to screenshot */
.form-minimal .btn-gold,
.mobile-form-section .btn-gold {
    background-color: #0d1b2e !important;
    color: #fff !important;
    font-weight: 900 !important;
    font-family: var(--font-heading) !important;
    letter-spacing: 0.1em !important;
    font-size: 0.95rem !important;
    padding: 18px !important;
    border-radius: 6px !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    border: none !important;
    margin-top: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-minimal .btn-gold:hover,
.mobile-form-section .btn-gold:hover {
    background-color: #1a2e4a !important;
}
