/* Global Styles */
:root {
    --primary-color: #000000;
    /* Luxury Black */
    --hover-color: #1e293b;
    --gold-accent: #C5A059;
    --text-white: #ffffff;
    --text-black: #111111;
    --bg-light: #f9f9f9;
    --border-radius: 16px;
    /* Increased for modern look */
    --transition: all 0.3s ease;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.65);
    /* More transparent */
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --backdrop-blur: blur(16px);
    --glass-card-bg: rgba(255, 255, 255, 0.75);
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-black);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    /* Subtle Luxurious Gradient Background for Glass Effect */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* RTL Support for Arabic */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
    font-family: 'Amiri', 'Lato', serif;
    /* Use Amiri font for Arabic if available, else fallback */
}

[dir="rtl"] .nav-links {
    margin-right: auto;
    margin-left: 0;
}

[dir="rtl"] .contact-info a {
    margin-right: 0;
    margin-left: 20px;
}

[dir="rtl"] .contact-info i {
    margin-right: 0;
    margin-left: 5px;
}

[dir="rtl"] h2.section-title::after {
    margin-right: auto;
    margin-left: auto;
}

[dir="rtl"] .pricing-route i,
[dir="rtl"] .pricing-route .fa-arrow-right {
    transform: scaleX(-1);
    /* Flip arrow */
}

[dir="rtl"] .pricing-card {
    text-align: right;
}

[dir="rtl"] .chat-widget-container {
    right: auto;
    left: 30px;
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

/* Intro Overlay */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    background-image: url('assets/pattern_zellige.png');
    background-repeat: repeat;
    background-size: 300px;
    background-blend-mode: soft-light;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fadeOutOverlay 1s ease-in-out 3.5s forwards;
}

/* Logo Animation */
.intro-logo {
    width: 150px;
    opacity: 0;
    transform: scale(0.8);
    animation: logoReveal 1.5s ease-out 0.5s forwards, logoPulse 2s infinite 2s;
}

@keyframes logoReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeOutOverlay {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Zellige Pattern Background */
.pattern-bg {
    background-image: url('assets/pattern_zellige.png');
    background-repeat: repeat;
    background-size: 400px;
    background-blend-mode: soft-light;
}

/* Zellige Borders */
.zellige-border-top {
    position: relative;
}

.zellige-border-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-image: url('assets/pattern_zellige.png');
    background-size: 100px;
    border-bottom: 2px solid var(--gold-accent);
}

h1,
h2,
h3,
h4,
.price-display,
.review-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

h2.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-accent);
    margin: 15px auto 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* New Pattern Background utility */
.pattern-bg {
    background-image: url('assets/images/zellige_pattern.png');
    background-repeat: repeat;
    background-size: 400px;
    /* Adjust scale */
    background-blend-mode: soft-light;
}

/* Buttons (Pill Shape) */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    /* Added border match */
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ... existing styles ... */

/* Pricing Section */
.pricing-section {
    background-color: #f7f7f7;
    position: relative;
    padding: 80px 0;
}

/* Pricing Card Redesign - Glass */
.pricing-card {
    background: var(--glass-card-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    border: var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.9);
    /* Lighter on hover */
}

.pricing-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pricing-card:hover .pricing-image img {
    transform: scale(1.1);
}

.pricing-content {
    padding: 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-route {
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-route i {
    color: var(--gold-accent);
    font-size: 0.8rem;
}

.pricing-price {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-price small {
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    color: #999;
}

.btn-small {
    display: inline-block;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    padding: 8px 25px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    font-size: 0.8rem;
}

/* Improved Fleet Card Styling - Glass */
.fleet-item-card {
    background: var(--glass-card-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fleet-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.9);
}

.fleet-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-specs {
    margin-bottom: 25px;
    flex-grow: 1;
}

.fleet-specs li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.fleet-specs li i {
    color: var(--gold-accent);
    width: 20px;
    text-align: center;
}

/* Premium "Select Vehicle" Button (Replacing Black Block) */
.fleet-content .btn-small {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    padding: 14px 20px;
    margin-top: auto;
    /* Pushes button to bottom */
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
}

.fleet-content .btn-small:hover {
    background: var(--primary-color);
    color: var(--gold-accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Reviews Section */
.reviews-section {
    background-color: white;
    padding: 80px 0;
    position: relative;
    /* For pattern */
}

.review-card {
    background: var(--glass-card-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
    border: var(--glass-border);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.9);
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    /* Ensure image stays round */
    border: 2px solid var(--gold-accent);
    /* Gold border for avatar */
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    flex: 1;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: var(--gold-accent);
    font-size: 0.9rem;
}

.top-bar {
    background-color: #0d0d0d;
    color: var(--text-white);
    padding: 8px 0;
    /* Reduced padding */
    font-size: 0.8rem;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info a {
    margin-right: 20px;
    color: #ccc;
    white-space: nowrap;
}

.contact-info i {
    margin-right: 5px;
    color: var(--text-white);
}

.social-lang i {
    margin-left: 10px;
    color: var(--text-white);
    cursor: pointer;
}

/* Navbar - Glass Effect */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    /* Slightly less transparent for readability */
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    padding: 15px 0;
    box-shadow: var(--glass-shadow);
    border-bottom: var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    /* Use gap for consistent spacing */
}

.navbar .nav-links li {
    margin-left: 0;
    /* Reset margins in favor of gap */
}

.navbar .nav-links a {
    font-weight: 600;
    /* Bolder text */
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--text-black);
    white-space: nowrap;
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
    color: var(--primary-color);
}

.navbar .btn-container a {
    color: var(--text-white) !important;
}

/* Mobile Menu Toggle (Hidden by default) */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: var(--text-white);
    text-align: center;
    overflow: hidden;
    /* Important for slider */
}

/* Hero Slider Backgrounds */
.hero-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slider-img.active {
    opacity: 0.6;
    /* Dimmed for text readability */
    transform: scale(1.05);
    /* Subtle zoom effect */
    transition: opacity 1.5s ease-in-out, transform 6s linear;
}

/* Overlay gradient */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Reservation Section (Split Layout) */
.reservation-section {
    display: flex;
    min-height: 600px;
    background: #f4f4f4;
}

.reservation-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    /* Limit width */
    margin: 0 auto;
}

.reservation-left {
    width: 40%;
    /* Slightly wider form */
    padding: 50px 40px;
    background: var(--text-white);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.reservation-right {
    width: 60%;
    background: #e0e0e0;
    position: relative;
}

.reservation-left h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* Booking Tabs */
.booking-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: #444;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fdfdfd;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.full-width {
    width: 100%;
}

.price-display {
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    /* Glassy inner container */
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

/* Fleet Section (Z-Pattern) */
.section {
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--text-black);
}

.fleet-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.fleet-item.reverse {
    flex-direction: row-reverse;
}

.fleet-image {
    flex: 1;
}

.fleet-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fleet-content {
    flex: 1;
}

.fleet-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.fleet-specs {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: #666;
    font-size: 0.9rem;
}

.fleet-specs i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Footer */
footer {
    background: #111;
    color: #777;
    padding: 50px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

/* Pricing Section */
.pricing-section {
    background-color: var(--bg-light);
    text-align: center;
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    margin-top: -30px;
    max-width: 600px;
}

.pricing-price small {
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    color: #999;
}

/* Reviews Section */
.reviews-section {
    background-color: white;
    padding: 80px 0;
}

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

.review-card {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.review-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin: 0;
    font-size: 1rem;
    color: var(--text-black);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: #f1c40f;
    /* Gold color */
    font-size: 0.9rem;
}

/* Chat & Whatsapp widgets */
.chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-bubble {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    color: var(--primary-color);
}

/* App Download Section */
.app-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.app-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.app-qr {
    width: 150px;
    height: 150px;
    border: 4px solid var(--gold-accent);
    border-radius: 10px;
    background: white;
    padding: 5px;
}

.app-qr img {
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .app-content {
        flex-direction: row;
        justify-content: center;
        text-align: left;
        gap: 40px;
    }
}

/* Chat Bubble styles start here.. */
.chat-bubble.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Chauffeur Section */
.chauffeur-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.chauffeur-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.chauffeur-image {
    flex: 1;
    position: relative;
}

.chauffeur-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--gold-accent);
}

.chauffeur-content {
    flex: 1;
}

.chauffeur-content h2 {
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.5rem;
}

.chauffeur-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.chauffeur-qualities {
    list-style: none;
    margin-top: 30px;
}

.chauffeur-qualities li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
}

.chauffeur-qualities li i {
    color: var(--gold-accent);
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .chauffeur-grid {
        flex-direction: column;
        text-align: center;
    }

    .chauffeur-qualities li {
        justify-content: center;
    }
}



.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    height: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 5;
}

.chat-widget-container.active .chat-box {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-info h4 {
    font-size: 1rem;
    margin: 0;
}

.chat-status {
    width: 8px;
    height: 8px;
    background-color: #4facfe;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    border: 1px solid white;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9f9f9;
    font-size: 0.9rem;
}

.chat-input-area {
    padding: 10px;
    border-top: 1px solid #eee;
    display: flex;
}

.chat-input-area input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.chat-input-area button {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    margin-left: 10px;
    font-size: 1.1rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    /* Official WhatsApp Color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* --- MOBILE RESPONSIVENESS --- */
@media screen and (max-width: 1024px) {
    /* ... existing media queries ... */

    /* Increased breakpoint for tablets */
    /* Navbar */
    .mobile-menu-btn {
        display: block;
        margin-left: auto;
    }

    /* Ensure it's visible and pushed right */
    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    /* JS Toggle class */

    .navbar .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .navbar .nav-links a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .navbar .btn-container {
        margin-top: 10px;
        display: flex;
        justify-content: center;
    }

    /* Hover fallback removed in favor of JS toggle for better touch support */

    /* Reservation Split - Stack Vertical */
    .reservation-section {
        flex-direction: column;
    }

    .reservation-left,
    .reservation-right {
        width: 100%;
    }

    .reservation-left {
        padding: 30px 20px;
    }

    .reservation-right {
        height: 350px;
        min-height: 350px;
    }

    /* Fleet */
    .fleet-item,
    .fleet-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .fleet-item {
        margin-bottom: 50px;
    }

    .fleet-image img {
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        flex-direction: column;
    }

    .top-bar .container {
        justify-content: center;
        gap: 10px;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .navbar .logo img {
        height: 40px !important;
        /* Reduce size on mobile to prevent overlap */
    }

    .navbar {
        padding: 5px 0;
        /* Compact navbar */
    }
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gold-accent);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* My Booking Dashboard Table */
.booking-item {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.booking-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    color: var(--primary-color);
}

.booking-details {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

/* Reservation Social Media Section */
.reservation-social {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}

.reservation-social p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.reservation-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.reservation-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--gold-accent));
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.reservation-social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.reservation-social-icons a i {
    color: white;
}

/* Modal Styles - HIDDEN BY DEFAULT */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #888;
    font-weight: bold;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Popular Journeys Section */
.popular-journeys {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.journeys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.journey-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 10;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.journey-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.journey-content {
    padding: 20px;
}

.journey-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.journey-route {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Rio Digital Branding */
.rio-branding {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rio-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rio-link {
    color: var(--gold-accent);
    text-decoration: none;
    transition: var(--transition);
}

.rio-link:hover {
    color: white;
}

/* Mobile Adjustments for Rio Branding */
@media screen and (max-width: 768px) {
    .rio-branding {
        font-size: 0.8rem;
    }
}

.journey-price {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.95rem;
    margin-right: 10px;
}

.new-price {
    color: var(--gold-accent);
    font-size: 1.5rem;
    font-weight: bold;
}

.btn-book-journey {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color), #1a3a52);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-journey:hover {
    background: linear-gradient(135deg, #1a3a52, var(--primary-color));
    transform: scale(1.02);
}

/* Urgency Banner */
.urgency-container {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--primary-color);
    border: 2px solid var(--gold-accent);
    animation: urgencyFloat 3s ease-in-out infinite;
}

@keyframes urgencyFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.urgency-pulse {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulsate 1.5s ease-in-out infinite;
}

@keyframes pulsate {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.urgency-pulse i {
    font-size: 2.5rem;
    color: white;
}

.urgency-container h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.discount-text {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.urgency-subtext {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.urgency-features {
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.feature-item i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* ========================================
   POPULAR JOURNEYS SECTION
   ======================================== */

.popular-journeys-section {
    background: #f4f4f4;
    padding: 80px 0;
}

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

.journey-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.journey-badge,
.journey-badge-popular,
.journey-badge-hot {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    z-index: 10;
    color: white;
}

.journey-badge {
    background: var(--gold-accent);
}

.journey-badge-popular {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.journey-badge-hot {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.journey-badge.urgency-pulse {
    animation: badgePulse 2s infinite;
}

.journey-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.journey-card:hover .journey-img {
    transform: scale(1.1);
}

.journey-content {
    padding: 25px;
}

.journey-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.journey-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.journey-price {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.new-price,
.new-price-single {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.new-price-single {
    font-size: 1.6rem;
}

.btn-book-journey {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-journey:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* Highlight flash animation */
@keyframes highlightFlash {

    0%,
    100% {
        background: white;
    }

    50% {
        background: #fff8e1;
    }
}

.highlight-flash {
    animation: highlightFlash 1s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .journeys-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SCROLLING MARQUEE (URGENCY BANNER)
   ======================================== */
.marquee-track {
    white-space: nowrap;
    overflow: hidden;
    background: white;
    /* Removed Red Gradient */
    padding: 15px 0;
    color: var(--primary-color);
    border: 1px solid #eee;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    border-radius: 8px;
    /* Match container */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.marquee-content {
    display: flex;
    animation: scrollText 20s linear infinite;
    gap: 40px;
    padding-left: 100%;
    /* Start off-screen */
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-content span.divider {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

/* Pause on hover */
.marquee-track:hover .marquee-content {
    animation-play-state: paused;
}

/* ========================================
   SCROLLING REVIEWS (CAROUSEL)
   ======================================== */
.reviews-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.reviews-marquee-wrapper::before,
.reviews-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.reviews-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollReviews 40s linear infinite;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Scroll half because of duplicates */
}

.reviews-track:hover {
    animation-play-state: paused;
}

.reviews-track .review-card {
    width: 350px;
    /* Fixed width for smoothness */
    flex-shrink: 0;
    margin: 0;
    /* Override generic margins if any */
}

/* ========================================
   TRADITIONAL INTRO OVERLAY
   ======================================== */
/* ========================================
   TRADITIONAL INTRO OVERLAY (Moroccan Collage)
   ======================================== */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #000;
    background-image: url('assets/intro_morocco.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Cinematic Fade Out & Zoom */
    transition: opacity 1.5s ease-in-out, transform 2s ease-in-out, visibility 1.5s;
    transform-origin: center center;
}

#intro-overlay.intro-hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.2);
    /* "Enter" effect */
    pointer-events: none;
}

.intro-logo-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 8px;
    border: 3px solid var(--gold-accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: logoFloat 3s ease-in-out infinite;
}

.intro-logo-center {
    width: 220px;
    display: block;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   LUXURY CHAUFFEUR FAB (Robot Assistant)
   ======================================== */
.elite-fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9000;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

.fab-main-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gold-accent);
    color: #000;
    border: 2px solid #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-main-btn:hover {
    transform: scale(1.1);
}

.fab-main-btn.active {
    transform: rotate(45deg);
    /* Or change icon */
    background: #fff;
    color: var(--gold-accent);
    border-color: var(--gold-accent);
}

.fab-main-btn .fab-tooltip {
    position: absolute;
    right: 75px;
    background: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
    border: 1px solid var(--gold-accent);
}

.fab-main-btn.active .fab-tooltip {
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
}

/* Triangle for tooltip */
.fab-main-btn .fab-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--gold-accent);
}

.fab-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
    position: relative;
}

/* Tooltip for FAB options */
.fab-option::before {
    content: attr(title);
    position: absolute;
    right: 60px;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
    pointer-events: none;
}

.fab-option:hover::before {
    opacity: 1;
    visibility: visible;
}

.fab-option:hover {
    background: var(--gold-accent);
    color: #fff;
    transform: scale(1.1);
}

/* Specific colors slightly */
.fab-option[title="WhatsApp"] {
    color: #25D366;
}

.fab-option[title="WhatsApp"]:hover {
    background: #25D366;
    color: white;
}

/* ========================================
   HOSPITALITY SECTION
   ======================================== */
.hospitality-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #000;
    color: #fff;
    min-height: 500px;
}

.hospitality-content {
    flex: 1;
    min-width: 300px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('assets/pattern_zellige.png');
    background-size: 300px;
    background-blend-mode: soft-light;
}

.hospitality-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.hospitality-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
    color: #e0e0e0;
}

.hospitality-image {
    flex: 1;
    min-width: 300px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hospitality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hospitality-image:hover img {
    transform: scale(1.05);
}

/* ========================================
   GOLD BUTTON (WhatsApp)
   ======================================== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #FFD700, #C5A059);
    color: #000;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
    border: 1px solid #fff;
    font-size: 1rem;
    margin-left: 15px;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.6);
    background: linear-gradient(135deg, #fff, #FFD700);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hospitality-section {
        flex-direction: column-reverse;
        /* Image on top on mobile usually looks better, but let's keep text top? No, image top usually. Let's try text top for story. */
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-gold {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

/* Loading Overlay Styles */
#loading-overlay,
#processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Cinzel', serif;
}

#loading-overlay.active,
#processing-overlay.active {
    display: flex;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(197, 160, 89, 0.3);
    border-top: 5px solid var(--gold-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes drive {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes textFade {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

.driving-car-animation {
    width: 100%;
    height: 150px;
    position: relative;
    overflow: hidden;
}

.driving-car-animation img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 300px;
    transform: translateX(-50%);
    animation: drive 3s linear forwards;
}

/* --- Premium Reservation Redesign --- */

.reservation-section-premium {
    background: url('assets/pattern_zellige.png'), linear-gradient(135deg, #fdfbf7 0%, #f4f4f4 100%);
    background-blend-mode: soft-light;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.booking-card-premium {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Soft, deep shadow */
    border: 1px solid rgba(197, 160, 89, 0.15);
    /* Subtle gold border */
    padding: 50px;
    width: 100%;
    max-width: 650px;
    /* Comfortable width */
    position: relative;
    overflow: hidden;
}

.booking-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-accent), var(--primary-color));
}

.booking-header-premium {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header-premium h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.booking-header-premium p {
    color: #888;
    font-weight: 300;
}

/* Premium Tabs */
.booking-tabs-premium {
    display: flex;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 35px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn-premium {
    padding: 10px 30px;
    border-radius: 40px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.tab-btn-premium.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Premium Form Groups */
.form-group-premium {
    margin-bottom: 25px;
    position: relative;
}

.form-group-premium label {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
    margin-left: 20px;
    /* Align with input text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    transition: color 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.form-group-premium input,
.form-group-premium select {
    width: 100%;
    padding: 16px 20px 16px 55px;
    /* Left padding for icon */
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-size: 1rem;
    color: var(--text-black);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    /* Very subtle depth */
    appearance: none;
    font-family: 'Lato', sans-serif;
}

/* Custom Arrow for Select */
.form-group-premium select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 25px center;
    background-size: 16px;
    cursor: pointer;
}

.form-group-premium input:focus,
.form-group-premium select:focus {
    border-color: var(--gold-accent);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.15);
    outline: none;
}

.form-group-premium input:focus+i,
.input-icon-wrapper input:focus~i,
.input-icon-wrapper select:focus~i {
    color: var(--gold-accent);
}

/* Price Badge */
.price-badge-premium {
    background: black;
    color: white;
    padding: 20px 35px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.price-badge-premium::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: var(--gold-accent);
}

.price-badge-premium span:first-child {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.price-badge-premium .dynamic-price {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-accent);
}

/* Primary Button Update */
.btn-premium-action {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    letter-spacing: 2px;
    background: var(--primary-color);
    color: var(--gold-accent);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-premium-action:hover {
    background: var(--gold-accent);
    color: white;
    border-color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

/* Row Layout */
.form-row-premium {
    display: flex;
    gap: 20px;
}

.form-row-premium>div {
    flex: 1;
}

@media (max-width: 768px) {
    .form-row-premium {
        flex-direction: column;
        gap: 0;
    }

    .booking-card-premium {
        padding: 30px 20px;
    }
}

/* --- Mobile Fixes & Enhancements --- */


/* Fix FAB/Bot Icon on Mobile */
@media (max-width: 768px) {
    .elite-fab-container {
        bottom: 20px;
        right: 20px;
    }

    /* Hide the text label on mobile to prevent overlap */
    .fab-tooltip {
        display: none !important;
    }

    .fab-main-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .chat-box {
        bottom: 80px;
        right: 10px;
        width: 90%;
        left: 5%;
    }

    /* Reduce chat widget sizes to prevent blocking buttons */
    .chat-bubble {
        max-width: 180px !important;
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        bottom: 90px !important;
        right: 15px !important;
    }

    .chat-toggle {
        width: 50px !important;
        height: 50px !important;
        bottom: 80px !important;
        right: 15px !important;
    }

    .whatsapp-float {
        bottom: 15px !important;
        right: 15px !important;
    }

    .whatsapp-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }

    /* Add bottom padding to forms so buttons aren't hidden by floating widgets */
    .reservation-section,
    .reservation-section-premium,
    .reservation-form-container {
        padding-bottom: 100px !important;
    }

    .booking-card-premium {
        padding-bottom: 80px !important;
    }

    /* Ensure buttons are accessible */
    .btn-premium-action,
    .btn-primary,
    button[type="submit"] {
        margin-bottom: 20px !important;
    }

    /* Top bar adjustments */
    .top-bar .container {
        padding: 8px 15px !important;
    }

    .contact-info a {
        font-size: 0.75rem !important;
        padding: 0 5px !important;
    }

    .social-lang a,
    .social-lang button {
        font-size: 0.85rem !important;
        padding: 3px 8px !important;
    }
}

/* Enhance Fleet Cards on Mobile */
.fleet-item-card {
    /* Stronger shadow and border for better visibility ("cadre displaying good") */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
    /* Gold tinge */
    transition: transform 0.3s ease;
}

.fleet-item-card:hover {
    transform: translateY(-5px);
}

/* Enhance Select Vehicle Button */
.fleet-content .btn-small {
    background: var(--primary-color);
    color: var(--gold-accent);
    border: 1px solid var(--primary-color);
    font-weight: 700;
    padding: 12px 20px;
    margin-top: 15px;
}

/* Make sure specs list is clear */
.fleet-specs li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Header fix for anchor scrolling */
html {
    scroll-padding-top: 100px;
    /* Prevents sticky header overlapping content */
}

/* --- Rio Digital Footer Branding --- */
/* --- Rio Digital Footer Branding --- */
.rio-branding {
    text-align: center;
    padding: 20px 0;
    background: #000;
    color: #666;
    font-size: 0.8rem;
    border-top: 1px solid #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rio-content {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.rio-logo-small {
    height: 24px;
    width: auto;
    border-radius: 4px;
}

.rio-link {
    color: var(--gold-accent);
    text-decoration: none;
    transition: color 0.3s;
}

.rio-link:hover {
    color: white;
}

/* --- Intro Overlay Updates --- */
#intro-overlay {
    /* Updated to use the new grand background */
    background: url('assets/morocco_grand_collage.png') no-repeat center center/cover;
}

.intro-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
    position: relative;
}

.intro-flag {
    width: 60px;
    height: auto;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    /* Gold glow */
}