/* --- Global Style Variables & Dynamic Contrast Tokens --- */
:root {
    --primary-color: #2563EB;      /* Sapphire Blue Accent */
    --primary-dark: #1D4ED8;
    --secondary-color: #0F172A;   /* Deep Obsidian Slate */
    --accent-color: #F59E0B;      /* Warm Amber for high-intent alerts */
    --bg-dark-pane: #1E293B;      /* Mid-depth Slate for section contrasts */
    --accent-bg: #F1F5F9;         /* Rich Ice Slate text backing */
    --text-main: #334155;         
    --text-muted: #64748B;
    --border-color: #CBD5E1;
    --card-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --radius-main: 16px;
    --font-stack: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    background-color: #FFFFFF;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* --- Responsive Navigation System Matrix --- */
.utility-bar {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.utility-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

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

.brand-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-decoration: none;
    z-index: 1001;
}

.brand-logo span { color: var(--primary-color); }

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
/* Custom sizing and high-contrast typography override for the navbar button */
.nav-action-btn {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    margin-left: 20px;
    color: #FFFFFF !important; /* Forces the text to remain clean white */
    text-decoration: none;
}

/* Ensures the text stays white when the user hovers over the button */
.nav-action-btn:hover {
    color: #FFFFFF !important;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color); /* Changes hover/active links to the deep dark slate color */
    font-weight: 700;              /* Optional: adds a slight weight boost on hover for extra clarity */
}

/* Menu Toggle Elements for Mobile Integration */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: transparent;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero & Built-in Dynamic Slider --- */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* --- CSS Automated Auto-Slider Engine --- */
.slider-frame {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-main);
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
    border: 4px solid #FFFFFF;
}

.slider-track {
    display: flex;
    width: 500%;
    height: 100%;
    animation: autoSlideImage 20s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

.slide-unit {
    width: 20%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
    color: #FFFFFF;
    padding: 24px;
    font-weight: 600;
}

@keyframes autoSlideImage {
    0%, 16% { transform: translateX(0%); }
    20%, 36% { transform: translateX(-20%); }
    40%, 56% { transform: translateX(-40%); }
    60%, 76% { transform: translateX(-60%); }
    80%, 96% { transform: translateX(-80%); }
    100% { transform: translateX(0%); }
}

/* --- Multi-Item Step Grid Matrix --- */
.features {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.steps-linear-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    padding: 32px;
    border-radius: var(--radius-main);
    background-color: var(--accent-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background-color: #FFFFFF;
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

/* --- Extended Fleet Deck Section --- */
.fleet-section {
    padding: 100px 0;
    background-color: var(--accent-bg);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.fleet-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-main);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.fleet-card:hover { transform: translateY(-6px); }
.fleet-img-holder { height: 220px; background-color: #94A3B8; }
.fleet-info { padding: 32px; }

.fleet-specs {
    display: flex;
    gap: 16px;
    margin: 16px 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* --- Section Global Headers --- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px auto;
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

/* --- Eligibility Checklist Section --- */
.eligibility-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1E293B 100%);
    color: #FFFFFF;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

/* --- Contact & Floating Lead Framework --- */
.contact-section {
    padding: 100px 0;
    background-color: #0F172A;
    color: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-form-holder {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: var(--radius-main);
    color: var(--text-main);
}

.booking-form .form-group { margin-bottom: 20px; }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    outline: none;
    font-family: var(--font-stack);
}

.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
    border-color: var(--primary-color);
}

/* --- Button Mechanics --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-main);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary { background-color: var(--primary-color); color: #FFFFFF; }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary { background-color: var(--secondary-color); color: #FFFFFF; }
.btn-secondary:hover { background-color: #1e293b; transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid var(--border-color); color: var(--secondary-color); }
.btn-block { width: 100%; }

/* --- Footer Elements --- */
.main-footer {
    background-color: #070A13;
    color: #FFFFFF;
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #94A3B8; text-decoration: none; transition: var(--transition-smooth); }
.footer-links a:hover { color: #FFFFFF; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 24px 0; color: #64748B; }

/* --- Responsive Media Strategy --- */
@media (max-width: 968px) {
    .menu-toggle { display: flex; }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: -24px;
        right: -24px;
        background-color: #FFFFFF;
        padding: 32px;
        border-bottom: 2px solid var(--border-color);
        box-shadow: var(--card-shadow);
        gap: 24px;
        z-index: 999;
    }
    
    /* Pure CSS checkbox hack activation state alternative or direct visual engine toggle state */
    .nav-open .nav-links {
        display: flex;
    }

    .hero-grid, .steps-linear-row, .eligibility-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-content h1 { font-size: 2.5rem; }
    .slider-frame { height: 300px; }
}
/* --- Floating WhatsApp Engine Setup --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Authentic WhatsApp Brand Green */
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 9999; /* Forces the icon above standard header frameworks */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid #FFFFFF;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* Micro-Interaction Animation Effects */
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.06);
    background-color: #20ba59;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* Responsive adjustment for small mobile breakpoints */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
}
/* --- Controlled Horizontal 3-Frame Row Alignment --- */
.triple-frame-grid {
    display: grid;
    /* Forces exactly 3 equal-width columns side-by-side */
    grid-template-columns: repeat(3, 1fr); 
    gap: 28px;
    width: 100%;
    box-sizing: border-box;
}

.car-frame-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-main);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    /* Guarantees frames never stretch vertically out of proportion */
    display: flex;
    flex-direction: column;
}

.car-frame-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 30px rgba(15, 23, 42, 0.08);
}

/* --- Responsive Layout Breaks for Smaller Displays --- */
@media (max-width: 992px) {
    .triple-frame-grid {
        /* Drop to 2 columns side-by-side on medium screens/tablets */
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .triple-frame-grid {
        /* Stack vertically into a single column only on true mobile devices */
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
/* --- 70% Layout Ratio Frame Engine Styling --- */
.fleet-showcase-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--accent-bg) 100%);
}

.triple-frame-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 32px;
    width: 100%;
}

.car-frame-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-main);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 480px; /* Constrains the uniform card matrix framework */
}

.car-frame-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 40px rgba(15, 23, 42, 0.08);
}

/* 70% Space Allocation Strategy for Images */
.mini-slider-box {
    width: 100%;
    height: 70%; /* Locks the image viewport size to exactly 70% of the entire card height */
    overflow: hidden;
    position: relative;
    background-color: #F8FAFC;
}

.mini-slider-track {
    display: flex;
    width: 300%;
    height: 100%;
}

.mini-slide {
    width: 33.333%;
    height: 100%;
    background-size: contain; /* Ensures complete car profile vector details remain visible */
    background-repeat: no-repeat;
    background-position: center;
}

.frame-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--secondary-color);
    color: #FFFFFF;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

/* 30% Space Allocation Strategy for Details */
.car-frame-body {
    width: 100%;
    height: 30%;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-color);
}

.car-frame-body h3 {
    font-size: 1.15rem;
    color: var(--secondary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pricing-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background-color: var(--accent-bg);
    padding: 10px 14px;
    border-radius: 10px;
}

.price-block {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-value small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Styled Alternative to Standard Blocky Buttons */
.view-more-link {
    display: inline-block;
    text-align: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding-top: 4px;
    transition: var(--transition-smooth);
}

.view-more-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* --- Automated Carousel Sliding Logic Loops --- */
@keyframes multiCarSlide {
    0%, 25% { transform: translateX(0%); }
    33%, 58% { transform: translateX(-33.333%); }
    66%, 92% { transform: translateX(-66.666%); }
    100% { transform: translateX(0%); }
}

.track-alpha { animation: multiCarSlide 9s infinite ease-in-out; }
.track-beta { animation: multiCarSlide 9s infinite ease-in-out 1.5s; }
.track-gamma { animation: multiCarSlide 9s infinite ease-in-out 3s; }

/* Responsive break structures for smaller tablet Viewports */
@media (max-width: 992px) {
    .triple-frame-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .car-frame-card {
        height: 450px;
    }
}
/* --- Eligibility & Rules Row Integration --- */
.eligibility-rules-section {
    padding: 90px 0;
    background-color: #FFFFFF;
}

.eligibility-row-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

/* Width Allocation Framework */
.eligibility-content-block {
    flex: 0 0 62%; /* Content takes up ~62% width */
}

.insurance-shield-pane {
    flex: 0 0 38%; /* Card takes up ~38% width */
}

.section-intro-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
    margin-top: 12px;
}

/* Checkmark Matrix Rules */
.rules-checkmark-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkmark-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
}

.checkmark-item p {
    font-size: 1rem;
    color: var(--text-main);
    margin: 0;
}

/* Deep Obsidian/Dark Slate Protection Card */
.dark-shield-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1E293B 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-main);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.dark-shield-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 40px -10px rgba(15, 23, 42, 0.3);
}

.shield-icon-badge {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.dark-shield-card h3 {
    color: #FFFFFF;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.dark-shield-card p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Adaptability Breakpoints --- */
@media (max-width: 968px) {
    .eligibility-row-layout {
        flex-direction: column; /* Stacks column components neatly for mobile users */
        gap: 40px;
    }
    
    .eligibility-content-block, 
    .insurance-shield-pane {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .dark-shield-card {
        padding: 32px 24px;
    }
}
/* --- Dual Slider Hero Architecture (Ambient Background + Foreground Frame) --- */
.ambient-hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: #F1F5F9; /* Default base canvas color */
}

/* Background Slide Track Container */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Faint background slide parameters */
.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    filter: grayscale(15%) contrast(90%) brightness(95%);
    animation: crossFadeImages 24s infinite ease-in-out;
}

/* Semi-transparent protective layer mask for text visibility */
.hero-bg-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Swaps the light mask for an elegant dark obsidian tint layer */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 41, 59, 0.65) 100%);
    z-index: 2;
}

/* Forces structural columns safely above the background slider */
.hero-ambient-container {
    position: relative;
    z-index: 5;
}

/* --- Staggered Delay Configurations for Background Crossfade --- */
.hero-bg-slide:nth-child(1) { animation-delay: 0s; }
.hero-bg-slide:nth-child(2) { animation-delay: 6s; }
.hero-bg-slide:nth-child(3) { animation-delay: 12s; }
.hero-bg-slide:nth-child(4) { animation-delay: 18s; }

@keyframes crossFadeImages {
    0% { opacity: 0; }
    8% { opacity: 1.95; }  /* Keeps the car image strong and clearly visible */
    25% { opacity: 1.95; }
    33% { opacity: 0; }
    100% { opacity: 0; }
}

/* Mobile viewport adjustments */
@media (max-width: 968px) {
    .ambient-hero {
        padding: 60px 0;
    }
    .hero-bg-slider::after {
        background: rgba(241, 245, 249, 0.96); /* Extra opacity mask for reading clarity on mobile */
    }
}
/* Makes hero heading and description text stand out crisp and clean on the dark background */
.hero-content h1 {
    color: #FFFFFF !important;
}

.hero-content p {
    color: #E2E8F0 !important; /* Soft white/light gray body copy */
}
/* --- Combined Logo Image & Text Brand Layout --- */
.logo-combined-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 14px; /* Crisp structural gap between the logo mark and title text */
    text-decoration: none;
    z-index: 1001;
}

.header-logo-asset {
    height: 44px;        /* Restricts logo mark height neatly inline with text */
    width: auto;         
    object-fit: contain; 
    transition: var(--transition-smooth);
}

.logo-brand-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary-color); /* The dark obsidian shade */
    letter-spacing: -0.02em;
    white-space: nowrap; /* Prevents text splitting onto two rows */
    transition: var(--transition-smooth);
}

/* Accent split for the secondary text word */
.logo-brand-text span {
    color: var(--text-muted);
    font-weight: 600;
}

/* Micro-interaction hover effect on the entire identity layout */
.logo-combined-wrapper:hover .header-logo-asset {
    transform: scale(1.04);
}

.logo-combined-wrapper:hover .logo-brand-text {
    color: var(--primary-color);
}

/* Mobile responsive constraints */
@media (max-width: 768px) {
    .logo-combined-wrapper {
        gap: 10px;
    }
    .header-logo-asset {
        height: 36px; /* Scales down smoothly for smaller mobile viewports */
    }
    .logo-brand-text {
        font-size: 1.15rem; /* Marginally downsized text footprint for mobile display space */
    }
}
/* --- Screenshot Mapped Contact Section Styles --- */
.custom-contact-block-section {
    padding: 80px 0;
    background-color: var(--accent-bg); /* Rich Ice Slate backing */
}

/* White Floating Base Container Matrix */
.visual-contact-card {
    background-color: #FFFFFF;
    border-radius: var(--radius-main);
    padding: 60px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

/* Centered Layout Header */
.contact-centered-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.centered-subtitle-line {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Decorative horizontal bars flanking header subtitle */
.centered-subtitle-line::before,
.centered-subtitle-line::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background-color: var(--secondary-color);
}

.contact-centered-header h2 {
    font-size: 2.5rem;
    margin-top: 12px;
    color: var(--secondary-color);
}

/* Column Grid Distribution */
.contact-image-grid-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

/* Left Metadata Column Styling */
.contact-vertical-meta-pane {
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: center;
    padding-top: 20px;
}

.meta-vertical-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meta-icon-wrapper {
    font-size: 2.25rem;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.meta-vertical-card h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.meta-vertical-card p {
    color: var(--text-main);
    font-weight: 600;
    max-width: 280px;
    font-size: 0.95rem;
}

.meta-highlight-text {
    color: var(--secondary-color) !important;
    font-size: 1.05rem !important;
}

/* Small visual separator line under left items matching the image */
.meta-horizontal-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color); /* Matches theme accent highlight token */
    margin-top: 20px;
    border-radius: 2px;
}

/* Right Form Panel Column Styling */
.contact-form-side-pane h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.image-mapped-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.input-labeled-group input,
.input-labeled-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-stack);
    font-size: 0.95rem;
    background-color: #FFFFFF;
    outline: none;
    transition: var(--transition-smooth);
    color: var(--secondary-color);
}

.input-labeled-group input:focus,
.input-labeled-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.05);
}

/* Full Width Button Formatting match */
.submit-whatsapp-action {
    background-color: var(--secondary-color) !important;
    color: #FFFFFF !important;
    padding: 16px !important;
    font-size: 1.05rem !important;
    border-radius: 8px !important;
    border: none;
}

.submit-whatsapp-action:hover {
    background-color: #1E293B !important;
    transform: translateY(-2px);
}

/* --- Responsive Formatting Breakpoints --- */
@media (max-width: 968px) {
    .visual-contact-card {
        padding: 32px 20px;
    }
    .contact-image-grid-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .form-dual-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-vertical-meta-pane {
        padding-top: 0;
    }
}/* --- High-Contrast Integrated Footer Layout Matrix --- */
.main-footer {
    background-color: #070A13;
    color: #FFFFFF;
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Redefined 3-column asymmetric layout to fit the map gracefully */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.1fr;
    gap: 48px;
    padding-bottom: 48px;
    align-items: start;
}

.footer-brand-map-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand-description {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.6;
    max-width: 400px;
}

/* Fluid Embedded Map Container */
.footer-embedded-map-container {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-main);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--card-shadow);
    margin-top: 10px;
}

.footer-embedded-map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Contact List Layout */
.footer-contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.95rem;
    color: #94A3B8;
    margin-bottom: 24px;
}

.footer-contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Screenshot Flanked Social Media Strip styling */
.footer-social-media-channels {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-social-media-channels a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-media-channels a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

/* Minimal SEO Cluster Base Row Styling */
.footer-seo-keyword-matrix {
    background-color: #04060C;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.8rem;
    color: #475569;
}

.text-center-seo {
    text-align: center;
    line-height: 1.5;
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand-description {
        max-width: 100%;
    }
    .footer-embedded-map-container {
        height: 220px;
    }
}
/* --- Social Media Channels Layout --- */
.footer-social-media-channels {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.footer-social-media-channels a {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Gap between the icon and text */
    color: #94A3B8; /* Muted starting color */
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

/* Sizing constraints for the embedded SVGs */
.social-svg-logo {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor; /* Matches the text hover color dynamically */
    transition: transform 0.3s ease;
}

/* --- Brand Specific Hover Interactions --- */
.footer-social-media-channels a:hover {
    transform: translateY(-2px);
    color: #FFFFFF; /* Makes text pop to crisp white on hover */
}

/* Dynamic color branding pops on hover */
.footer-social-media-channels a:hover:nth-child(1) {
    background-color: rgba(37, 211, 102, 0.15); /* WhatsApp Green Glow */
    border-color: #25D366;
}

.footer-social-media-channels a:hover:nth-child(2) {
    background-color: rgba(24, 119, 242, 0.15); /* Facebook Blue Glow */
    border-color: #1877F2;
}

.footer-social-media-channels a:hover:nth-child(3) {
    background-color: rgba(225, 48, 108, 0.15); /* Instagram Pink Glow */
    border-color: #E1306C;
}

/* Rotates the SVG icon slightly on hover to give a playful touch */
.footer-social-media-channels a:hover .social-svg-logo {
    transform: scale(1.15) rotate(5deg);
}
/* --- Universal Mobile Hero Contrast Correction --- */
@media (max-width: 768px) {
    /* Target the main hero container aggressively */
    section.hero, 
    .hero, 
    .hero-bg-slider,
    [class*="hero"] {
        background-color: #0c101b !important; /* Premium dark background fallback */
        background-image: linear-gradient(rgba(12, 16, 27, 0.88), rgba(12, 16, 27, 0.92)), var(--hero-bg-img, url('images/hero-car.jpg')) !important;
        background-blend-mode: overlay !important;
        padding: 50px 16px 40px 16px !important;
        height: auto !important;
        min-height: unset !important;
    }

    /* Force the content container inside the hero to stand out */
    .hero-content, 
    [class*="hero-content"],
    .hero .container {
        position: relative !important;
        z-index: 10 !important;
    }

    /* Force the text elements to be purely visible */
    .hero h1, [class*="hero"] h1,
    .hero h2, [class*="hero"] h2 {
        color: #FFFFFF !important;
        font-size: 1.85rem !important;
        line-height: 1.3 !important;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
    }

    .hero p, [class*="hero"] p {
        color: #E2E8F0 !important; /* High contrast off-white */
        font-size: 0.95rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
    }

    /* Stack buttons beautifully for mobile thumbs */
    .hero .btn-group, 
    [class*="hero"] [class*="btn"],
    .hero-content div {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .hero .btn, [class*="hero"] .btn {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}
/* --- New Premium Split Hero Banner Section --- */
.about-premium-hero-banner {
    background: linear-gradient(135deg, #070A13 0%, #0F172A 100%);
    padding: 100px 0 80px 0;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.about-hero-text-pane h1 {
    font-size: 2.85rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.25;
    margin: 18px 0;
    letter-spacing: -0.02em;
}

.about-hero-text-pane p {
    color: #94A3B8;
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 32px;
}

.about-hero-cta-inline {
    display: flex;
    align-items: center;
    gap: 24px;
}

.about-hero-link-btn {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.about-hero-link-btn:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.about-hero-image-frame {
    width: 100%;
    height: 360px;
    border-radius: var(--radius-main);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Expanded Zig-Zag Core Values System --- */
.zigzag-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 100px;
}

.zigzag-row:last-child {
    margin-bottom: 0;
}

.zigzag-reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.zigzag-reverse .zigzag-content-pane {
    grid-column: 2;
}

.zigzag-reverse .zigzag-image-pane {
    grid-column: 1;
}

.zigzag-content-pane h3 {
    font-size: 2.1rem;
    color: var(--secondary-color);
    margin: 12px 0 20px 0;
    font-weight: 700;
    line-height: 1.3;
}

.zigzag-content-pane p {
    color: var(--text-main);
    line-height: 1.7;
    font-size: 1.02rem;
}

.zigzag-image-pane {
    width: 100%;
    height: 340px;
    border-radius: var(--radius-main);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.zigzag-img-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zigzag-row:hover .zigzag-img-asset {
    transform: scale(1.03);
}

/* --- Unmatched Autonomy Comparison Matrix System --- */
.comparison-grid-system {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: #FFFFFF;
    border-radius: var(--radius-main);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.premium-solution-card {
    border-top: 4px solid #10B981;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.comparison-header h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-list li {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    position: relative;
    padding-left: 14px;
}

.comparison-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.premium-solution-card .comparison-list li::before {
    color: #10B981;
}

/* --- Mobile Responsive Blueprint Overrides --- */
@media (max-width: 968px) {
    .about-hero-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .about-hero-text-pane h1 {
        font-size: 2.1rem;
    }
    
    .about-hero-cta-inline {
        flex-direction: column;
        gap: 16px;
    }
    
    .about-hero-cta-inline .btn {
        width: 100%;
        justify-content: center;
    }

    .about-hero-image-frame {
        height: 250px;
    }

    .zigzag-row, .zigzag-reverse {
        grid-template-columns: 1fr !important;
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .zigzag-reverse {
        display: flex;
        flex-direction: column;
    }
    
    .zigzag-reverse .zigzag-content-pane,
    .zigzag-reverse .zigzag-image-pane {
        grid-column: unset !important;
    }

    .zigzag-content-pane h3 {
        font-size: 1.6rem;
    }

    .zigzag-image-pane {
        height: 240px;
    }

    .comparison-grid-system {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
/* --- Premium 2x2 Hero Workflow Matrix Styles --- */
.about-workflow-2x2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.workflow-grid-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-main);
    padding: 24px;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

/* Floating index tag context */
.workflow-badge-step {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-light);
    opacity: 0.6;
    letter-spacing: 0.05em;
}

.workflow-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.workflow-icon-box i {
    font-size: 1.25rem;
    color: #FFFFFF;
}

.workflow-grid-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.workflow-grid-card p {
    font-size: 0.85rem;
    color: #94A3B8 !important; /* Soft muted gray alignment override */
    line-height: 1.5;
    margin: 0 !important;
}

/* Subtle Micro-interactions */
.workflow-grid-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.workflow-grid-card:hover .workflow-icon-box {
    background: var(--primary-color);
    border-color: var(--primary-light);
}

/* --- Responsive Layout Breakdown --- */
@media (max-width: 576px) {
    .about-workflow-2x2-grid {
        grid-template-columns: 1fr; /* Stacks to 1 column on extra small smart displays */
        gap: 16px;
    }
    .workflow-grid-card {
        padding: 20px;
    }
}
/* Compact Premium Dark Theme WhatsApp Booking Button */
.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px !important;    /* Reduced padding to shrink the overall size */
    font-size: 0.85rem !important;     /* Slightly scaled-down font metric */
    font-weight: 600;
    color: #E2E8F0 !important;         /* Off-white text to match your premium system colors */
    background-color: #0c101b !important; /* Matches your premium dark theme baseline background */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

/* Hover Dynamic State */
.footer-wa-btn:hover {
    color: #25D366 !important;         /* Pops into brand green text on hover */
    background-color: rgba(37, 211, 102, 0.05) !important; /* Ultra-subtle tint accent glow background */
    border-color: #25D366 !important;  /* Border glows bright green */
    transform: translateY(-1px);
}

.footer-wa-btn i {
    font-size: 1rem;
}
/* --- Core Form Organization & Alignment Matrix --- */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Safe, consistent space between each input row block */
    width: 100%;
}

.form-dual-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creates two perfectly even side-by-side columns */
    gap: 20px;
}

.input-labeled-group {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Micro-gap that locks the label right on top of its input box */
    text-align: left;
}

.input-labeled-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #94A3B8; /* Muted gray text for modern styling */
}

/* Ensure global style definitions capture textareas cleanly */
.input-labeled-group input,
.input-labeled-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-main, 6px);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    background-color: rgba(255, 255, 255, 0.02);
    color: #FFFFFF;
    font-family: inherit;
    transition: var(--transition-smooth, 0.25s ease);
}

.form-action-row {
    margin-top: 8px;
}

.submit-whatsapp-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

/* --- Mobile View Breakdown Fix --- */
@media (max-width: 768px) {
    .form-dual-row {
        grid-template-columns: 1fr; /* Automatically stacks the Name and Email columns vertically on mobile */
        gap: 20px;
    }
}
/* Force absolute black text visibility inside the contact form elements */
.booking-form input,
.booking-form textarea,
.input-labeled-group textarea,
#wa-message {
    color: #000000 !important;              /* Forces the user's typed text to be solid black */
    background-color: #FFFFFF !important;    /* Forces a clean white background for contrast */
    border: 1px solid #CBD5E1 !important;    /* Clean, subtle gray border outline */
}

/* Style the placeholder text to be a legible muted gray */
.booking-form textarea::placeholder,
.booking-form input::placeholder {
    color: #94A3B8 !important;              /* Crisp slate gray placeholder text */
    opacity: 1 !important;
}