/* General Styles */
:root {
    --primary-color: #ff5722;
    --secondary-color: #03a9f4;
    --accent-color: #4caf50;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --grey-color: #6c757d;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Critical CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Optimize image loading */
img {
    content-visibility: auto;
}

/* Defer non-critical CSS */
@media (prefers-reduced-motion: no-preference) {
    .animate {
        animation-duration: 0.3s;
    }
}

/* Combine media queries */
@media (max-width: 992px) {
    .contact-wrapper,
    .policy-wrapper,
    .about-page .story-content,
    .about-page .mission-wrapper {
        flex-direction: column;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        transition: 0.3s;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .booking-form-container {
        margin-top: -50px;
    }
    
    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .booking-form-container {
        margin-top: -30px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--grey-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e64a19;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #0288d1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 169, 244, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Booking Section - Fix Positioning */
.booking {
    position: relative;
    z-index: 10;
    padding: 10 10px;
    margin-bottom: 80px;
    margin-top: -100px; /* Adjusted to position form properly */
}

.booking-form-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 15px;
    max-width: 900px;
    margin: -100px auto 0; /* Adjusted to create overlap on hero */
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    position: relative;
    z-index: 2;
    background: white;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    width: 100%;
}

.booking-form select,
.booking-form .date-input {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 52px;
    padding: 0 15px;
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

/* Focus states */
.booking-form select:focus,
.date-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.btn-whatsapp {
    margin-top: 10px;
    padding: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .booking {
        margin-top: -50px; /* Adjusted for mobile */
    }
    
    .booking-form-container {
        padding: 25px 15px;
    }
    
    .form-row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .booking-form .form-group {
        margin-bottom: 15px;
        overflow: visible;
    }

    .booking-form label {
        font-size: 14px;
        margin-bottom: 5px;
        display: block;
    }

    .date-input {
        width: 100%;
        padding: 12px;
        border: 1px solid #e1e1e1;
        border-radius: 8px;
        font-size: 14px;
    }

    .booking-form select,
    .booking-form .date-input {
        margin-top: 2px;
    }

    #otherPickup,
    #otherDestination {
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .booking {
        margin-top: -30px; /* Further adjusted for smaller screens */
    }
}

@media (max-width: 576px) {
    .form-row {
        gap: 12px;
    }
    
    .date-input {
        padding: 10px;
    }

    .booking-form label {
        margin-bottom: 6px;
        font-size: 13px;
    }
}

/* Car Grid */
.destination-grid, .package-grid, .testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 5%;
}

.car-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.car-card:hover {
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* WhatsApp Float Button */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Navbar and Hamburger Menu */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

/* Remove these hover/active underline styles */
.nav-menu a::after {
    content: none; /* Changed from '' to none to completely remove the pseudo-element */
}

.nav-menu a:hover::after, 
.nav-menu a.active::after {
    width: 0; /* Changed from 100% to 0 */
}

/* Testimonial Slider */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin-bottom: 0;
}

/* Hero Section - Fix Navbar Overlap */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 80px;
    padding-top: 80px; /* Add padding to ensure content isn't hidden behind navbar */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
    color: white;
    max-width: 850px; /* Increased max-width */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 5; /* Ensure content stays above the overlay */
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.feature i {
    font-size: 1.25rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 85vh;
        padding-top: 70px;
        padding-bottom: 100px; /* Added space at bottom for proper spacing */
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-badge span {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-features {
        gap: 15px;
    }
}

/* Hero Badge */
.hero-featured {
    margin: 25px 0;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Popular Routes Section */
.popular-routes {
    padding: 80px 0;
    background-color: white;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.route-card {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.route-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.route-image::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (9/16 = 0.5625 = 56.25%) */
}

.route-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-content {
    flex: 0 0 60%;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.route-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.route-content p {
    color: var(--grey-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.route-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--grey-color);
}

.route-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Airport Cards */
.section-subheader {
    text-align: center;
    margin: 60px 0 30px;
}

.section-subheader h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.airport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.airport-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.airport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.airport-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), #ff8a65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
}

.airport-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.airport-card p {
    color: var(--grey-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Celebrity Testimonials */
.celebrity-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.celebrity-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.celebrity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.celebrity-image {
    flex: 0 0 100px;
}

.celebrity-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.celebrity-content {
    flex: 1;
    padding-left: 20px;
}

.celebrity-content h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.celebrity-title {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.celebrity-quote {
    color: var(--grey-color);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--primary-color), #ff8a65);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}

.rating-badge i {
    color: #FFD700;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), #ff8a65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
}

.trust-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.trust-card p {
    color: var(--grey-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Make sure to add media queries for responsive design */
@media (max-width: 768px) {
    .routes-grid {
        grid-template-columns: 1fr;
    }
    
    .route-card {
        flex-direction: column;
    }
    
    .route-image {
        flex: none;
        width: 100%;
    }
    
    .route-content {
        flex: none;
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .route-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Fleet Section */
.fleet {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.car-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.car-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.car-details {
    padding: 25px;
}

.car-details h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.car-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--grey-color);
}

.car-price {
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.car-card .btn {
    width: 100%;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), #ff8a65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--grey-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Destinations Section */
.destinations {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.destination-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-content {
    padding: 25px;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.destination-content p {
    color: var(--grey-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.destination-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--grey-color);
}

.destination-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background-color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.package-image {
    height: 200px;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--grey-color);
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-highlights {
    margin-bottom: 20px;
}

.package-highlights p {
    color: var(--grey-color);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.package-highlights ul {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--grey-color);
    font-size: 0.9rem;
}

.package-highlights li {
    margin-bottom: 5px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.per-person {
    font-size: 0.8rem;
    color: var(--grey-color);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.faq-toggle {
    font-size: 1rem;
    color: var(--grey-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    color: var(--grey-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 20px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    width: 100%;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

/* Footer Section */
footer {
    background-color: #252525;
    color: #b0b0b0;
    padding-top: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #b0b0b0;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-column p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-links a {
    color: #b0b0b0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Hamburger Menu Animation */
.menu-toggle .bar.animate:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle .bar.animate:nth-child(2) {
    opacity: 0;
}

.menu-toggle .bar.animate:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Sticky Header Adjustments */
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Button Variations */
.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .nav-menu a.btn-sm {
        margin-top: 10px;
        display: inline-block;
    }
}

/* Package Categories Styling */
.package-categories {
    margin-bottom: 30px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.category-tab.active {
    background-color: #ff5722;
    color: #fff;
}

.package-category {
    display: none;
}

.package-category.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Mobile responsiveness for package categories */
@media (max-width: 768px) {
    .category-tab {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .package-category.active {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation Enhancements */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 80px 0 20px;
        z-index: 98;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 99;
    }
    
    .menu-toggle .bar {
        transition: 0.3s ease all;
    }
    
    body.no-scroll {
        overflow: hidden;
    }
    
    .contact-info {
        display: none;
    }
}

/* Mobile Testimonials Fix */
@media (max-width: 768px) {
    .celebrity-testimonials {
        grid-template-columns: 1fr;
    }
    
    .celebrity-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }
    
    .celebrity-image {
        margin: 0 auto 15px;
    }
    
    .celebrity-content {
        padding-left: 0;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-column:first-child {
        grid-column: span 2;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column p i {
        width: 20px;
        display: inline-block;
    }
}

/* Form Elements for Small Screens */
@media (max-width: 480px) {
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group select,
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .btn-whatsapp {
        font-size: 1rem;
        padding: 12px;
    }
}

/* Hero Features Mobile Fix */
@media (max-width: 480px) {
    .hero-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .feature {
        padding: 8px 15px;
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .feature i {
        font-size: 1rem;
    }
}

/* Fleet Section Responsive Fix */
@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .car-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .car-details {
        padding: 20px 15px;
    }
    
    .car-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Trust Section Mobile Fix */
@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-card {
        padding: 25px 15px;
    }
    
    .trust-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Ensure header is properly fixed on all devices */
header {
    width: 100%;
    background-color: white;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 0;
    }
    
    .logo img {
        max-width: 80px;
    }
}

/* Fix for small devices */
@media (max-width: 768px) {
    .car-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .car-image-container {
        width: 100%;
        aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
    }
    
    /* Override any conflicting styles for .car-image class */
    .fleet-grid .car-card .car-image {
        height: auto;
        max-height: none;
        min-height: unset;
    }
}

/* Add these styles to ensure proper display of the manual input fields */
#otherPickup, #otherDestination {
    width: 100%;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

#otherPickup:focus, #otherDestination:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

@media (max-width: 768px) {
    #otherPickup, #otherDestination {
        padding: 12px;
    }
}

/* WhatsApp floating button styles */
.floating-whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

.floating-whatsapp, .float-whatsapp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-whatsapp:hover, .float-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-dropdown-content {
    display: none;
    background-color: white;
    min-width: 250px;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whatsapp-dropdown-content.show {
    display: block;
    animation: fadeIn 0.3s;
}

.whatsapp-dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.whatsapp-dropdown-content a:last-child {
    border-bottom: none;
}

.whatsapp-dropdown-content a:hover {
    background-color: #f9f9f9;
    color: #25d366;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

@media (max-width: 768px) {
    .whatsapp-dropdown-content {
        min-width: 200px;
        right: 0;
    }
    
    .whatsapp-dropdown-content a {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Policy Page Styles - Updated Fixes */
body.policy-page {
    padding-top: 0;
    background-color: #f9f9f9;
}

.policy-content {
    padding: 60px 0;
    background-color: #f9f9f9;
    margin-top: 20px;
}

.policy-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure content is visible */
.policy-details {
    min-height: 500px;
}

/* Fix navigation positioning */
.policy-navigation {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: fit-content;
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Fix mobile view for Policy Page */
@media (max-width: 992px) {
    .policy-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .policy-navigation {
        position: relative;
        top: 0;
        margin-bottom: 30px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 250px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .policy-content {
        padding: 40px 0;
    }
    
    .policy-details {
        padding: 25px 20px;
    }
    
    .policy-section h2 {
        font-size: 24px;
    }
    
    .policy-block h3 {
        font-size: 18px;
    }
    
    .policy-contact {
        padding: 20px;
    }
    
    .policy-navigation ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .policy-navigation li {
        margin-bottom: 0;
    }
    
    .policy-navigation a {
        padding: 8px 15px;
        background-color: #f5f5f5;
        border-radius: 5px;
        font-size: 14px;
    }
    
    .policy-navigation a:hover {
        transform: none;
        background-color: var(--primary-color);
        color: white;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 200px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .policy-content {
        padding: 30px 0;
    }
    
    .policy-wrapper {
        padding: 0 15px;
    }
    
    .policy-navigation {
        padding: 20px 15px;
    }
    
    .policy-navigation ul {
        flex-direction: column;
    }
    
    .policy-navigation li {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .policy-navigation a {
        display: block;
        text-align: center;
    }
    
    .policy-details {
        padding: 20px 15px;
        border-radius: 8px;
    }
    
    .policy-section h2 {
        font-size: 22px;
    }
    
    .policy-block h3 {
        font-size: 16px;
    }
    
    .policy-block p, 
    .policy-block li {
        font-size: 14px;
    }
    
    .policy-block ul {
        padding-left: 20px;
    }
    
    .policy-contact h3 {
        font-size: 18px;
    }
    
    .policy-contact li {
        margin-bottom: 10px;
    }
}

/* Make sure the policy details have styles */
.policy-details {
    background-color: white;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    margin-bottom: 30px;
    border-bottom: none;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 5px;
}

.policy-block {
    margin-bottom: 30px;
}

.policy-block h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.policy-block p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.policy-block ul {
    padding-left: 25px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.policy-block li {
    margin-bottom: 10px;
    line-height: 1.5;
    color: #555;
}

.policy-contact {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
}

/* About Page Specific Fixes - Mobile Responsiveness */
.about-page .section-header {
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
}

.about-page .page-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 50px;
}

.about-page .hero-content {
    position: relative;
    z-index: 5;
}

.about-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-page .overlay {
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.about-page .story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-page .mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-page .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-page .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Mobile responsiveness fixes for about page */
@media (max-width: 992px) {
    .about-page .story-content, 
    .about-page .mission-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-page .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-page .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-page .page-hero {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .about-page .section-header {
        margin-bottom: 30px;
    }
    
    .about-page .hero-content h1 {
        font-size: 32px;
    }
    
    .about-page .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-page .page-hero {
        height: 200px;
    }
    
    .about-page .about-story,
    .about-page .about-mission,
    .about-page .about-team,
    .about-page .about-values {
        padding: 50px 0;
    }
    
    .about-page .story-text h3 {
        font-size: 22px;
    }
    
    .about-page .mission-content h2 {
        font-size: 24px;
    }
    
    .about-page .stat-number {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .about-page .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-page .mission-stats {
        grid-template-columns: 1fr;
    }
    
    .about-page .hero-content h1 {
        font-size: 28px;
    }
    
    .about-page .page-hero {
        height: 180px;
    }
    
    .about-page .story-text p,
    .about-page .mission-content p,
    .about-page .team-bio,
    .about-page .value-card p {
        font-size: 14px;
    }
    
    .about-page .about-story,
    .about-page .about-mission,
    .about-page .about-team,
    .about-page .about-values,
    .about-page .cta-section {
        padding: 40px 0;
    }
}

/* Fix specific overlapping text issue */
.about-page .hero-background div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-page .hero-background .overlay {
    z-index: 1;
}

.about-page .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

/* Fix floating WhatsApp button specifically for about page */
.about-page .floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Fix for any overlapping issues in the values section */
.about-page .value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-page .value-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-page .cta-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.about-page .cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Updated styles for Related Searches section */
.related-searches {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-searches h4 {
    font-size: 14px; /* Reduced from 16px */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px; /* Reduced from 15px */
    font-weight: 600;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* Reduced from 8px */
}

.search-tags a {
    font-size: 10px; /* Reduced from 12px */
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.search-tags a:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -4px; /* Reduced from -6px */
    color: rgba(255, 255, 255, 0.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .search-tags {
        gap: 4px 6px; /* Reduced from 5px 8px */
    }
    
    .search-tags a {
        font-size: 9px; /* Reduced from 11px */
    }
}

/* Reset the Book Now button styling in navigation */
.nav-menu .btn-sm.btn-primary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: none;
}

.nav-menu .btn-sm.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.25);
}

/* Add spacing between sections on About page only */
.about-page .about-story {
    padding: 80px 0;
}

.about-page .about-mission {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-page .about-team {
    padding: 80px 0;
}

.about-page .about-values {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-page .cta-section {
    padding: 80px 0;
}

/* Maintain mobile spacing */
@media (max-width: 768px) {
    .about-page .about-story,
    .about-page .about-mission,
    .about-page .about-team,
    .about-page .about-values,
    .about-page .cta-section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .about-page .about-story,
    .about-page .about-mission,
    .about-page .about-team,
    .about-page .about-values,
    .about-page .cta-section {
        padding: 40px 0;
    }
}

/* Price Display Styles */
.price-display {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price-details h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.distance-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.distance-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.price-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-option {
    background: #fff;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.price-option.selected {
    border: 2px solid #ff5722;
    transform: translateY(-2px);
}

.price-option h4 {
    margin: 0 0 0.5rem;
    color: #333;
    font-size: 1rem;
}

.price-option .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff5722;
    margin: 0.5rem 0;
}

.toll-info {
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.toll-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Form Input Styles */
.form-group input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus {
    border-color: #ff5722;
    outline: none;
}

/* Disabled Button Style */
.btn-whatsapp:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .price-options {
        grid-template-columns: 1fr;
    }
    
    .distance-info {
        flex-direction: column;
        gap: 0.5rem;
    }
} 