/* ----------------------------------------------------------------- */
/* NYC BLACK CARZ: FULL GLOBAL STYLESHEET (styles.css) 
/* Theme: Black & Gold Executive | Focus: Mobile-First & Pro UI 
/* ----------------------------------------------------------------- */

/* --- Global Variables --- */
:root {
    --color-black: #000000;
    --color-primary-dark: #0A0A0A; /* Slightly off-black for contrast */
    --color-gold: #FFD700;       /* Standard Gold */
    --color-gold-hover: #E6C500;      /* Darker gold for hover states */
    --color-gold-glow: rgba(255, 215, 0, 0.4); /* Used for shadows/glows */
    --color-white: #FFFFFF;
    --color-text-light: #CCCCCC;
    --color-gray-dark: #333333;
    --font-heading: 'Playfair Display', serif; /* For H1/H2 */
    --font-body: 'Poppins', sans-serif; /* For general text */
}

/* --- Base Reset & Typography --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    background-color: var(--color-black);
    color: var(--color-text-light);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.section-padding {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    color: var(--color-white);
    font-weight: 700;
}
h1 { font-family: var(--font-heading); }

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-gold-hover);
}

.gold-text { color: var(--color-gold); }
.text-center { text-align: center; }
.dark-bg { background: #080808; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.section-title { margin-bottom: 50px; }

/* GOLD LINE SPACING FIX KEPT */
.gold-line { width: 60px; height: 3px; background: var(--color-gold); margin: 10px auto 25px auto; }
.img-responsive { width: 100%; height: auto; border-radius: 8px; }

/* --- Utility Grids --- */
.grid-4-col { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px;
    text-align: center;
}
.grid-2-col { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
}
.grid-3-col { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}


/* ----------------------------------------------------------------- */
/* --- Top Bar & Header --- */
/* ----------------------------------------------------------------- */

.top-bar { 
    background: #050505; 
    border-bottom: 1px solid #222; 
    font-size: 0.85rem; 
    padding: 10px 0; 
}
.contact-info span, .top-meta span { 
    margin-right: 20px; 
}
.main-header { 
    padding: 20px 0; 
    border-bottom: 1px solid #222; 
    background: var(--color-primary-dark); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

.logo { 
    font-size: 1.8rem; 
    font-weight: 800; 
    letter-spacing: 2px; 
}

/* --- Navigation --- */
nav ul {
    list-style: none;
    display: flex;
}
nav ul li a {
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 3px solid transparent;
}
nav ul li a:hover, nav ul li a.active { /* Added .active state */
    color: var(--color-gold);
    border-bottom: 3px solid var(--color-gold);
}
.nav-cta {
    background-color: var(--color-gold) !important;
    color: var(--color-black) !important;
    font-weight: bold;
    border-radius: 4px;
}
.nav-cta:hover {
    background-color: var(--color-gold-hover) !important;
    border-bottom: 3px solid transparent !important;
}

/* --- Mobile Menu Logic (Hamburger) --- */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; padding: 10px; }
.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
    display: block; background: var(--color-gold); height: 2px; width: 25px; position: relative; transition: all 0.3s ease-in-out;
}
.nav-toggle-label span::before { content: ''; top: -8px; }
.nav-toggle-label span::after { content: ''; bottom: -10px; }


/* ----------------------------------------------------------------- */
/* --- Buttons & CTAs --- */
/* ----------------------------------------------------------------- */

.gold-button {
    background-color: var(--color-gold);
    color: var(--color-black) !important;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
    text-decoration: none;
    margin: 5px;
}

.button-secondary {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--color-gold);
    color: var(--color-gold) !important;
    background-color: transparent;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    margin: 5px;
}

.gold-button:hover { background-color: var(--color-gold-hover); transform: scale(1.03); }
.button-secondary:hover { background-color: var(--color-gold); color: var(--color-black) !important; }


/* ----------------------------------------------------------------- */
/* --- Homepage Sections (index.html) --- */
/* ----------------------------------------------------------------- */

/* Hero Section */
.hero-section { 
    height: 85vh; 
    background-size: cover; 
    background-position: center; 
    position: relative; 
    display: flex; 
    align-items: center; 
    border-bottom: 5px solid var(--color-gold);
}

/* [FIX] ELIMINATE BLACK BOX GAP: Add compensating padding to hero on desktop */
@media (min-width: 769px) {
    .hero-section {
        /* Compensate for the sticky header height (approx 90-110px) */
        padding-top: 110px;
    }
}

.hero-overlay { 
    position: absolute; 
    top:0; left:0; 
    width:100%; height:100%; 
    background: rgba(0,0,0,0.6); 
}
.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px;
}

.hero-content h1 { 
    font-size: 4rem; 
    line-height: 1.1; 
    margin: 20px 0; 
}
.hero-content h2 {
    letter-spacing: 2px;
}

/* Trust Stats */
.trust-stats { padding: 30px 0; border-bottom: 1px solid #1a1a1a; }
.stat-item h3 { font-size: 2rem; margin-bottom: 5px; }

/* Service Tiles (Pro Aesthetic) */
.service-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 25px; 
    margin-top: 50px; 
}
.service-tile { 
    position: relative; 
    height: 450px; 
    border: 2px solid var(--color-gold); 
    overflow: hidden; 
    display: flex; 
    align-items: flex-end; 
}
.tile-img { 
    position: absolute; 
    top:0; left:0; 
    width:100%; height:100%; 
    background-size: cover; 
    background-position: center;
    filter: grayscale(100%); /* Monochrome starting state */
    transition: 0.6s; 
}
.service-tile:hover .tile-img { 
    filter: grayscale(0%); /* Color on hover */
    transform: scale(1.1); 
}
.tile-content { 
    position: relative; 
    z-index: 2; 
    width: 100%; 
    padding: 30px; 
    background: linear-gradient(transparent, #000000); 
    text-align: center; 
}
.tile-content h4 {
    margin-top: 10px;
}
.stars {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.tile-btn { 
    border: 1px solid var(--color-white); 
    color: var(--color-white) !important; 
    padding: 8px 25px; 
    display: inline-block; 
    margin-top: 15px; 
    border-radius: 4px;
    transition: 0.3s;
}
.tile-btn:hover {
    background: var(--color-gold);
    color: var(--color-black) !important;
    border-color: var(--color-gold);
}

/* Fleet Cards (Homepage/Fleet Page Shared) */
.fleet-teaser { border-top: 1px solid #1a1a1a; }
.fleet-card { 
    background: #111; 
    padding: 40px 20px; 
    text-align: center; 
    border-radius: 5px; 
    border: 1px solid #222; 
}
.fleet-card img { 
    width: 100%; 
    max-width: 400px; 
    margin-bottom: 20px; 
}
.fleet-icons { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    margin: 15px 0 25px; 
    color: #aaa; 
    font-size: 1.1rem;
}
.fleet-icons i {
    color: var(--color-gold);
    margin-right: 5px;
}
.more-info-btn {
    margin-top: 10px;
}

/* Reviews Section (Old/Legacy) - KEEP FOR BACKWARD COMPATIBILITY IF NEEDED, BUT NEW STYLES BELOW ARE USED */
.review-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    background: var(--color-primary-dark);
    border-left: 5px solid var(--color-gold);
    border-radius: 4px;
}
.review-item p {
    font-style: italic;
    margin-bottom: 15px;
}
.review-item h5 {
    font-weight: 400;
    color: var(--color-gold);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--color-primary-dark);
    border-top: 3px solid var(--color-gold);
    padding: 30px 0;
    font-size: 0.9rem;
}
.footer-brand p {
    margin-top: 5px;
    color: #999;
}
.footer-links a {
    color: var(--color-white);
    margin-left: 20px;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--color-gold);
}
.copyright {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #1a1a1a;
    color: #666;
}


/* ----------------------------------------------------------------- */
/* --- MODAL (POP-UP) STYLES --- */
/* ----------------------------------------------------------------- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
}

.modal-content {
    background-color: var(--color-primary-dark);
    margin: 5% auto;
    padding: 30px;
    border: 3px solid var(--color-gold);
    width: 80%;
    max-width: 1000px;
    position: relative;
    border-radius: 8px;
}

.close-btn {
    color: var(--color-gold);
    float: right;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 25px;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--color-white);
    text-decoration: none;
}

.modal-body {
    padding-top: 15px;
}

.grid-2-col-modal { /* 2-column layout inside modal */
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Image wider than details */
    gap: 30px;
    align-items: center;
}

.modal-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #333;
}

.modal-details h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.modal-description {
    margin-bottom: 25px;
    color: var(--color-text-light);
}
.modal-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.modal-specs li {
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 1.1rem;
}
.modal-specs i {
    color: var(--color-gold);
    width: 25px;
    text-align: center;
}


/* ----------------------------------------------------------------- */
/* --- CSS Animations --- */
/* ----------------------------------------------------------------- */

/* Card Glow Effect */
.card-glow:hover { 
    box-shadow: 0 0 25px var(--color-gold-glow); 
    transition: 0.4s; 
}

/* Pulse Animation for Booking Button */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}
.pulse { animation: pulse 2s infinite; }


/* ----------------------------------------------------------------- */
/* --- NEW STYLES FOR BOOKING.HTML --- */
/* ----------------------------------------------------------------- */
.booking-section { background: var(--color-primary-dark); }
.booking-container { max-width: 900px; margin: auto; }
.booking-steps { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 40px; 
    border-bottom: 2px solid #333;
}
.step-indicator { 
    padding: 10px 0; 
    text-align: center; 
    flex-grow: 1; 
    color: #555; 
    font-weight: 600;
}
.step-indicator.active { 
    color: var(--color-gold); 
    border-bottom: 2px solid var(--color-gold); 
}
.step-content { 
    background: var(--color-black); 
    padding: 30px; 
    border-radius: 8px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text-light);
}
.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
}
.rate-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.rate-card {
    background: #111;
    padding: 20px;
    border: 2px solid #222;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}
.rate-card:hover, .rate-card.selected {
    border-color: var(--color-gold);
    background: #181818;
}
.rate-card h4 { margin-top: 0; color: var(--color-gold); }
.rate-card p { font-size: 0.9rem; color: #aaa; }
.form-navigation { margin-top: 30px; text-align: right; }
.summary-box { 
    border: 1px dashed var(--color-gold); 
    padding: 20px; 
    margin-top: 20px;
    background: #181818;
}
.summary-box h4 { margin-top: 0; }
.summary-details { 
    list-style: none; 
    padding: 0; 
}
.summary-details li { 
    display: flex; 
    justify-content: space-between; 
    padding: 5px 0; 
    border-bottom: 1px dotted #333;
}
.summary-details li:last-child { 
    font-weight: bold; 
    color: var(--color-gold); 
    font-size: 1.1rem; 
    border-bottom: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid var(--color-gold);
}


/* ----------------------------------------------------------------- */
/* --- NEW FLEET PAGE GRID (UPDATED for fixed 3-card layout on desktop) --- */
.fleet-page-grid { 
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-top: 40px;
}
.fleet-page-grid .fleet-card {
    padding: 30px 20px;
}
.fleet-page-grid .car-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 5px 0 15px;
}

/* ----------------------------------------------------------------- */
/* --- REVIEWS.HTML SPECIFIC STYLES (SLIDER & CHAUFFEUR GRID) --- */
/* ----------------------------------------------------------------- */

/* --- 1. Client Testimonial Slider (Shows 2 at a time) --- */

.testimonial-slider-container {
    overflow: hidden; /* Hide reviews outside the container */
    margin: 40px auto 20px auto;
    position: relative;
    max-width: 1000px; /* Max width for the 2-column view */
}

.testimonial-slider {
    display: flex;
    gap: 30px; /* Space between cards */
    transition: transform 0.5s ease-in-out;
    width: fit-content; /* Allow slider to stretch for all cards */
}

.review-card {
    background: #111;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    /* Important: Set width so 2 fit side-by-side with the 30px gap */
    flex-shrink: 0;
    width: calc(50% - 15px); /* 50% width minus half the gap (30px/2) */
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #333;
    padding-bottom: 15px;
}

.client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
}

.review-card h4 {
    margin: 0;
    font-size: 1.3rem;
}

.client-title {
    margin: 0;
    font-size: 0.85rem;
    color: #999;
}

.stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-top: 5px;
}

.review-text {
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-top: auto;
}

/* Slider Navigation Buttons */
.slider-nav {
    margin-top: 30px;
}

.slider-btn {
    background: var(--color-primary-dark);
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 10px 15px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* --- 2. Chauffeur Profile Grid (Uses existing .grid-2-col) --- */

.chauffeur-grid {
    gap: 30px; /* Reduced gap for a tighter grid look */
    margin-top: 50px;
}

.chauffeur-profile-card {
    display: flex;
    gap: 20px;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333; /* Added strong border */
    transition: all 0.3s ease;
}

.chauffeur-profile-card:hover {
    box-shadow: 0 0 10px var(--color-gold-glow); /* Subtle glow on hover */
    transform: translateY(-5px); /* Lift effect */
}

.chauffeur-photo-grid {
    width: 100px; /* Smaller, focused image */
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-gold);
    flex-shrink: 0;
}

.chauffeur-details-grid {
    flex-grow: 1;
}

.chauffeur-details-grid h4 {
    margin-top: 0;
    font-size: 1.5rem;
}

.chauffeur-role {
    font-style: italic;
    color: #aaa;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.chauffeur-review-grid {
    background: #222;
    padding: 10px;
    border-left: 3px solid var(--color-gold);
    margin-bottom: 10px;
    border-radius: 4px;
}

.chauffeur-review-grid h6 {
    color: var(--color-gold);
    font-size: 0.85rem;
    margin: 0 0 5px 0;
}

.chauffeur-review-grid p {
    font-size: 0.9rem;
    margin: 0;
    color: #ccc;
}


/* --- SERVICES PAGE SPECIFIC STYLES --- */

/* 1. Grid Structure */
.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; /* Increased spacing for a pro look */
    margin-top: 50px;
}

/* 2. Service Card Styling (The Glow Effect) */
.service-card {
    background: #111; /* Slightly lighter than the dark-bg */
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1); /* Subtle border */
    transition: all 0.4s ease-in-out;
}

.service-card:hover {
    /* The Glow Effect - subtle outer glow using the gold color */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4), 0 0 5px rgba(255, 215, 0, 0.2);
    transform: translateY(-8px); /* Lift effect for professionalism */
    background: #181818; /* Slight background darkening on hover */
}

.service-card-image img {
    width: 100%;
    height: 220px; /* Slightly taller images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

/* 3. Detailed Service Blocks */
.detail-categories {
    padding-top: 60px;
    padding-bottom: 60px;
}

.detail-block {
    background: #1a1a1a;
    border-left: 5px solid var(--color-gold);
    padding: 30px;
    margin-top: 40px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.detail-block h4 {
    color: #fff;
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 15px;
    padding-left: 60px; /* Make space for the icon */
}

.detail-icon {
    position: absolute;
    top: 30px;
    left: 20px;
    font-size: 2.2rem;
}

.detail-block p {
    margin-bottom: 15px;
    color: #ccc;
}

.coverage-list {
    color: var(--color-gold) !important;
    font-weight: 600;
}


/* ----------------------------------------------------------------- */
/* --- Media Queries (Mobile-First) --- */
/* ----------------------------------------------------------------- */

@media (max-width: 900px) {
    /* Layout Adjustments */
    .hero-section { height: 70vh; }
    .hero-content h1 { 
        font-size: 3rem; 
        margin-top: 20px; /* Reduced to default margin for mobile */
    }
    .hero-content h2 { font-size: 1.5rem; }
    .section-padding { padding: 50px 0; }
    
    /* Grid Collapsing (General) */
    .grid-4-col, .grid-3-col, .service-grid { grid-template-columns: 1fr; } 
    
    /* Service Tiles */
    .service-tile { height: 350px; }
    .tile-content { padding: 20px; }
    
    /* Footer & Header Stacking */
    .flex-between { flex-direction: column; text-align: center; gap: 20px; }
    .contact-info span { margin: 5px 10px; display: block; }

    /* Mobile Nav Stacking */
    .nav-toggle-label { display: block; }
    .nav-toggle:checked ~ .nav-toggle-label span { transform: rotate(45deg); }
    .nav-toggle:checked ~ .nav-toggle-label span::before { transform: translateY(10px) rotate(90deg); }
    .nav-toggle:checked ~ .nav-toggle-label span::after { transform: translateY(-12px) rotate(90deg); opacity: 0; }

    nav { 
        position: absolute; top: 100%; left: 0; width: 100%; background: #000; height: 0; overflow: hidden; transition: 0.3s; 
    }
    nav ul { flex-direction: column; padding: 20px 0; text-align: center; }
    .nav-toggle:checked ~ nav { height: 300px; }
    
    /* Modal Mobile Adjustment */
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    .grid-2-col-modal {
        grid-template-columns: 1fr; /* Stack columns on mobile */
    }
    .modal-body { padding-top: 0; }
    .modal-details { text-align: center; }
    .modal-specs { display: inline-block; text-align: left; }

    /* FLEET PAGE ADJUSTMENTS - use 2 columns on tablets/smaller desktops for density */
    .fleet-page-grid {
         grid-template-columns: repeat(2, 1fr);
    }

    /* ABOUT PAGE ADJUSTMENTS */
    .grid-2-col-about { grid-template-columns: 1fr; }
    .about-text-column { text-align: center; }
    .chauffeur-profile { margin-bottom: 30px; }
    
    /* REVIEWS PAGE MOBILE ADJUSTMENTS */
    /* Testimonial Slider - Force 1 review per view on mobile */
    .review-card {
        width: 100%; /* Take full width */
    }
    .testimonial-slider-container {
        max-width: 500px; /* Set a max width to keep the reviews from being too wide */
    }

    /* Chauffeur Grid - Stack on mobile */
    .chauffeur-grid {
        grid-template-columns: 1fr;
    }
    .chauffeur-profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .chauffeur-details-grid {
        text-align: left; /* Keep reviews left-aligned for readability */
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    /* Set .grid-3-col to 2 columns on tablets for better use of space */
    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (min-width: 901px) and (max-width: 1200px) {
    /* FLEET PAGE ADJUSTMENTS for Medium Screens (using 2 columns to prevent cards from being too wide) */
    .fleet-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1201px) {
    /* Ensure the dedicated fleet page uses 3 columns for consistency on large screens */
    .fleet-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Specific Smaller Mobile Adjustments */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .gold-button, .button-secondary { padding: 10px 20px; font-size: 0.9rem; }
    
    /* BOOKING PAGE FIELD STACKING */
    .grid-2-col {
        grid-template-columns: 1fr; /* Stack form fields on very small screens */
    }
    .booking-steps { flex-wrap: wrap; }
    .step-indicator { flex-basis: 50%; }

    /* SERVICES PAGE MOBILE ADJUSTMENTS */
    .detail-block h4 {
        padding-left: 0;
        text-align: center;
    }
    .detail-icon {
        position: static;
        display: block;
        margin: 0 auto 15px;
    }
}