/* ======================= HOME PAGE STYLES ======================= */

/* -------------------- CSS Variables -------------------- */
:root {
    --primary-blue: #0055aa;
    --secondary-blue: #003366;
    --accent-blue: #4285F4;
    --dark-bg: #1a2536;
    --text-dark: #333;
    --text-light: #555;
    --border-color: #ddd;
    --dark-studio-bg: #050b14;
    --studio-accent-blue: #1d72b8;
    --studio-text-gray: #94a3b8;
    --studio-text-light: #cbd5e1;
    --form-padding-x: 60px;
    --transition-standard: 0.3s ease;
}

/* =====================================================
   METRO DETROIT CAR SERVICE - HOME PAGE STYLES
   Premium Luxury Theme
===================================================== */

/* ================= GLOBAL ================= */
/* -------------------- General Styles -------------------- */
body {
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

/* -------------------- Section Header Style -------------------- */
.section-header {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-block;
    background-color: #f0f0ff;
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(1rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.section-header p {
    font-size: clamp(0.8rem, 2vw, 1.3rem);
    line-height: 1.4;
    color: var(--text-light);
}


/* ==========================================================
   QUICK BOOKING SECTION STYLES
   ========================================================== */

.quick-booking-section {
    background-color: var(--theme-bg-dark, #ffffff);
    padding: 7rem 6rem;
    position: relative;
    z-index: 20;
    /* Elevated z-index so dropdowns don't hide behind other sections */
}

.quick-booking-container {
    max-width: 1350px;
    margin: 0 auto;
}

.quick-booking-card {
    background-color: transparent;
    border: 1px solid var(--theme-border-color, rgba(255, 255, 255, 0.08));
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.quick-booking-header {
    margin-bottom: 2rem;
    text-align: center;
}

.quick-booking-header h3 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(#131212);
    letter-spacing: 1.5px;
    margin: 0 0 0.5rem 0;
}

.quick-booking-header p {
    color: var(--theme-text-muted, #94a3b8);
    font-size: 0.95rem;
    margin: 0;
}

/* Horizontal Form Layout (Updated for 4 inputs + button) */
.quick-booking-form {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

/* Input Wrappers & Icons */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1rem;
    color: #000000;
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
}

/* Form Fields */
.quick-booking-form input {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #000000;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.9rem;
    padding: 1rem 1rem 1rem 2.5rem;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color-scheme: dark;
}

/* Focus States */
.quick-booking-form input:focus {
    border-color: var(--theme-blue-primary, #1d63ed);
    box-shadow: 0 0 0 2px rgba(29, 99, 237, 0.2);
}

.quick-booking-form input::placeholder {
    color: rgba(14, 13, 13, 0.651);
}

/* ==========================================================
   AUTOCOMPLETE SUGGESTIONS DROPDOWN
   ========================================================== */
.autocomplete-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    /* Pushes it just below the input */
    left: 0;
    width: 100%;
    background-color: #0b0f1a;
    /* Dark background */
    border: 1px solid var(--theme-border-color, rgba(255, 255, 255, 0.1));
    border-radius: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 220px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);

    /* Ensure it remains hidden until populated via JS */
    display: none;
}

/* Display block when JS adds items or specific active class */
.autocomplete-suggestions:not(:empty) {
    display: block;
}

.autocomplete-suggestions li {
    padding: 0.85rem 1rem;
    color: var(--theme-text-white, #ffffff);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.autocomplete-suggestions li:last-child {
    border-bottom: none;
}

.autocomplete-suggestions li:hover {
    background-color: rgba(29, 99, 237, 0.15);
    /* Subtle blue tint */
    color: var(--theme-blue-hover, #3b82f6);
}

/* Submit Button */
.btn-quick-book {
    background-color: #555a63;
    color: #f1f1f1;
    border: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 1.05rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    height: 100%;
}

.btn-quick-book:hover {
    background-color: #8a8a8a;
    transform: translateY(-2px);
}

/* ==========================================================
   MOBILE & TABLET RESPONSIVENESS
   ========================================================== */

@media (max-width: 1100px) {
    .quick-booking-form {
        /* Stacks to 2 rows on tablet */
        grid-template-columns: 1fr 1fr;
    }

    .btn-quick-book {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .quick-booking-section {
        padding: 3rem 1.5rem;
    }

    .quick-booking-card {
        padding: 2rem 1.5rem;
    }

    .quick-booking-form {
        /* Fully stacked on mobile */
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   HERO SECTION
========================================================== */

.hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 50px 5% 40px;
    color: #fff;
}



/* Background Image Layer */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Swap this URL for your actual SUV/city background image */
    background-image: url('/images/banner-fleet.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Dark Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Creates a dark fade from left to right so the text pops out */
    background: linear-gradient(90deg, rgba(7, 10, 18, 0.95) 0%, rgba(7, 10, 18, 0.6) 45%, rgba(7, 10, 18, 0.1) 100%);
    z-index: 2;
}

/* Content Container */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.hero-content {
    max-width: 1300px;
    margin-top: 4rem;

    /* Accounts for the fixed header */
}

/* Hero Typography */
.hero-title {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight:600;
    margin: 0 0 1.5rem 0;
}

.hero-content p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: clamp(1rem, 2vw, .8rem);
    margin: 0 0 3.5rem 0;
}

.hero-title .text-accent {
    /* Uses the blue theme variable from your header. 
       If you want the yellow from the image instead, change this to: #facc15 */
    color: var(--theme-blue-primary, #1d63ed);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-title .text-white {
    color: #ffffff;
    display: block;
}

/* Call to Action Links */
.hero-actions {
    display: flex;
    flex-direction: column;
    /* Stacks the links vertically */
    gap: 1.5rem;
    align-items: flex-start;
}

.hero-link {
    color: #ffffff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #ffffff;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.hero-link:hover {
    color: var(--theme-blue-hover, #3b82f6);
    border-color: var(--theme-blue-hover, #3b82f6);
}

/* ==========================================================
   MOBILE RESPONSIVENESS
   ========================================================== */
@media (max-width: 768px) {
    .hero-overlay {
        /* On mobile, darken the whole background slightly to ensure readability */
        background: linear-gradient(180deg, rgba(7, 10, 18, 0.7) 0%, rgba(7, 10, 18, 0.85) 100%);
    }

    .hero-title {
        margin: 0 0 2.5rem 0;
    }

    .hero-link {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
}


/* ==========================================================
   FLEET SECTION STYLES
   ========================================================== */

.fleet-section {
    background-color: var(--theme-bg-dark, #070a12);
    padding: 6rem 2rem;
    color: var(--theme-text-white, #ffffff);
}

.fleet-container {
    max-width: 1350px;
    margin: 0 auto;
}

/* Header Styling */
.fleet-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--theme-text-white, #ffffff);
    letter-spacing: 2px;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}



.section-desc {
    color: var(--theme-text-muted, #94a3b8);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1rem;
}

/* Single Image Showcase Container */
.fleet-showcase-wrapper {
    position: relative;
    width: 100%;
    max-height: 600px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid var(--theme-border-color, rgba(255, 255, 255, 0.1));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.fleet-showcase-img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
}

/* Very subtle hover zoom for luxury feel */
.fleet-showcase-wrapper:hover .fleet-showcase-img {
    transform: scale(1.03);
}


/* Bottom Action Link */
.fleet-footer-action {
    text-align: center;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--theme-text-white, #ffffff);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.4rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.view-all-link:hover {
    color: var(--theme-blue-primary, #1d63ed);
    border-color: var(--theme-blue-primary, #1d63ed);
}

.view-all-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(6px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .fleet-section {
        padding: 4rem 1.5rem;
    }

    .fleet-showcase-img {
        max-height: 350px;
    }
}

/* ==========================================================================
   Minimal Services Section
   ========================================================================== */

.services-minimal {
    background-color: #ffffff;
    /* Clean white background */
    padding: 100px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

/* --- Section Heading --- */
.process-title {
    text-align: center;
    margin-bottom: 70px;
}

.process-title span {
    display: block;
    color: #003366;
    /* Accent color */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.process-title h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #0f172a;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.process-title h2 strong {
    font-weight: 600;
    display: block;
    color: #1d72b8;
    /* Accent color for emphasis */

}

/* --- Responsive Grid --- */
.minimal-grid {
    display: grid;
    /* Automatically creates columns based on screen size */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px 30px;
}

/* --- Individual Service Cards --- */
.minimal-item {
    text-align: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

/* Subtle lift on hover */
.minimal-item:hover {
    transform: translateY(-5px);
}

.minimal-item i {
    font-size: 2.5rem;
    color: #0f172a;
    /* Corporate slate */
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

/* Icon changes to accent color on hover */
.minimal-item:hover i {
    color: #ce9c2b;
}

.minimal-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1d72b8;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.minimal-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
    margin-inline: auto;
}

/* --- Action Links --- */
.minimal-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ce9c2b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

/* Clean animated underline effect on hover */
.minimal-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #0f172a;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.minimal-link:hover {
    color: #0f172a;
}

.minimal-link:hover::after {
    width: 100%;
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    .services-minimal {
        padding: 60px 20px;
    }

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

    .minimal-grid {
        gap: 40px;
    }
}

/* ==========================================================
   MINIMAL SERVICE COVERAGE STYLES
   ========================================================== */

.coverage-section {
    background-color: #0a0d16;
    padding: 8rem 2rem;
    /* Increased top/bottom padding for better breathing room */
    color: var(--theme-text-white, #ffffff);
    border-top: 1px solid var(--theme-border-color, rgba(255, 255, 255, 0.05));
    overflow: hidden;
}

.coverage-container {
    max-width: 1250px;
    /* Slightly tighter max-width for a focused layout */
    margin: 0 auto;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Map takes up slightly more space */
    gap: 6rem;
    align-items: center;
}

/* --- Left Side: Content --- */
.coverage-content {
    display: flex;
    flex-direction: column;
}

.coverage-content .section-title {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 1.5px;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.coverage-content .text-accent {
    color: var(--theme-blue-primary, #1d63ed);
}

.coverage-content .section-desc {
    color: var(--theme-text-muted, #94a3b8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
}

/* Minimal List */
.minimal-location-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.minimal-location-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--theme-text-white, #ffffff);
    font-weight: 500;
}

.minimal-location-list i {
    color: var(--theme-blue-primary, #1d63ed);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Action Link */
.coverage-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--theme-text-white, #ffffff);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid var(--theme-blue-primary, #1d63ed);
    padding-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.coverage-link:hover {
    color: var(--theme-blue-primary, #1d63ed);
}

.coverage-link i {
    transition: transform 0.3s ease;
}

.coverage-link:hover i {
    transform: translateX(5px);
}

/* --- Right Side: Map Image --- */
.coverage-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.coverage-map {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Optional: Slightly dim the map so it isn't too bright against the dark theme */
    opacity: 0.85;
    transition: opacity 0.5s ease;
}

.coverage-image-wrapper:hover .coverage-map {
    opacity: 1;
}

/* Gradient fade to blend the square image edges into the background */
.map-fade-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(10, 13, 22, 0) 40%, rgba(10, 13, 22, 1) 100%);
    pointer-events: none;
}

/* ==========================================================
   MOBILE & TABLET RESPONSIVENESS
   ========================================================== */

@media (max-width: 1024px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .coverage-content {
        align-items: center;
    }

    .minimal-location-list {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .coverage-section {
        padding: 5rem 1.5rem;
    }

    .coverage-content .section-desc {
        font-size: 1rem;
    }

    .minimal-location-list li {
        font-size: 0.95rem;
    }
}

/* ==========================================================
   STAGGERED SERVICES SECTION STYLES
   ========================================================== */

.staggered-services-section {
    background-color: var(--theme-bg-dark, #070a12);
    padding: 8rem 2rem;
    color: var(--theme-text-white, #ffffff);
}

.staggered-services-container {
    max-width: 1200px;
    /* Slightly narrower to keep the columns tight */
    margin: 0 auto;
}

/* Header Styling */
.staggered-services-section .section-title {
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5rem;
    color: var(--theme-text-white, #ffffff);
}

/* Three Column Grid Layout */
.staggered-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Base Column Styles (Vertical Left Border) */
.services-column {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    /* Spacing between items vertically */
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Staggering the Columns to match the mockup */
.services-column.col-1 {
    margin-top: 0;
}

.services-column.col-2 {
    margin-top: 5rem;
}

.services-column.col-3 {
    margin-top: 10rem;
}

/* Service Link Items */
.service-item {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--theme-text-muted, #94a3b8);
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

/* Hover Effects */
.service-item:hover {
    color: var(--theme-blue-primary, #1d63ed);
    transform: translateX(8px);
    /* Subtle slide to the right */
}

/* ==========================================================
   MOBILE & TABLET RESPONSIVENESS
   ========================================================== */

@media (max-width: 1024px) {
    .staggered-services-grid {
        gap: 1.5rem;
    }

    .services-column {
        padding-left: 1.5rem;
    }

    .service-item {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .staggered-services-section {
        padding: 5rem 1.5rem;
    }

    .staggered-services-section .section-title {
        margin-bottom: 3rem;
    }

    .staggered-services-grid {
        grid-template-columns: 1fr;
        /* Stack columns on mobile */
        gap: 0;
    }

    /* Reset the staggering on mobile so they stack normally */
    .services-column.col-1,
    .services-column.col-2,
    .services-column.col-3 {
        margin-top: 0;
        border-left: 2px solid var(--theme-blue-primary, #1d63ed);
        padding-left: 1.5rem;
        gap: 2.5rem;
        padding-top: 0;
        padding-bottom: 2.5rem;
    }

    /* Remove bottom padding from the last column */
    .services-column.col-3 {
        padding-bottom: 0;
    }
}

/* ==========================================================
   EXPANDING SCROLL BANNER STYLES
   ========================================================== */

.animated-banner-wrapper {
    /* Increased to 300vh to allow room to expand, pause to read, and retract */
    height: 300vh;
    position: relative;
    background-color: var(--theme-bg-dark, #070a12);
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.expand-box {
    position: relative;
    width: 60vw;
    height: 60vh;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    will-change: width, height, border-radius;
}

.expand-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 10, 18, 0.9) 0%, rgba(7, 10, 18, 0.6) 100%);
    z-index: 2;
}

.cta-banner-content {
    position: relative;
    z-index: 3;
    padding: 2rem;
    max-width: 900px;
    color: var(--theme-text-white, #ffffff);
    /* Optimizes text scaling performance */
    will-change: transform;
}

/* Typography & Buttons remain exactly the same */
.cta-banner-title {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
}

.cta-banner-title .text-accent {
    color: var(--theme-blue-primary, #1d63ed);
}

.cta-banner-desc {
    color: var(--theme-text-muted, #94a3b8);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 auto 3rem auto;
}

.cta-banner-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-primary,
.btn-secondary {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--theme-blue-primary, #1d63ed);
    color: #ffffff;
    border: 1px solid var(--theme-blue-primary, #1d63ed);
}

.btn-primary:hover {
    background-color: var(--theme-blue-hover, #3b82f6);
    border-color: var(--theme-blue-hover, #3b82f6);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

@media (max-width: 768px) {
    .expand-box {
        width: 85vw;
        height: 70vh;
    }

    .cta-banner-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ==========================================================
   SINGLE TESTIMONIAL SECTION STYLES
   ========================================================== */

.single-testimonial-section {
    position: relative;
    padding: 8rem 2rem;

    /* Swap this URL with your preferred image of a luxury car interior or city lights */
    background-image: url('https://i.pinimg.com/1200x/0f/37/ba/0f37baa1519867bd3db7717177428e05.jpg?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Creates the parallax scroll effect */

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Overlay for text contrast */
.testimonial-bg-overlay {
    position: absolute;
    inset: 0;
    /* Fades from very dark at the top/bottom to slightly lighter in the middle */
    background: linear-gradient(180deg,
            rgba(7, 10, 18, 0.95) 0%,
            rgba(7, 10, 18, 0.75) 50%,
            rgba(7, 10, 18, 0.95) 100%);
    z-index: 1;
}

/* Content Container */
.testimonial-content-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Large Floating Quote Icon */
.quote-icon {
    font-size: 3rem;
    color: var(--theme-blue-primary, #1d63ed);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* The Quote Text */
.testimonial-quote {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 3rem 0;
    color: var(--theme-text-white, #ffffff);
}

/* Author Details */
.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.author-name {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--theme-blue-primary, #1d63ed);
}

.author-title {
    font-size: 0.9rem;
    color: var(--theme-text-muted, #94a3b8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .single-testimonial-section {
        padding: 5rem 1.5rem;
        /* Disable fixed background on mobile for better scrolling performance */
        background-attachment: scroll;
    }

    .quote-icon {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
}



/* --- Flatpickr Luxury Theme Overrides --- */
.flatpickr-calendar {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    background: #ffffff !important;
    border: 1px solid var(--border-color, #e2e8f0) !important;
    border-radius: var(--radius-md, 10px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
    padding: 10px;
}

.flatpickr-months .flatpickr-month {
    background: transparent !important;
    color: var(--text-main, #1a1a1a) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700 !important;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
    background: transparent !important;
}

span.flatpickr-weekday {
    color: var(--text-muted, #666666) !important;
    font-weight: 600 !important;
}

.flatpickr-day {
    color: var(--text-main, #1a1a1a) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.flatpickr-day:hover {
    background: #fbf9f4 !important;
    /* Cream background hover */
    border-color: transparent !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--accent-blue, #0046be) !important;
    border-color: var(--accent-blue, #0046be) !important;
    color: #fff !important;
    font-weight: 600;
}

/* Hide native calendar icons */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
    opacity: 0;
}