/* General Body & Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

h1,
h2,
h3 {
    color: #2c3e50;
}

p {
    margin-bottom: 1em;
}

.container {
    width: 85%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

/* Header */
header {
    background: #fff;
    color: #333;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: fixed;
    /* Changed from sticky to fixed for consistent behavior */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}


header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
    /* Allow dropdown to be visible */
}

header #logo h3 {
    margin: 0;
    font-size: 1.8rem;
}

header #logo h3 a {
    color: #2c3e50 !important;
    text-decoration: none !important;
    font-weight: bold;
}

header nav ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #555;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #e67e22;
}

/* Navigation Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #555;
    font-weight: normal;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: #f4f4f4;
    color: #e67e22;
}

.header-cta a {
    color: #e67e22;
    font-weight: bold;
    text-decoration: none;
}

/* Call to Action Button */
.cta-button a,
.cta-button {
    background-color: #e67e22;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button a:hover,
.cta-button:hover {
    background-color: #d35400;
}

#hero .cta-button {
    font-size: 0.7rem;
    padding: 6px 14px;
}

/* Hero Section */
#hero {
    background: url('../images/hero-background.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#hero .container {
    position: relative;
    z-index: 1;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5em;
    color: #fff;
}

#hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5em;
    color: #eee;
}

#hero h3 span {
    background-color: rgba(50, 50, 50, 0.5);
    padding: 0.2em 0.4em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    line-height: 2;
}

/* Services Section */
#services h2,
#why-choose-us h2,
#testimonials h2,
#booking h2,
#faq h2,
#about-us h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

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

.service-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-box h3 {
    color: #e67e22;
    margin-top: 0;
}

/* Why Choose Us Section */
.promise-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.promise-point {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Testimonials Section */
#testimonials {
    background-color: #fff;
}

.testimonial {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: left;
}

.testimonial blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    text-align: right;
}

/* Booking Form */
#booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

#booking-form input,
#booking-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    /* Important for layout */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#booking-form input:focus,
#booking-form select:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #777;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-column h3 {
    color: #e67e22;
}

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #34495e;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
#mobile-phone-cta {
    display: none;
    /* Hidden by default on desktop */
}

#mobile-phone-cta a {
    color: #e67e22;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    /* Increased size */
    display: flex;
    /* Use flexbox for icon and text alignment */
    align-items: center;
    justify-content: flex-start;
    /* Align to the left */
    gap: 5px;
    /* Space between icon and text */
}



#menu-toggle {
    display: none;
    /* Hidden by default on larger screens */
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #2c3e50;
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
        align-items: flex-start;
        /* Align items to the top */
    }

    #logo {
        flex-basis: auto;
        /* Allow logo to take natural width */
        margin-right: auto;
        /* Push menu-toggle to the right */
    }

    #mobile-phone-cta {
        display: block;
        /* Show in mobile view */
        width: 100%;
        /* Take full width */
        text-align: left;
        /* Align to the left */
        order: 2;
        /* Below logo */
        margin-top: 5px;
    }

    #menu-toggle {
        display: block;
        /* Show hamburger menu */
        order: 1;
        /* Keep it on the right */
    }

    .header-cta {
        display: none;
        /* Hide desktop phone in mobile view */
    }

    #main-nav {
        display: none;
        /* Hide nav by default */
        width: 100%;
        order: 3;
        /* Below logo/phone and toggle */
        flex-basis: 100%;
    }

    #main-nav.is-open {
        display: block;
        /* Show nav when toggled */
    }

    #main-nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    #main-nav ul li {
        display: block;
        text-align: center;
        margin: 10px 0;
    }

    /* Mobile Dropdown Styles */
    #main-nav .dropdown-menu {
        display: none;
        position: static;
        background-color: #f9f9f9;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        min-width: 0;
        margin-top: 10px;
    }

    #main-nav .dropdown.is-open .dropdown-menu {
        display: block;
    }

    #main-nav .dropdown-menu li a {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    #main-nav ul li.cta-button {
        margin-top: 15px;
    }

    #main-nav ul li.cta-button a {
        display: block;
        padding: 15px;
    }

    #hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    #hero h1 {
        font-size: 1.8rem;
    }

    #hero h2 {
        font-size: 1rem;
    }

    .service-boxes,
    .promise-points,
    .footer-columns {
        grid-template-columns: 1fr;
        /* Stack items on smaller screens */
    }
}

/* Service Intro */
.service-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Service Model Explanation */
.service-model-explanation {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.service-model-explanation h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.model-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.model-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.model-box h4 {
    color: #e67e22;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.model-box ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.model-box ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.model-box ul li::before {
    content: '\2713';
    /* Checkmark icon */
    color: #27ae60;
    /* Green color */
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* FAQ Section - Accordion */
#faq {
    padding-bottom: 40px;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0;
    /* Remove original padding */
}

.faq-item h3 {
    margin: 0;
    padding: 20px;
    color: #e67e22;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    /* Add some space between text and icon */
}

.faq-item h3 span {
    flex: 1;
    /* Allow text to take up available space */
}

.faq-item h3::after {
    content: '+';
    font-size: 1.8rem;
    color: #e67e22;
    transition: transform 0.3s ease-out;
    font-weight: 300;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

/* The answer paragraph */
.faq-item p {
    max-height: 0;
    overflow: hidden;
    margin: 0 20px;
    /* Keep side padding consistent */
    padding: 0;
    transition: max-height 0.4s ease-out, padding-bottom 0.4s ease-out;
    line-height: 1.7;
}

.faq-item.active p {
    max-height: 500px;
    /* A safe value to allow for content */
    padding-bottom: 20px;
}

/* Styles for About Us collapsible content */
.about-us-content-wrapper {
    max-height: 0;
    overflow: hidden;
    margin: 0 20px;
    padding: 0;
    transition: max-height 0.4s ease-out, padding-bottom 0.4s ease-out;
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: center;
}

.faq-item.active .about-us-content-wrapper {
    max-height: 1000px;
    /* Increased max-height for the longer about us text */
    padding-bottom: 20px;
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .model-options {
        grid-template-columns: 1fr;
    }
}

/* Service Model Tags */
.service-tag-your-car,
.service-tag-our-car {
    color: #fff;
    padding: 0.15em 0.6em;
    /* Using em for scalability */
    border-radius: 4px;
    font-weight: bold;
    white-space: nowrap;
    /* Prevents the tag from breaking into multiple lines */
    font-size: 0.9em;
    /* Slightly smaller than parent to look like a tag */
    display: inline-block;
    /* Ensures padding and other properties apply correctly */
    vertical-align: middle;
    /* Aligns the tag nicely with surrounding text */
    line-height: 1.4;
    /* Adjust line-height for better visual balance */
}

.service-tag-your-car {
    background-color: #3498db;
    /* Soft Blue */
}

.service-tag-our-car {
    background-color: #e67e22;
    /* Brand Orange */
}

/* Adjustments for headings to make tags look better */
h3 .service-tag-your-car,
h3 .service-tag-our-car,
h4 .service-tag-your-car,
h4 .service-tag-our-car {
    font-size: 0.8em;
    /* Make tags in headings a bit smaller relative to the heading text */
    vertical-align: baseline;
}

/* --- Animations --- */

/* Fade-in Animation on Scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered zoom-in for individual items */
.animated-card {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animated-card.is-visible {
    opacity: 1;
    transform: scale(1);
    transition-delay: var(--delay, 0s);
}

/* Pulse animation for CTA */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(230, 126, 34, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
    }
}

#hero .cta-button,
#booking-form .cta-button {
    animation: pulse 2.5s infinite;
    animation-delay: 3s;
}

#about-us {
    padding-bottom: 40px;
}

/* About Us Section */
#about-us {
    background-color: #fff;
    padding: 60px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Service Subpage Specific Styles */
.hero-subpage {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-subpage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-subpage .container {
    position: relative;
    z-index: 2;
}

.airport-hero {
    background-image: url('../images/hero-airport-transfers-premium.jpg');
}

.corporate-hero {
    background-image: url('../images/hero-corporate-transportation.webp');
}

.hero-subpage h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.5em;
}

.hero-subpage h2 {
    color: #fff;
}

.hero-subpage p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5em auto;
}

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

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

#service-details h2,
#how-it-works h2,
#why-choose-us-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#service-details h3 {
    font-size: 1.8rem;
    color: #e67e22;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

#service-details p.text-center {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.model-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.model-card-icon {
    color: #e67e22;
    margin-bottom: 15px;
}

.model-card-icon svg {
    width: 48px;
    height: 48px;
}

.model-card h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-top: 0;
}

.model-card h4 small {
    font-size: 0.9rem;
    color: #777;
    font-weight: normal;
}

.model-card p {
    text-align: center;
    margin-bottom: 0;
}

#service-details ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 0 auto;
}

#service-details ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

#service-details ul li::before {
    content: '\2713';
    /* Checkmark icon */
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-banner {
    background-color: #e67e22;
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
}

.cta-banner h3 {
    font-size: 2rem;
    margin: 0 0 10px 0;
    color: #fff;
}

.cta-banner p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-banner .cta-button {
    background-color: #fff;
    color: #e67e22 !important;
}

.cta-banner .cta-button:hover {
    background-color: #fdfdfd;
    transform: scale(1.05);
}

/* Airports Served Bar */
.airports-served-bar {
    background-color: #f9f9f9;
    padding: 15px 25px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #eee;
    font-size: 1.1rem;
}

.airports-served-bar span {
    color: #555;
    margin-right: 10px;
}

.airports-served-bar strong {
    color: #2c3e50;
    margin: 0 10px;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.step-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #e67e22;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.feature-icon {
    color: #e67e22;
    margin-bottom: 15px;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-subpage h1 {
        font-size: 2.2rem;
    }

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

.special-occasions-hero {
    background-image: url('../images/hero-special-occasions.webp');
}

.school-transportation-hero {
    background-image: url('../images/hero-school-transportation.webp');
}

.personalized-daily-hero {
    background-image: url('../images/hero-personalized-daily.webp');
}

/* Mobile Hero Section Fix */
@media (max-width: 768px) {
    .hero-subpage {
        padding-top: 120px;
        /* Increased padding to push content below the fixed mobile header */
        padding-bottom: 60px;
        /* Adjusted bottom padding for balance */
    }

    .cta-buttons-container .cta-button {
        display: block;
        margin-bottom: 10px;
    }

    .cta-buttons-container .cta-button:last-child {
        margin-bottom: 0;
    }
}

.star-rating {
    color: #FF9529;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e67e22;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
}

/* Flat Rate Table Styles */
.flat-rate-table {
    width: 100%;
    max-width: 800px;
    /* Limit max width for larger screens */
    margin: 30px auto;
    /* Center the container */
    overflow: hidden;
    /* For border-radius */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.flat-rate-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.flat-rate-table th,
.flat-rate-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.flat-rate-table thead th {
    background-color: #f9f9f9;
    font-size: 1.1rem;
    color: #2c3e50;
    text-align: center;
}

.flat-rate-table tbody tr:last-child td {
    border-bottom: none;
}

.flat-rate-table tbody tr:hover {
    background-color: #fdfdfd;
}

.flat-rate-table td:nth-child(1) {
    font-weight: bold;
    color: #34495e;
}

.flat-rate-table td:nth-child(2) {
    font-weight: bold;
    font-size: 1.2rem;
    color: #e67e22;
    text-align: center;
}

.flat-rate-table td:nth-child(3) {
    text-align: right;
}

.flat-rate-table .cta-button {
    min-width: 120px;
    text-align: center;
    padding: 10px 15px;
    /* Adjust padding for a better fit */
}

/* Responsive adjustments for the table */
@media (max-width: 768px) {
    .flat-rate-table thead {
        display: none;
        /* Hide table head on mobile */
    }

    .flat-rate-table table,
    .flat-rate-table tbody,
    .flat-rate-table tr,
    .flat-rate-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        /* Fix for overflow issue */
    }

    .flat-rate-table tr {
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
    }

    .flat-rate-table td {
        text-align: right;
        /* Right-align the content */
        padding-left: 50%;
        /* Create space for the label */
        position: relative;
        border-bottom: 1px solid #eee;
    }

    .flat-rate-table td:last-child {
        border-bottom: none;
    }

    .flat-rate-table td::before {
        content: attr(data-label);
        /* Use data-label for the heading */
        position: absolute;
        left: 15px;
        width: calc(50% - 30px);
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        color: #2c3e50;
    }

    .flat-rate-table td:nth-child(2),
    .flat-rate-table td:nth-child(3) {
        text-align: right;
        /* Keep text alignment for these cells */
    }

    .flat-rate-table .cta-button {
        width: 100%;
        /* Make button full-width on mobile */
        box-sizing: border-box;
    }
}

/* Google Reviews Section */
#google-reviews {
    background-color: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.review-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-name {
    font-weight: bold;
    margin-left: 10px;
}

.review-text {
    font-style: italic;
    color: #555;
    flex-grow: 1;
}

.review-footer {
    margin-top: 15px;
    font-size: 0.9rem;
}

.review-footer a {
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.review-footer a:hover {
    text-decoration: underline;
    color: #d35400;
}

.review-footer a::after {
    font-family: "Font Awesome 5 Free";
    content: " \f35d";
    font-weight: 900;
    font-size: 0.8em;
    margin-left: 5px;
}

.services-hero {
    background-image: url('../images/hero-services-new.png');
}

/* Vehicle Showcase Section */
#choose-your-vehicle {
    background-color: #f9f9f9;
}

.vehicle-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vehicle-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.vehicle-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto 20px;
    border-radius: 8px;
}

.vehicle-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.vehicle-highlight {
    color: #e67e22;
    font-weight: bold;
    min-height: 24px;
    /* Reserve space */
    margin-bottom: 15px;
}

.vehicle-card ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 25px;
    text-align: left;
    display: inline-block;
}

.vehicle-card ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #555;
}

.vehicle-card ul li i {
    color: #e67e22;
    margin-right: 10px;
    width: 20px;
    /* Align icons */
}

.vehicle-card .cta-button {
    margin-top: auto;
    /* Push button to the bottom */
}

.vehicle-card-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: auto;
}

@media (min-width: 400px) {
    .vehicle-card-buttons {
        grid-template-columns: 1fr 1fr;
    }
}

.vehicle-card-buttons .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 5px;
    /* Adjust padding for smaller buttons */
    font-size: 0.9rem;
}

/* Pricing Section */
#pricing {
    background-color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pricing-icon {
    color: #e67e22;
    margin-bottom: 15px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e67e22;
    margin: 0;
}

.timeframe {
    font-size: 1rem;
    color: #777;
    margin-top: 5px;
}

.pricing-info {
    background: #2c3e50;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.pricing-info h3 {
    color: #fff;
    margin-top: 0;
}

.pricing-info p {
    margin-bottom: 20px;
}

.pricing-info .cta-button {
    background-color: #e67e22;
    color: #fff !important;
}