/* 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 h1 {
    margin: 0;
    font-size: 1.8rem;
}

header #logo h1 a {
    color: #2c3e50;
    text-decoration: none;
    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 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 h2 {
    font-size: 3rem;
    margin-bottom: 0.5em;
    color: #fff;
}

#hero h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5em;
    color: #eee;
}

/* Services Section */
#services h2, #why-choose-us h2, #testimonials h2, #booking h2, #faq 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 {
    margin-bottom: 20px;
    padding: 20px;
    border-left: 5px solid #e67e22;
    background: #f9f9f9;
}

.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: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px 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 */
}

#mobile-phone-cta .phone-icon::before {
    content: '\f095'; /* Unicode for phone icon (Font Awesome if available, otherwise a generic phone symbol) */
    font-family: 'Font Awesome 5 Free'; /* Assuming Font Awesome is linked, otherwise use a simple character */
    font-weight: 900; /* For solid icon in Font Awesome */
    color: #e67e22; /* Brand color */
}

#mobile-phone-cta .phone-icon::before {
    content: '\f095'; /* Unicode for phone icon (Font Awesome if available, otherwise a generic phone symbol) */
    font-family: 'Font Awesome 5 Free'; /* Assuming Font Awesome is linked, otherwise use a simple character */
    font-weight: 900; /* For solid icon in Font Awesome */
    color: #e67e22; /* Brand color */
}

#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 h2 {
        font-size: 2rem;
    }

    #hero h3 {
        font-size: 1.2rem;
    }

    .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);
    border: 1px solid #eee;
}

.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.05);
    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;
}

/* 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 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.webp');
}

.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 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'); } 
