@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --riviera-white: #FAFAF8;
    --sea-navy: #0F1D32;
    --champagne-bronze: #C4A265; /* Sophisticated, muted premium bronze */
    --bronze-gradient: linear-gradient(135deg, #C4A265 0%, #8E6D3B 100%);
    --yacht-cream: #F0EBE3;
    --soft-gray: #6B7280;
    --transition-premium: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--riviera-white);
    color: var(--sea-navy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- HEADER & NAVBAR --- */
.mainHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: 90px;
    background-color: var(--sea-navy);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(188, 163, 127, 0.4);
    transition: box-shadow 0.3s ease;
}

.logo-link {
    text-decoration: none;
    transition: var(--transition-premium);
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--riviera-white);
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.logo-icon {
    color: var(--champagne-bronze);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logo-link:hover .logo {
    color: var(--champagne-bronze);
    cursor: pointer;
}

.logo-link:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
}

.logo-link:active .logo {
    transform: scale(0.98);
}

.navBar ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.navBar a {
    text-decoration: none;
    color: var(--riviera-white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.navBar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--champagne-bronze);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navBar a:hover::after,
.navBar a.active::after {
    width: 100%;
}

.navBar a:hover,
.navBar a.active {
    color: var(--champagne-bronze);
}

.requestButton {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* --- LANGUAGE PICKER --- */
.lang-picker {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 5px;
    height: 100%;
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--riviera-white);
    text-transform: uppercase;
}

.flag-icon {
    width: 28px;
    height: 20px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--riviera-white);
    border: 1px solid rgba(188, 163, 127, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-width: 120px;
    z-index: 1000;
}

.lang-picker:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.lang-option {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 20px !important;
    color: var(--sea-navy) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: left !important;
}

.lang-option::after {
    display: none !important;
}

.lang-option:hover {
    background-color: rgba(188, 163, 127, 0.1);
    color: var(--champagne-bronze) !important;
}

.lang-option.active {
    color: var(--champagne-bronze) !important;
    background-color: rgba(188, 163, 127, 0.05);
}

/* --- BUTTONS --- */
.btn-request {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #FFFFFF; /* Pure white for visibility */
    padding: 12px 28px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid #C4A265;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    pointer-events: auto;
}

.btn-request:hover {
    background: var(--bronze-gradient);
    border-color: transparent;
    color: #FFFFFF; /* Matches the Enquire Now button's premium feel */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(142, 109, 59, 0.4);
}

/* --- HERO SECTION --- */
.heroSection {
    position: relative;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.heroSection::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(22, 34, 56, 0.4), rgba(0, 0, 0, 0.4)), url('images/s-class.webp');
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    z-index: 1;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.heroSection.visible::before {
    transform: scale(1);
}

.heroSection:hover::before {
    filter: blur(0px);
    transform: scale(1.01);
}

.heroContent {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.heroContent h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--yacht-cream);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.heroContent p {
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 18px 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid #C4A265; /* Unified premium gold border */
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--bronze-gradient);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(142, 109, 59, 0.3);
    backdrop-filter: blur(0);
}

/* --- WHY CHOOSE US (CARDS) --- */
.why-choose-us {
    max-width: 1200px;
    margin: 90px auto;
    padding: 0 20px;
}

.features-container {
    display: flex;
    justify-content: space-between;
    gap: 35px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    flex: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.feature-content {
    padding: 35px 30px;
}

.feature-content h3 {
    /* Reverted to strict minimal sans-serif */
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sea-navy);
    margin-bottom: 8px;
}

.feature-content h4 {
    /* Reverted to a simple, quiet italic */
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--champagne-bronze);
    margin-bottom: 18px;
    font-style: italic;
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* --- RIVIERA CONCIERGE BANNER --- */
.cta-banner {
    background: radial-gradient(circle at center top, #2C4365 0%, #172A45 100%);
    color: #fff;
    padding: 110px 20px;
    text-align: center;
    border-top: 2px solid var(--champagne-bronze);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif; /* Kept serif ONLY for this banner */
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--yacht-cream);
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(239, 233, 224, 0.7);
    margin-bottom: 45px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(188, 163, 127, 0.05); /* Very subtle bronze tint */
    color: var(--sea-navy);
    padding: 16px 45px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border: 2px solid #C4A265; /* Unified premium gold border */
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 5;
    pointer-events: auto;
}

.banner-btn:hover {
    background: var(--bronze-gradient);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(142, 109, 59, 0.3);
}

/* --- HAMBURGER BUTTON --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    gap: 5px;
    border-radius: 4px;
    transition: background 0.2s ease;
    z-index: 1001;
    flex-shrink: 0;
}

.hamburger:hover {
    background: rgba(188, 163, 127, 0.1);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--sea-navy);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: center;
}

/* Animated X when open */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- MOBILE NAV OVERLAY --- */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(22, 34, 56, 0.45);
    backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open {
    opacity: 1;
}

/* --- MOBILE MENU PANEL --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(239, 233, 224, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 100px 8% 50px;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-bottom: 1px solid rgba(188, 163, 127, 0.4);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.mobile-menu ul li a {
    display: block;
    padding: 16px 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--sea-navy);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(188, 163, 127, 0.2);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu ul li:first-child a {
    border-top: 1px solid rgba(188, 163, 127, 0.2);
}

.mobile-menu ul li a:hover {
    color: var(--champagne-bronze);
    padding-left: 8px;
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.mobile-menu-footer .btn-request {
    width: 100%;
    text-align: center;
    padding: 16px 28px;
    font-size: 12px;
}

.mobile-lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(188, 163, 127, 0.3);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--sea-navy);
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-lang-btn:hover,
.mobile-lang-btn.active {
    background: var(--sea-navy);
    color: var(--riviera-white);
    border-color: var(--sea-navy);
}

.mobile-lang-btn img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .mainHeader {
        flex-direction: row;
        justify-content: space-between;
        height: 72px;
        padding: 0 5%;
        gap: 0;
        position: sticky;
        top: 0;
        z-index: 1001;
    }

    .navBar {
        display: none;
    }

    .requestButton {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay {
        display: block;
    }

    .features-container {
        flex-direction: column;
    }

    .heroSection {
        height: 70vh;
    }

    .heroContent h1 {
        font-size: 2rem;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }

    .heroContent p {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .service-info-section {
        grid-template-columns: 1fr;
        padding: 50px 5%;
        gap: 30px;
    }

    .service-info-image {
        order: -1;
    }

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

    .why-choose-us {
        margin: 50px auto;
        padding: 0 15px;
    }

    .services-hero {
    text-align: center;
    background-color: transparent;
    /* Removed padding so it does not double up with .services-section */
}
    
    .services-grid {
    max-width: 1200px;
    margin: 30px auto 30px; /* Reduced margin from 60px/100px */
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
    
    .cta-banner {
        padding: 60px 5%;
    }

    .cta-content {
        max-width: 100%;
    }

    .service-detail-hero {
        height: 45vh;
        min-height: 260px;
    }
}

@media (max-width: 480px) {
    .heroContent h1 {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }

    .mobile-menu {
        padding: 90px 6% 50px;
    }
}



/* --- REQUEST PAGE STYLES --- */
.request-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(188, 163, 127, 0.2);
}

.popular-routes-section {
    position: relative;
    background: #FFFFFF; /* Match the content background */
}

.popular-routes-section .section-header {
    padding-top: 60px; /* Reduced since Fleet provides gap */
}

.request-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--sea-navy);
    margin-bottom: 10px;
    text-align: center;
}

.request-container p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--champagne-bronze);
}

.form-group input {
    padding: 15px;
    border: 1px solid #ddd;
    background-color: var(--riviera-white);
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    grid-column: span 2;
    background-color: rgba(188, 163, 127, 0.05);
    color: var(--sea-navy);
    padding: 18px;
    border: 2px solid #C4A265;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    z-index: 5;
    pointer-events: auto;
}

.btn-submit:hover {
    background: var(--bronze-gradient);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(142, 109, 59, 0.3);
}

@media (max-width: 768px) {
    .booking-form { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .btn-submit { grid-column: span 1; }
    .request-container { padding: 30px; margin: 40px 20px; }
}

/* --- FOOTER STYLES --- */
.global-footer {
    background-color: var(--sea-navy);
    color: var(--riviera-white);
    padding: 80px 8% 40px;
    border-top: 1px solid rgba(188, 163, 127, 0.3);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: stretch;
}

.footer-brand .logo {
    color: var(--riviera-white);
    margin-bottom: 20px;
    display: flex;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(252, 250, 250, 0.7);
    max-width: 280px;
}

.footer-heading {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--champagne-bronze);
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(252, 250, 250, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--champagne-bronze);
}

.footer-contact-info p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(252, 250, 250, 0.8);
    margin-bottom: 10px;
}

.footer-contact-info a {
    color: var(--riviera-white);
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(252, 250, 250, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(252, 250, 250, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.legal-links a {
    color: rgba(252, 250, 250, 0.5);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--champagne-bronze);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .legal-links a {
        margin: 0 10px;
    }
}

/* --- SERVICES PAGE SPECIFIC --- */

.services-hero {
    padding: 100px 8% 60px;
    text-align: center;
    background-color: transparent;
}

.services-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--sea-navy);
    margin-bottom: 20px;
}

.service-subtitle {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--champagne-bronze);
    font-weight: 700;
}

.services-grid {
    max-width: 1200px;
    margin: 60px auto 100px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-type-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 4px;
    border: 1px solid rgba(188, 163, 127, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative; /* For stretched link */
}

.service-type-card:hover {
    transform: translateY(-5px);
}

.service-type-card h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--sea-navy);
}

.service-type-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-type-card .banner-btn {
    color: var(--sea-navy);
    border: 2px solid #C4A265;
    padding: 12px 25px;
    font-size: 10px;
    margin-top: auto;
    width: 100%;
    justify-content: center;
}
.service-type-card .banner-btn:hover {
    color: #fff;
}

/* --- FLEET SECTION --- */
.fleet-section { 
    background: linear-gradient(180deg, #FFFFFF 0%, #f0f4f8 100%); 
    padding: 100px 0;
}

.fleet-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--sea-navy);
    margin-bottom: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}



.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.fleet-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    text-align: left;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(188, 163, 127, 0.1);
    position: relative; /* For stretched link */
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: rgba(188, 163, 127, 0.5);
    background: #FFFAF5; /* Luxury cream tint */
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.fleet-card:hover .banner-btn {
    background: var(--bronze-gradient);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(188, 163, 101, 0.3);
}

.fleet-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fleet-card:hover .fleet-image {
    transform: scale(1.08); /* Subtle zoom in */
}

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

.fleet-card h3 {
    font-size: 1.3rem;
    color: var(--sea-navy);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fleet-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.fleet-card .banner-btn {
    color: var(--sea-navy);
    border: 2px solid #C4A265;
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.fleet-card .banner-btn:hover {
    color: #fff;
    background-color: var(--champagne-bronze);
    border-color: var(--champagne-bronze);
}

@media (max-width: 900px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* --- PREMIUM SERVICE PAGES --- */
.service-detail-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
}

.service-detail-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
}

.hero-airport::before { background-image: url('images/airport_transfer.png'); }
.hero-intercity::before { background-image: url('images/intercity_transfer.png'); }
.hero-excursion::before { background-image: url('images/private_excursion.png'); }

.service-detail-hero .heroContent {
    z-index: 2;
    text-align: center;
}

.service-detail-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--yacht-cream);
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 4px 25px rgba(0,0,0,0.4);
    margin-bottom: 15px;
}

.service-info-section {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-info-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--sea-navy);
    margin-bottom: 20px;
}

.service-info-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-info-features {
    list-style: none;
    margin-top: 30px;
}

.service-info-features li {
    font-size: 1rem;
    color: var(--sea-navy);
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.service-info-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--champagne-bronze);
    font-weight: bold;
}

.service-info-image img {
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .service-info-section {
        grid-template-columns: 1fr;
    }
}

/* --- PRICING TABLE --- */

.pricing-section {
    background-color: var(--riviera-white);
    padding: 100px 8%;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--sea-navy);
}

.table-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background-color: var(--sea-navy);
    color: #fff;
    text-align: left;
    padding: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.pricing-table td {
    padding: 15px 18px;
    border-bottom: 1px solid #eee;
    color: #444;
}

.text-right { text-align: right !important; }

.price-col {
    font-weight: 600;
    color: var(--sea-navy);
    text-align: right;
}

.extra-notes {
    max-width: 1000px;
    margin: 40px auto 0;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.8;
}

.footer-contact {
    text-align: center;
    padding: 80px 20px;
    background: var(--sea-navy);
    color: #fff;
}

.footer-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-contact p {
    color: var(--yacht-cream);
    opacity: 0.8;
    margin-bottom: 10px;
}

/* --- LEGAL PAGES (Terms, Privacy) --- */
.legal-hero {
    padding: 140px 8% 60px;
    text-align: center;
    background-color: var(--yacht-cream);
    border-bottom: 1px solid rgba(188, 163, 127, 0.2);
}

.legal-hero h1 {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 3rem;
    color: var(--sea-navy);
    margin-bottom: 15px;
}

.legal-subtitle {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--champagne-bronze);
    font-weight: 700;
}

.legal-container {
    max-width: 800px;
    margin: -40px auto 80px;
    padding: 50px 60px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(188, 163, 127, 0.1);
}

.legal-container h2 {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--sea-navy);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(188, 163, 127, 0.2);
    padding-bottom: 10px;
}

.legal-container p, .legal-container ul {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-container ul {
    margin-left: 20px;
}

.legal-container li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 30px;
        margin: -20px 20px 60px;
    }
    .legal-hero {
        padding: 120px 5% 50px;
    }
    .legal-hero h1 {
        font-size: 2.2rem;
    }
}

/* ===== POPULAR ROUTES SECTION (index.html) ===== */


.routes-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--sea-navy);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}



.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.route-card {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid rgba(188, 163, 127, 0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
    overflow: hidden;
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    border-color: var(--champagne-bronze);
    background: #FFFAF5; /* Very subtle luxury cream tint on hover */
}

.route-card-inner {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.route-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--champagne-bronze);
    padding: 0;
    margin-bottom: 25px;
    line-height: 1;
    position: relative;
    width: fit-content;
}

.route-label::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 1px;
    background-color: var(--champagne-bronze);
    opacity: 0.5;
}

.route-card-inner h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sea-navy);
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: center;
}

.route-card-inner p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 18px;
    text-align: center;
}

.route-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sea-navy);
    background-color: rgba(188, 163, 127, 0.05);
    padding: 15px 20px;
    border-radius: 6px;
    margin-top: auto;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid #C4A265;
    position: relative;
    overflow: hidden;
    z-index: 5;
    pointer-events: auto;
}

.route-card:hover .route-link {
    background: var(--bronze-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(142, 109, 59, 0.3);
    filter: brightness(1.05);
}

@media (max-width: 900px) {
    .routes-grid {
        grid-template-columns: 1fr;
    }
    .popular-routes-section {
        padding: 60px 5%;
    }
}

/* ===== ROUTE DETAIL PAGES (nice-to-monaco, cannes-to-st-tropez) ===== */
.route-hero {
    position: relative;
    background: linear-gradient(135deg, var(--sea-navy) 0%, #0d1826 100%);
    padding: 130px 8% 90px;
    border-bottom: 3px solid var(--champagne-bronze);
}

.route-breadcrumb {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.route-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.route-breadcrumb a:hover {
    color: var(--champagne-bronze);
}

.route-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--yacht-cream);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.route-hero-sub {
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(239,233,224,0.7);
    text-transform: uppercase;
    margin-bottom: 35px;
}

.route-detail-section {
    max-width: 1100px;
    margin: 70px auto;
    padding: 0 8%;
}

.route-info-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.route-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--yacht-cream);
    border-radius: 8px;
    padding: 30px 40px;
    border: 1px solid rgba(188, 163, 127, 0.2);
}

.route-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.stat-icon {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.route-stat strong {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--champagne-bronze);
    font-weight: 700;
}

.route-stat span {
    font-size: 0.95rem;
    color: var(--sea-navy);
    font-weight: 600;
}

.route-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--sea-navy);
    margin-bottom: 20px;
}

.route-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sea-navy);
    margin: 30px 0 12px;
}

.route-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.route-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    margin: 16px 0;
}

.route-features li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.route-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--champagne-bronze);
    font-weight: 700;
}

@media (max-width: 900px) {
    .route-hero {
        padding: 100px 5% 60px;
    }
    .route-hero-content h1 {
        font-size: 2rem;
    }
    .route-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    .route-features {
        grid-template-columns: 1fr;
    }
    .route-detail-section {
        padding: 0 5%;
        margin: 40px auto;
    }
}

/* ===== CALL NOW BUTTON IN NAV ===== */
.btn-call-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid #C4A265;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
    position: relative;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    pointer-events: auto;
}

.btn-call-nav:hover {
    background: var(--bronze-gradient);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(142, 109, 59, 0.4);
}

/* ===== FLOATING BUTTON GROUP (Call + WhatsApp) ===== */
.float-btn-group {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    z-index: 999;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 0;
    height: 60px;
    border-radius: 30px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.float-btn-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: border-radius 0.4s ease;
}

.float-btn-label {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    padding: 0;
    transition: max-width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease;
}

.float-btn:hover .float-btn-label {
    max-width: 160px;
    padding-right: 22px;
}

.float-btn:hover .float-btn-icon {
    border-radius: 30px 0 0 30px;
}

.float-btn:hover {
    transform: translateY(-3px);
}

/* Call button */
.call-float {
    background-color: var(--sea-navy);
    box-shadow: 0 8px 25px rgba(22, 34, 56, 0.4);
}

.call-float:hover {
    box-shadow: 0 14px 35px rgba(22, 34, 56, 0.55);
    background-color: var(--sea-navy);
}

.call-float .float-btn-icon {
    background-color: var(--sea-navy);
}

.call-float svg {
    width: 24px !important;
    height: 24px !important;
}

/* WhatsApp button */
.float-btn-group .whatsapp-float {
    position: static;
    width: auto;
    height: 60px;
    bottom: auto;
    right: auto;
    background-color: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border-radius: 30px;
}

.float-btn-group .whatsapp-float:hover {
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px);
}

.float-btn-group .whatsapp-float .float-btn-icon {
    background-color: #25d366;
    width: 60px;
    height: 60px;
    min-width: 60px;
}

.float-btn-group .whatsapp-float .whatsapp-icon {
    width: 24px !important;
    height: 24px !important;
}

@media (max-width: 900px) {
    .float-btn-group {
        bottom: 25px;
        right: 25px;
        gap: 10px;
    }
    .float-btn, .float-btn-icon {
        height: 50px;
        width: 50px;
        min-width: 50px;
    }
    .float-btn {
        width: auto;
        border-radius: 25px;
    }
    .call-float svg {
        width: 20px !important;
        height: 20px !important;
    }
    .float-btn-group .whatsapp-float {
        height: 50px;
        border-radius: 25px;
    }
    .float-btn-group .whatsapp-float .float-btn-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    .float-btn-group .whatsapp-float .whatsapp-icon {
        width: 22px !important;
        height: 22px !important;
    }
    .float-btn-label {
        font-size: 10px;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    max-width: 100%;
    margin: 0 auto;
    background-color: transparent;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--sea-navy);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}



.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(188, 163, 127, 0.2);
}

.faq-item:first-child {
    border-top: 1px solid rgba(188, 163, 127, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sea-navy);
    text-align: left;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--champagne-bronze);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--champagne-bronze);
    transition: transform 0.35s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease;
    padding: 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #555;
}

@media (max-width: 900px) {
    .faq-section {
        padding: 60px 5%;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 18px 0;
    }
}

/* ===== INLINE CONTACT SECTION ===== */
.contact-inline-section {
    background: var(--riviera-white);
    padding: 90px 8%;
}

.contact-inline-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-inline-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--sea-navy);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-inline-sub {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--champagne-bronze);
    text-transform: uppercase;
    margin-bottom: 50px;
}

.contact-inline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-inline-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(196, 162, 101, 0.1);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.contact-inline-card:hover {
    background: #FFFAF5; /* Luxury cream tint on hover */
    transform: translateY(-8px) scale(1.02);
    border-color: var(--champagne-bronze);
    box-shadow: 0 20px 45px rgba(188, 163, 127, 0.25);
}

.contact-icon-wrapper {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(188, 163, 127, 0.06);
    color: var(--champagne-bronze);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-inline-card:hover .contact-icon-wrapper {
    background: var(--champagne-bronze);
    color: #fff;
}

.contact-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-inline-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--champagne-bronze);
    opacity: 0.8;
}

.contact-inline-value {
    font-size: 1.05rem;
    color: var(--sea-navy);
    font-weight: 500;
}

@media (max-width: 900px) {
    .contact-inline-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .contact-inline-section {
        padding: 60px 8%;
    }
}

@media (max-width: 480px) {
}

/* ===== EXTENDED ROUTES GRID (6 cards, 2 rows) ===== */
.routes-grid-extended {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .routes-grid-extended {
        grid-template-columns: 1fr;
    }
}

/* ===== CAR SELECTOR ON REQUEST PAGE ===== */
.car-selector-section {
    margin-bottom: 35px;
}

.car-selector-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--champagne-bronze);
}

.car-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.car-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 14px 16px;
    background: var(--riviera-white);
    border: 2px solid rgba(188, 163, 127, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.35s ease;
    text-align: center;
}

.car-option:hover {
    border-color: var(--champagne-bronze);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.car-option.selected {
    border-color: var(--champagne-bronze);
    background: rgba(188, 163, 127, 0.08);
    box-shadow: 0 8px 25px rgba(188, 163, 127, 0.2);
}

.car-option img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 4px;
}

.car-option-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.car-option-info strong {
    font-size: 0.9rem;
    color: var(--sea-navy);
}

.car-option-info span {
    font-size: 0.78rem;
    color: #888;
    letter-spacing: 0.5px;
}

.car-option-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--champagne-bronze);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.car-option.selected .car-option-check {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 900px) {
    .car-selector-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .car-option {
        flex-direction: row;
        text-align: left;
        gap: 14px;
        padding: 14px;
    }
    .car-option img {
        width: 80px;
        max-width: 80px;
        margin-bottom: 0;
    }
}

/* Smooth scroll anchor offset for fixed header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* --- PREMIUM SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: transform, opacity;
    pointer-events: none;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Stagger delays for children */
.stagger-parent > *:nth-child(1) { transition-delay: 0s; }
.stagger-parent > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-parent > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-parent > *:nth-child(4) { transition-delay: 0.45s; }
.stagger-parent > *:nth-child(5) { transition-delay: 0.6s; }
.stagger-parent > *:nth-child(6) { transition-delay: 0.75s; }

/* Horizontal reveal variant */
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: transform, opacity;
    pointer-events: none;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: transform, opacity;
    pointer-events: none;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress-bar {
    height: 100%;
    background: var(--bronze-gradient);
    width: 0%;
    box-shadow: 0 0 20px rgba(188, 163, 101, 0.9);
    transition: width 0.1s ease-out;
}

.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 9999;
    background: transparent;
}

/* Horizontal reveals usage */
.routes-grid .route-card:nth-child(even) {
    transform: translateX(40px);
}
.routes-grid .route-card:nth-child(odd) {
    transform: translateX(-40px);
}
.routes-grid .route-card.visible {
    transform: translateX(0);
}

/* Parallax zoom for fleet images on scroll */
.fleet-card img {
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fleet-card.visible img {
    transform: scale(1.05);
}

#services {
    background-color: var(--riviera-white);
    display: block;
}

/* Services Section */
.services-section { background-color: transparent; }
.services-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--sea-navy);
    margin-bottom: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.services-section .section-intro {
    margin-bottom: 55px;
}

/* === MOBILE BUTTON FIXES === */
@media (max-width: 768px) {
    /* Sections */
    .fleet-section,
    .popular-routes-section,
    .services-section,
    .faq-section {
        padding-left: 5% !important;
        padding-right: 5% !important;
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    /* Ensure ALL buttons are tappable */
    .banner-btn,
    .cta-button,
    .btn-request,
    .btn-call-nav,
    .route-link {
        min-height: 48px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 14px 24px;
        touch-action: manipulation;
        cursor: pointer;
    }

    /* Fleet cards stack */
    .fleet-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Route cards stack */
    .routes-grid,
    .routes-grid-extended {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    /* Service cards stack */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Hero button */
    .cta-button {
        padding: 16px 36px;
        font-size: 11px;
    }

    /* Section titles */
    .fleet-section h2,
    .services-section h2,
    .routes-title,
    .faq-title {
        font-size: 1.8rem !important;
        letter-spacing: 2px !important;
    }

    /* FAQ */
    .faq-section {
        padding: 70px 6% !important;
    }

    /* Request form */
    .booking-form {
        grid-template-columns: 1fr !important;
    }
    .form-group.full-width {
        grid-column: span 1 !important;
    }
}

/* --- UNIVERSAL BUTTON SHINE EFFECT --- */
.btn-request::before,
.cta-button::before,
.banner-btn::before,
.route-link::before,
.btn-submit::before,
.btn-call-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transition: all 0.6s ease;
    z-index: 2;
}

/* Stretched Link for Fleet & Service Cards */
.fleet-card .banner-btn::after,
.service-type-card .banner-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.btn-request:hover::before,
.cta-button:hover::before,
.banner-btn:hover::before,
.route-link:hover::before,
.btn-submit:hover::before,
.btn-call-nav:hover::before {
    left: 140%;
}

/* === MOBILE UX FIXES === */
@media (max-width: 768px) {
    

    /* Fix Buttons for touch */
    .banner-btn, .cta-button, .btn-request, .route-link {
        min-height: 48px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        touch-action: manipulation;
        position: relative;
        overflow: hidden; /* Ensure shine stays inside on mobile */
        z-index: 100 !important;
        pointer-events: auto !important;
    }

    .fleet-grid, .routes-grid, .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* === UNIFIED HEADER & SEPARATION === */
.fleet-section > p, 
.section-intro, 
.routes-subtitle, 
.faq-subtitle,
.service-subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 400; /* MATCH THE HEADER THICKNESS EXACTLY */
    font-style: normal;
    font-size: 1.25rem;
    color: var(--sea-navy);
    opacity: 0.85; /* slight transparency so color separates subtly from header */
    text-align: center;
    max-width: 650px;
    margin: 0 auto 0px;
    padding-bottom: 40px; 
    position: relative;
    text-transform: none;
    letter-spacing: 0px; /* Don't stretch lowercase words */
}

/* The Subtle Separation Line */
.fleet-section > p::after, 
.section-intro::after, 
.routes-subtitle::after, 
.faq-subtitle::after,
.service-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* Elegant short line */
    height: 1px;
    background-color: var(--champagne-bronze);
    opacity: 0.6;
}

/* === UNIFIED HEADING THICKNESS === */
.fleet-section h2, 
.services-section h2, 
.routes-title, 
.faq-title {
    font-weight: 400 !important; /* Force EXACT match with subtitles */
}

/* === HORIZONTAL COLOR SEPARATION === */
.cta-banner {
    position: relative;
    padding: 140px 8%;
    background: radial-gradient(circle at 10% 20%, rgba(196, 162, 101, 0.05) 0%, transparent 40%),
                linear-gradient(135deg, var(--sea-navy) 0%, #162a4a 50%, var(--sea-navy) 100%);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

/* Enhanced Section Fades */
.section-header {
    background: linear-gradient(180deg, #f4f8fb 0%, #FFFFFF 100%);
    padding: 120px 8% 50px;
    border-bottom: 1px solid rgba(196,162,101,0.1);
    width: 100%;
}

.fleet-grid, 
.routes-grid, 
.services-grid, 
.faq-list {
    padding: 60px 8% 100px;
    margin: 0 auto;
    background-color: #FFFFFF;
}

@media (max-width: 768px) {
    .section-header {
        padding: 70px 5% 30px;
    }
    .fleet-grid, 
    .routes-grid, 
    .services-grid, 
    .faq-list {
        padding: 50px 5% 70px;
    }
}

/* === MIDNIGHT AESTHETIC TEXT FIXES === */
.section-header h2 {
    color: var(--champagne-bronze) !important; /* Premium gold for larger titles */
}

.section-intro,
.routes-subtitle,
.faq-subtitle,
.service-subtitle {
    color: var(--sea-navy); /* Standardized for better legibility */
    opacity: 0.9;
}

/* Ensure text inside cards remains dark navy for perfect contrast against the white cards */
.fleet-card h3, .fleet-card p, .fleet-card .fleet-features li,
.route-card h3, .route-card p,
.service-type-card h3, .service-type-card p,
.contact-inline-card .contact-inline-value, .contact-inline-card .contact-inline-label,
.faq-question, .faq-answer {
    color: var(--sea-navy);
}
.route-label {
    color: var(--sea-navy);
}
.faq-answer p {
    color: #444; /* Dark gray for legibility on white */
}
