/* ===========================
   CSS Variables
   =========================== */
:root {
    --primary-color: #e67e22;
    --primary-dark: #d35400;
    --secondary-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Roboto', sans-serif;
}

/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo img {
    height: 50px;
    max-height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
    transition: var(--transition);
    object-fit: contain;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Background image as HTML element */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Gradient overlay - MUST come after the image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.8), rgba(211, 84, 0, 0.8));
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
    transition: var(--transition);
    margin: 0 10px;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

.cta-button.cta-secondary {
    background: transparent;
    border: 2px solid var(--white);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.cta-button.cta-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}
/* Dans votre fichier CSS */

/* Conteneur des boutons CTA */
.cta-buttons {
    display: flex;
    gap: 1rem; /* Espace entre les boutons en desktop */
    flex-wrap: wrap;
}

/* Style de base des boutons */
.cta-button {
    padding: 1rem 2rem;
    background: #d4af37; /* Or/Gold pour Morocco */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .cta-button.cta-secondary {
        background: transparent;
        border: 2px solid #d4af37;
        color: #d4af37;
    }
    
    /* Mobile: Empiler les boutons avec espace */
    @media (max-width: 768px) {
        .cta-buttons {
            flex-direction: column; /* Empile verticalement */
            gap: 1.5rem; /* Espace entre les boutons - AJUSTEZ ICI */
            width: 100%;
        }
        
        .cta-button {
            width: 100%; /* Boutons pleine largeur */
            text-align: center;
            padding: 1.2rem 2rem; /* Plus grand sur mobile */
            margin: 10px auto;
        }
    }
    
    /* Très petits écrans */
    @media (max-width: 480px) {
        .cta-buttons {
            gap: 1rem; /* Moins d'espace sur très petits écrans */
            margin: 10px auto;
        }
    }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ===========================
   Features Section
   =========================== */
.features {
    background: var(--bg-light);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   Vehicles & Pricing Section
   =========================== */
.vehicles-pricing {
    background: var(--bg-light);
    padding: 80px 0;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.vehicle-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vehicle-card.featured {
    box-shadow: 0 10px 40px rgba(230, 126, 34, 0.2);
}

.vehicle-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
}

/* Price Ribbon - Corner Style */
.price-ribbon {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 250px;
    height: 200px;
    overflow: hidden;
    z-index: 2;
}

.price-ribbon::before {
    content: attr(data-price);
    position: absolute;
    top: 40px;
    right: -55px;
    width: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 12px 0;
    font-size: 1.3rem;
    font-weight: 700;
    transform: rotate(30deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: pre-line;
    line-height: 1.3;
}

.price-ribbon small {
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.9;
}

.price-ribbon.popular::before {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
    }
}

.vehicle-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vehicle-content {
    padding: 30px;
}

.vehicle-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.vehicle-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.vehicle-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 5px 12px;
    background: var(--bg-light);
    border-radius: 20px;
}

.vehicle-meta span svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.vehicle-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.vehicle-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.vehicle-highlights li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.vehicle-highlights li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.vehicle-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
}

.price-includes {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.pricing-note {
    background: linear-gradient(135deg, #fff8f0, #ffe8d5);
    border-left: 10px solid var(--primary-color);
    padding: 25px 35px;
    text-align: center;
    box-shadow: var(--shadow);
}

.pricing-note p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.pricing-note strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-image {
        height: 240px;
    }
    
    .price-ribbon {
        font-size: 1.3rem;
        padding: 10px 16px;
    }
    
    .vehicle-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===========================
   Tours Section
   =========================== */
.tours {
    background: var(--white);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tour-badge.premium {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.tour-badge.luxury {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.tour-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.tour-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.tour-content > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.tour-highlights {
    margin-bottom: 25px;
}

.tour-highlights li {
    color: var(--text-light);
    padding: 5px 0;
    font-size: 0.95rem;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.book-btn {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* ===========================
   About Section
   =========================== */
.about {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.about-feature p {
    opacity: 0.9;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form,
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.submit-btn {
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ===========================
   Terms of Service Page
   =========================== */
.terms-section {
    background: var(--white);
}

.terms-content {
    text-align: left;
}

.terms-block {
    margin-bottom: 40px;
}

.terms-block h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.terms-block p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-block ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.terms-block ul li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 8px;
}

.terms-block strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===========================
   Modal
   =========================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    background: none;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.booking-summary {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.booking-summary p {
    margin: 10px 0;
    color: var(--text-dark);
}

/* ===========================
   Back to Top Button
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===========================
   WhatsApp Floating Button
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .tours-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .tour-content {
        padding: 20px;
    }

    .tour-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}

/* ===========================
   Airport Transfers Page Styles
   =========================== */

/* Airport Hero Section */
.airport-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.airport-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.airport-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.85), rgba(211, 84, 0, 0.85));
    z-index: 1;
}

.airport-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.airport-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.airport-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.airport-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Why Choose Section */
.airport-why-choose {
    background: var(--bg-light);
}

.airport-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.airport-feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.airport-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.airport-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.airport-feature-icon svg {
    width: 35px;
    height: 35px;
}

.airport-feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.airport-feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Airport Locations Section */
.airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.airport-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.airport-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.airport-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.airport-card-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    flex: 1;
}

.airport-code {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.airport-distance {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.airport-destinations {
    list-style: none;
    margin-bottom: 25px;
}

.airport-destinations li {
    padding: 8px 0;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
}

.airport-destinations li:last-child {
    border-bottom: none;
}

.airport-price {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.price-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.airport-book-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.airport-book-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
}

/* Vehicle Options Section */
.airport-vehicles {
    background: var(--bg-light);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vehicle-card.featured {
    border: 3px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.vehicle-image {
    /* width: 80px;
    height: 80px; */
    margin: 0 auto 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.vehicle-image svg {
    width: 45px;
    height: 45px;
}

.vehicle-card h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.vehicle-capacity {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.vehicle-features {
    list-style: none;
    margin-bottom: 20px;
}

.vehicle-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.vehicle-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.vehicle-ideal {
    color: var(--text-light);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    font-style: italic;
}

/* How It Works Section */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.step-icon svg {
    width: 35px;
    height: 35px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    align-self: center;
    margin-top: 60px;
}

/* Pricing Section */
.airport-pricing {
    background: var(--bg-light);
}

.pricing-info-box {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.pricing-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.pricing-table {
    overflow-x: auto;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 20px;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-row:last-of-type {
    border-bottom: none;
}

.pricing-header-row {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    border-bottom: none;
}

.pricing-col {
    text-align: center;
}

.pricing-col:first-child {
    text-align: left;
}

.pricing-row:not(.pricing-header-row) .pricing-col {
    color: var(--text-dark);
}

.pricing-row:not(.pricing-header-row):hover {
    background: var(--bg-light);
}

.pricing-notes {
    margin-top: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.pricing-notes p {
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.7;
}

.pricing-notes p:last-child {
    margin-bottom: 0;
}

/* Testimonials */
.airport-testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 2px solid var(--primary-color);
    padding-top: 15px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Booking Form Section */
.airport-booking {
    background: var(--bg-light);
}

.booking-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.airport-booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 20px;
    text-align: center;
}

.submit-btn {
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(230, 126, 34, 0.5);
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.form-disclaimer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* FAQ Section */
.airport-faq {
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 300;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Final CTA Section */
.airport-final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    background: var(--white);
    color: var(--primary-color);
}

.cta-buttons .cta-button:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.cta-buttons .cta-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .cta-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.cta-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-feature svg {
    width: 24px;
    height: 24px;
}

.cta-feature span {
    font-weight: 500;
}

/* ===========================
   Responsive Styles for Airport Transfers
   =========================== */

@media (max-width: 1024px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .pricing-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .airport-hero {
        height: 60vh;
        min-height: 400px;
    }

    .airport-hero-title {
        font-size: 2.2rem;
    }

    .airport-hero-subtitle {
        font-size: 1.1rem;
    }

    .airport-features-grid,
    .airports-grid,
    .vehicles-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-wrapper {
        padding: 30px 20px;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }

    .pricing-col {
        text-align: left;
        padding: 5px 0;
    }

    .pricing-col::before {
        content: attr(data-label);
        font-weight: 600;
        display: inline-block;
        width: 120px;
    }

    .pricing-header-row {
        display: none;
    }

    .step-arrow {
        display: none;
    }

    .final-cta-content h2 {
        font-size: 1.8rem;
    }

    .final-cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .airport-hero-title {
        font-size: 1.8rem;
    }

    .airport-hero-subtitle {
        font-size: 1rem;
    }

    .airport-hero-cta {
        flex-direction: column;
    }

    .airport-feature-card,
    .vehicle-card {
        padding: 25px 20px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .booking-form-wrapper {
        padding: 25px 15px;
    }

    .submit-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}
/* Optimized fade-in animations - no forced layout reflows */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.fade-in-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.breadcrumb-container {
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.breadcrumb-container a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-container a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.separator {
    margin: 0 10px;
    color: #999;
}


/* Basic Dropdown Logic */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none; /* Hide by default */
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.dropdown-menu li a {
    color: #333;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #f1f1f1;
}

/* Show the menu on hover */
.nav-item-dropdown:hover .dropdown-menu {
    display: block;
}

/* ===========================
   Tour Detail Pages Styles
   =========================== */

/* Tour Detail Section */
.tour-detail {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
}

.tour-detail .container {
    margin-top: 30px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 30px;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.9em;
    position: relative;
    z-index: 10;
}

.breadcrumb-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    margin: 0 8px;
    color: #999;
}

.breadcrumb-nav .current {
    color: #555;
    font-weight: 600;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c87b2c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Tour Detail Grid Layout */
.tour-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.tour-main-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Tour Header */
.tour-header-title {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.tour-hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.tour-hero-stats > div {
    display: flex;
    flex-direction: column;
}

.tour-hero-stats span:first-child {
    color: #666;
    font-size: 0.9em;
    font-weight: 500;
}

.tour-hero-stats div div {
    font-weight: 600;
    color: #2c3e50;
}

/* Tour Content Sections */
.tour-section {
    margin-bottom: 40px;
}

.tour-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.tour-section h3 {
    font-size: 1.5em;
}

.tour-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Highlights Box */
.highlights-box {
    background: #fff8f0;
    padding: 30px;
    border-left: 4px solid #c87b2c;
    margin-bottom: 40px;
}

.highlights-box h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.highlights-box ul {
    list-style: none;
    padding: 0;
}

.highlights-box li {
    padding: 12px 0;
    border-bottom: 1px solid #f0e0d0;
}

.highlights-box li:last-child {
    border-bottom: none;
}

/* Itinerary Day Items */
.day-item {
    margin-bottom: 35px;
    padding-left: 20px;
    border-left: 3px solid #c87b2c;
}

.day-item h3 {
    color: #c87b2c;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.day-item .day-distance {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
    font-weight: 500;
}

.day-item p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.day-item a {
    color: #c87b2c;
    text-decoration: underline;
}

/* Included/Excluded Grid */
.included-excluded-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.included-box {
    background: #f0f9f4;
    padding: 25px;
    border-left: 3px solid #28a745;
}

.included-box h3 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.included-box ul,
.excluded-box ul {
    line-height: 2;
    color: #555;
    padding-left: 20px;
    list-style-type: disc;
}

.included-box ul li,
.excluded-box ul li {
    margin-bottom: 8px;
}

.excluded-box {
    background: #fff5f5;
    padding: 25px;
    border-left: 3px solid #dc3545;
}

.excluded-box h3 {
    color: #dc3545;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.excluded-box .important-note {
    margin-top: 15px;
    padding: 12px;
    background: white;
    font-size: 0.9em;
}

.excluded-box .important-note a {
    color: #c87b2c;
    text-decoration: underline;
}

/* Tour Gallery */
.tour-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px 15px 15px;
    font-size: 0.95em;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Booking Terms Notice */
.booking-notice {
    background: #fff3cd;
    padding: 25px;
    border-left: 4px solid #ffc107;
    margin-bottom: 30px;
}

.booking-notice h3 {
    color: #856404;
    margin-bottom: 15px;
}

.booking-notice p,
.booking-notice ul {
    line-height: 1.8;
    color: #856404;
}

.booking-notice ul {
    padding-left: 20px;
}

.booking-notice a {
    color: #856404;
    text-decoration: underline;
}

/* Sidebar Sticky */
.sidebar-sticky {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
}

.price-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.price-card-header .label {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.price-display {
    font-size: 3em;
    font-weight: bold;
    color: #c87b2c;
}

.price-card-header .per-vehicle {
    font-size: 0.9em;
    color: #666;
}

.price-note {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.price-note p {
    font-size: 0.85em;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.sidebar-sticky .book-btn {
    width: 100%;
    padding: 15px;
    background: #c87b2c;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
}

.whatsapp-link {
    display: block;
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

/* Quick Facts Card */
.quick-facts-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.quick-facts-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.quick-facts-list {
    line-height: 2.5;
    color: #555;
}

.quick-facts-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}

.quick-facts-row:last-child {
    border-bottom: none;
}

/* Practical Info Boxes */
.info-box {
    background: #f8f9fa;
    padding: 25px;
    margin-bottom: 20px;
}

.info-box h3 {
    color: #c87b2c;
    margin-bottom: 15px;
}

.info-box p {
    line-height: 1.8;
    color: #555;
}

.info-box ul {
    line-height: 2;
    color: #555;
    padding-left: 20px;
    margin-top: 10px;
}

.info-box em {
    color: #555;
}

/* FAQ Items for Tour Pages */
.tour-detail .faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.tour-detail .faq-item h4 {
    color: #c87b2c;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.tour-detail .faq-item p {
    line-height: 1.8;
    color: #555;
}

.tour-detail .faq-item a {
    color: #c87b2c;
    text-decoration: underline;
}

/* CTA Buttons for Tour Pages */
.tour-detail .cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.tour-detail .cta-buttons .book-btn {
    flex: 1;
    padding: 18px;
    background: #c87b2c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
}

.tour-detail .cta-buttons a {
    flex: 1;
    padding: 18px;
    background: white;
    color: #c87b2c;
    border: 2px solid #c87b2c;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
}

.related-tour-item .price {
    color: #c87b2c;
    font-size: 0.9em;
    font-weight: 600;
}

/* Related Tours Card */
.related-tours-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.related-tours-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.related-tour-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.related-tour-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-tour-item a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.related-tour-item p {
    font-size: 0.85em;
    color: #666;
    margin: 0;
}

/* Tour Detail Responsive Styles */
@media (max-width: 968px) {
    .tour-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tour-main-content {
        padding: 25px;
    }

    .included-excluded-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tour-detail h1 {
        font-size: 1.6em !important;
    }

    .tour-detail h2 {
        font-size: 1.4em !important;
    }

    .tour-detail h3 {
        font-size: 1.2em !important;
    }

    .sidebar-sticky {
        position: static !important;
    }

    .tour-detail .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .tour-detail {
        padding: 80px 0 40px !important;
    }

    .tour-main-content {
        padding: 20px;
    }

    .breadcrumb-nav,
    .breadcrumb-container {
        margin-bottom: 20px;
        padding: 12px 15px;
        font-size: 0.85em;
    }

    .breadcrumb-nav .separator,
    .breadcrumb-container .separator {
        margin: 0 5px;
    }

    .tour-detail h1 {
        font-size: 1.4em !important;
        margin-bottom: 15px !important;
    }

    .tour-detail h2 {
        font-size: 1.3em !important;
        margin-bottom: 20px !important;
    }

    .tour-hero-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .hero-image {
        height: 250px !important;
    }

    .hero-badge {
        top: 10px !important;
        right: 10px !important;
        padding: 8px 15px !important;
        font-size: 0.9em !important;
    }

    .comparison-table {
        font-size: 0.8em;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .tour-main-content {
        padding: 15px;
    }

    .breadcrumb-nav,
    .breadcrumb-container {
        margin-bottom: 15px;
        padding: 10px 12px;
        font-size: 0.8em;
        overflow-x: auto;
        white-space: nowrap;
    }

    .breadcrumb-nav .separator,
    .breadcrumb-container .separator {
        margin: 0 4px;
    }

    .tour-detail h1 {
        font-size: 1.2em !important;
    }

    .tour-hero-stats {
        grid-template-columns: 1fr !important;
    }

    .hero-image {
        height: 200px !important;
    }

    .price-display {
        font-size: 2em !important;
    }

    .quick-facts-row {
        font-size: 0.9em !important;
    }

    .tour-gallery {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .gallery-item {
        height: 250px !important;
    }
}

/* Schedule Items for Day Trips */
.schedule-item {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid #c87b2c;
}

.schedule-item h4 {
    color: #c87b2c;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.schedule-item .time {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
    font-weight: 600;
}

.schedule-item p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e0e0e0;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .highlight {
    background: #fff8f0;
    font-weight: 600;
    color: #c87b2c;
}