        /* --- CSS STYLES --- */
        :root {
            --glass-bg: rgba(255, 255, 255, 0.5);
            --primary-dark: #010101;
            --accent-green: #27ae60;
            --accent-gold: #fece3b;
            --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
        }

        body,
        html {
            margin: 0;
            padding: 0;
            min-height: 100%;
            /* This ensures the background color/image covers the full height of the document */
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            overflow-x: hidden;
        }

        /* Fullscreen Background */
        .page-wrapper {
            /* THE DISPLAY RULES */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;

            /* THE INITIAL STATE */
            background-image: url('Assets/Built 2 Big AboutUs_BG.jpeg');

            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Master Header Layout Frame */
        .site-header {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: var(--primary-dark);
            backdrop-filter: blur(5px);
            border-bottom: 3px var(--accent-gold) solid;
            padding: 20px;
            box-sizing: border-box;
            gap: 20px;
            z-index: 10;
        }

        /* Remove the background from .page-wrapper and apply this *************************************/
        .content-view {
            /* NO BACKGROUND RULES HERE */
            display: none;
            width: 100%;
            padding: 20px 20px;
        }

        .active-view {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Line 1 Navigation Bar styling */
        .main-nav {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            /* Aligns horizontally starting left on desktop */
            gap: 20px;
            margin: 0 0 10px 5px;
            /* Aligned safely from the left edge */
            width: 100%;
        }

        .main-nav a {
            color: var(--accent-gold);
            font-weight: bold;
            text-transform: uppercase;
            font-size: 0.95rem;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            padding-bottom: 4px;
            transition: border-color 0.2s ease;
        }

        .main-nav a:hover {
            color: white;
        }

        /* SEO Headings */
        .seo-title {
            color: var(--accent-gold);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        /* Two Column Base Layout */
        .header-columns-container {
            display: flex;
            flex-direction: row;
            /* Desktop side-by-side positioning */
            width: 100%;
            gap: 30px;
            align-items: flex-start;
        }

        /* Column Elements */
        .column-left {
            flex: 0 0 auto;
            /* Keeps the column tight around the explicit width of the image logo */
        }

        .column-left .logo {
            width: 220px;
            height: auto;
            margin-left: 5px;
            display: block;
        }

        .column-right {
            flex: 1;
            /* Takes up all available horizontal workspace left on the page */
            text-align: left;
            /* Left aligns all text items inside */
            color: white;
        }

        .column-right h1 {
            margin: 0 0 10px 0;
            font-size: 1.8rem;
            font-weight: normal;
            color: var(--accent-gold);
            letter-spacing: 2px;
            line-height: 1.3;
        }

        .column-right h2 {
            margin: 0 0 15px 0;
            font-size: 1.4rem;
            font-weight: bold;
            color: white;
            letter-spacing: 1px;
        }

        .column-right .intro-text {
            font-size: 1.1rem;
            letter-spacing: 1.0px;
            line-height: 1.4;
            margin-bottom: 15px;
            max-width: 90%;
        }

        /* Buttons Block Container Positioning */
        .contact-actions {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            /* Horizontal layout left aligned */
            gap: 12px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .profile-link-text {
            font-size: 1rem;
            margin: 0;
        }

        .btn-contact {
            display: inline-flex;
            align-items: center;
            padding: 5px 10px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            border: 2px solid var(--accent-gold);
            min-width: 70px;
            /* Ensures buttons have a consistent feel */
        }

        /* WhatsApp & SMS - Outlined Gold */
        .btn-call,
        .btn-whatsapp,
        .btn-sms {
            background-color: transparent;
            color: var(--accent-gold);
        }

        /* Hover/Tap Effect */
        .btn-call:hover,
        .btn-whatsapp:hover,
        .btn-sms:hover {
            background-color: #333;
        }

        .btn-contact:active {
            transform: scale(0.95);
            background-color: rgba(254, 206, 59, 0.2);
            /* Subtle gold tint on tap */
        }

        .icon {
            margin-right: 6px;
            font-size: 1.2rem;
        }

        /* Full-Width Review Ticker Panel */
        .review-ticker-container {
            width: 100%;
            /* Forces it to occupy full layout width underneath both columns */
            height: 30px;
            background: #fece3b;
            border-radius: 6px;
            overflow: hidden;
            white-space: nowrap;
            display: flex;
            align-items: center;
            border-bottom: 2px solid #000;
            box-sizing: border-box;
        }

        .ticker-content {
            display: flex;
            /*white-space: nowrap;*/
            animation: seamless-loop 160s linear infinite;
        }

        .review-set {
            display: flex;
        }

        .review-set span {
            padding: 0 10px;
            font-family: Arial, sans-serif;
            color: #000;
            font-weight: bold;
            font-size: 16px;
        }

        @keyframes seamless-loop {
            0% {
                transform: translateX(0%);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Main Body & Form */
        main {
            flex: 1;
            display: flex;
            flex-direction: column;
            /* Force items to stack vertically */
            justify-content: flex-start;
            /* Start from the top */
            align-items: center;
            /* Keeps everything centered horizontally */
            padding: 1px 20px;
            gap: 30px;
            /* Adds a nice gap between the form and the info below */
        }

        .service-info-body {
            width: 100%;
            max-width: 600px;
            /* Matches your booking-container width exactly */
            text-align: center;
            color: var(--accent-gold);
            /* Matches the header text color for consistency */
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
            /* Makes text pop against the van background */
        }

        .body-title-img {
            width: 250px;
            height: auto;
            margin-bottom: 15px;
            filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.5));
        }

        .body-list {
            text-align: left;
            display: inline-block;
            list-style-type: disc;
            color: White;
            padding-left: 20px;
            font-size: 1.25rem;
            line-height: 1.6;
        }

        .body-list h6 {
            margin-block-start: 0.1em;
            margin-block-end: 0.1em;
            color: var(--accent-gold);
            font-size: 1.3rem;
            font-weight: 200;
        }

        .booking-container {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 20px;
            width: 100%;
            max-width: 600px;
            box-shadow: var(--shadow);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
        }

        /* Container to hold input and button side-by-side */
        .inline-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
            /* Prevents vertical stretching */
            width: 100%;
        }

        /* Force inputs to maintain standard height */
        .inline-group input {
            flex: 1 1 150px;
            min-width: 0;
            height: 45px;
            /* Explicit height to prevent expansion */
            box-sizing: border-box;
            /* Ensures padding doesn't add to height */
        }

        .inline-group label {
            white-space: nowrap;
            margin-right: 5px;
        }

        /* Ensure the input still looks good */
        #quote-display {
            flex: 1;
            /* Makes input take up remaining space */
            color: var(--accent-green);
            font-weight: bold;
        }

        /* Container for the three inputs */
        .triple-row {
            display: flex;
            flex-wrap: wrap;
            /* Allows stacking on small screens */
            gap: 15px;
            width: 100%;
        }

        /* Individual wrapper for each mini-input */
        .sub-field {
            flex: 1 1 80px;
            /* Grow/Shrink, but wrap if width < 120px */
            display: flex;
            flex-direction: column;
        }

        /* Smaller label for sub-fields */
        .sub-label {
            font-size: 0.85rem;
            color: black;
            margin-bottom: 4px;
            font-weight: 500;
        }

        /* Styling the number inputs specifically */
        input[type="number"] {
            text-align: center;
            padding: 10px;
        }

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

        /* Apply existing input styles to select elements */
        select.booking-input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            background-color: white;
            /* Or match your glass-bg */
            height: 47px;
            /* Matches the height of your address/date inputs */
            appearance: none;
            /* Optional: removes default browser arrow for a cleaner look */
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 1em;
        }

        /* Target all selectors and inputs to keep them uniform ------------------------------------------------------*/
        select,
        input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background-color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-size: 1rem;
            /* 16px prevents the iPhone from "zooming in" when tapped */
            box-sizing: border-box;
            height: 47px;
            /* Fixed height so they align perfectly on the base */
            -webkit-appearance: none;
            /* Removes the default iPhone "bubble" look */
            appearance: none;
        }

        /* Add a custom arrow for the dropdowns since we removed the default one */
        select {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 10px top 50%;
            background-size: 12px auto;
            padding-right: 30px;
        }

        /* Ensure disabled options look "greyed out" in the dropdown list */
        select option:disabled {
            color: #ccc;
            background-color: #f9f9f9;
        }

        /*---------------------------------------------------------------------------------------------------------*/

        select:focus {
            border-color: var(--primary-dark);
            outline: none;
        }

        /* Button specific logic */
        #book-now-btn {
            flex: 0 1 auto;
            /* Don't stretch the button, but let it shrink if needed */
            padding: 12px 35px;
            background-color: var(--primary-dark);
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
            /* Added border for definition */
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.5rem;
            font-weight: 600;
            white-space: nowrap;
        }

        #book-now-btn:hover {
            background-color: #333;
        }

        #book-now-btn:active {
            transform: scale(0.98);
        }

        /* Grid helper classes */
        .full-width {
            grid-column: span 2;
        }

        label {
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #444;
        }

        input {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }

        option {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }


        input:focus {
            border-color: var(--primary-dark);
        }

        input[readonly] {
            background-color: #ddd6d6;
            cursor: not-allowed;
        }

        #map {
            width: 100%;
            height: 300px;
            border-radius: 12px;
            margin-top: 10px;
            border: 1px solid #ddd;
        }

        /* Footer */
        footer {
            background: var(--primary-dark);
            color: var(--accent-gold);
            text-align: center;
            border-top: 3px var(--accent-gold) solid;
            padding: 15px;
            font-size: 0.85rem;
        }

        footer a {
            color: var(--accent-gold);
            text-decoration: underline;
            text-underline-offset: 3px;
            /* Keeps the line from touching the letters */
            transition: opacity 0.2s ease;
        }

        footer a:hover {
            opacity: 0.8;
            /* Subtle feedback when hovering */
        }

        /* Styling for the overall "Vehicle Options" border */

        /* Container for the overall layout */
        .fleet-container {
            max-width: 1500px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            /* Distribute boxes evenly */
            flex-wrap: wrap;
            /* Stack on small screens */
            gap: 20px;
        }

        .main-section {
            margin-bottom: 20px;
        }

        .main-header-first {
            text-align: center;
            color: White;
            text-transform: uppercase;
            font-size: 2.5em;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        /* Styling for each individual vehicle box (1, 2, 3, 4) */
        .vehicle-box {
            background-color: black;
            border: 2px solid #fece3b;
            /* Thin grey border */
            border-radius: 15px;
            padding: 10px;
            width: 250px;
            /* Consistent width */
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            /* Needed for the "Vehicle X" header */
        }

        .summary-box {
            /*background-color: black;*/
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid #fece3b;
            /* Thin grey border */
            border-radius: 15px;
            padding: 10px;
            margin-top: 20px;
            max-width: 1500px;
            /* Consistent width */
            text-align: left;
            font-size: 1.2em;
            font-weight: 100;
            letter-spacing: 2px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            /* Needed for the "Vehicle X" header */
        }

        /* White "Vehicle X" header that sits on the top border */
        .vehicle-header {
            background-color: black;
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            padding: 0 10px;
            text-transform: uppercase;
            color: #333;
            font-weight: bold;
        }

        /* Vehicle Title (e.g., Kia Carnival) */
        .vehicle-title {
            font-size: 1.2em;
            margin-top: 1px;
            margin-bottom: 10px;
            font-weight: bold;
            color: White;
        }

        /* Service description (e.g., Safe, Reliable, Comfortable) */
        .vehicle-service {
            font-size: 0.85em;
            color: White;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        /* Capacity info (Person/Suitcase icons) */
        .capacity-info {
            display: flex;
            justify-content: center;
            gap: 15px;
            font-size: 0.9em;
            color: #fece3b;
        }

        .capacity-item i {
            margin-right: 5px;
        }

        .childSeat-container {
            display: flex;
            /* Activates flexbox layout */
            flex-direction: row;
            /* Forces the vehicle boxes to line up side-by-side */
            flex-wrap: wrap;
            /* Crucial: lets boxes drop to a new line on smaller screens (iPad/iPhone) instead of squishing */
            justify-content: center;
            /* Centers the row of boxes horizontally on the page */
            gap: 20px;
            /* Controls the spacing between your vehicle boxes */
            width: 100%;
            max-width: 1500px;
            /* Optional: prevents the grid from stretching too wide on massive desktop screens */
            margin: 0 auto;
            /* Centers the entire container layout inside the section */
        }

        .sub-header {
            text-align: center;
            color: White;
            text-transform: uppercase;
            font-size: 1.2em;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .childSeat-box {
            background-color: black;
            border: 2px solid #fece3b;
            border-radius: 15px;
            padding: 1px;
            max-width: 400px;
            /* Widened to comfortably fit two columns side-by-side */
            width: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            box-sizing: border-box;
            color: var(--accent-gold);
            /* CHANGE TO SIDE-BY-SIDE LAYOUT */
            display: flex;
            flex-direction: row;
            align-items: center;
            /* Vertically centers the image and text relative to each other */
            gap: 20px;
            /* Puts a clean space between the left photo and right text */
        }

        /* LEFT COLUMN: The Child Seat / Vehicle Image Container */
        .childSeat-box-left {
            flex: 1;
            /* Takes up equal split or matches image size */
            text-align: center;
        }

        .childSeat-box-left img {
            max-width: 100%;
            /* Prevents the image from overflowing its column */
            height: auto;
            border-radius: 4px;
            /* Optional: slightly rounds the image corners */
        }

        /* RIGHT COLUMN: The Text & Description Container */
        .childSeat-box-right {
            flex: 1.2;
            /* Gives slightly more room to the text column than the image */
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            /* Aligns text cleanly to the left inside its column */
            text-align: left;
        }

        .childSeatSummary-box {
            background-color: black;
            border: 2px solid #fece3b;
            /* Thin grey border */
            border-radius: 15px;
            padding: 10px;
            /*margin-top: 20px;*/
            max-width: 1500px;
            /* Consistent width */
            text-align: left;
            font-size: 1.2em;
            font-weight: 100;
            letter-spacing: 2px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            /* Needed for the "Vehicle X" header */
        }

        .childSeatSummary-info {
            display: flex;
            justify-content: left;
            gap: 15px;
            font-size: 0.9em;
            color: #fece3b;
        }



        /* Mobile Adjustments */
        @media (max-width: 600px) {

            .page-wrapper {
                /* On some phones, 'fixed' background-size: cover causes blurriness or scaling bugs.
            We switch to 'scroll' for better performance on mobile. */
                background-attachment: scroll;
                background-position: center top;
                /* Focus on the top/van part of the image */
            }

            .site-header {
                padding: 15px 10px;
                gap: 15px;
            }

            /* Convert row layout to a single vertical stack container */
            .header-columns-container {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .logo {
                /* Removes the 20px desktop margin to ensure true centering */
                margin-left: 0 !important;
                width: 180px;
                /* Slightly smaller for mobile if needed */
                height: auto;
                margin-bottom: 10px;
                /* Adds space between logo and text below */
            }

            /* 2. STACK ORDER: Brand Logo sits directly under the top menu */
            .column-left {
                order: 2;
            }

            .column-left .logo {
                margin-left: 0;
                width: 180px;
                /* Clean mobile profile scale */
            }

            /* 3. STACK ORDER: Vertical text blocks and contact buttons */
            .column-right {
                order: 3;
                text-align: center;
                /* Balanced centered layout text for mobile reading */
            }

            .column-right h1 {
                font-size: 1.3rem;
                letter-spacing: 1px;
            }

            .column-right h2 {
                font-size: 1.1rem;
            }

            .column-right .intro-text {
                font-size: 0.95rem;
                max-width: 100%;
            }

            .contact-actions {
                justify-content: center;
                /* Center-balances action targets for thumb-taps */
            }

            /* 4. STACK ORDER: Ticker tape anchors at the absolute bottom floor */
            .review-ticker-container {
                order: 4;
            }

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

            .full-width {
                grid-column: span 1;
            }

            .inline-group {
                flex-direction: column;
                align-items: stretch;
                /* Stretch width, not height */
            }

            /* Ensure height stays normal on mobile */
            .inline-group input,
            .inline-group label {
                height: auto;
                margin-bottom: 2px;
            }

            #book-now-btn {
                width: 100%;
                height: 50px;
                /* Comfortable tap target for mobile */
            }

            .seo-title {
                font-size: 1.5rem;
            }

            /* Mobile adaptation */
            .fleet-container {
                flex-direction: column;
                /* Stack vertically on small screens */
                align-items: center;
            }

            .childSeat-box {
                flex-direction: column;
                /* Stacks image on top of text on narrow mobile screens */
                align-items: center;
            }

            .childSeat-box-right {
                align-items: center;
                text-align: center;
                /* Re-centers text for better mobile presentation */
            }

            .body-list {
                font-size: 1.0rem;
            }
        }