/**
 * GVA TO ALPS - Main Stylesheet
 * Modern, Elegant Design for 2026
 */

/* ===== Font Face - DM Sans (Headings) ===== */
@font-face {
    font-family: 'DM Sans';
    src: url('../../public/fonts/DMSans_36pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../../public/fonts/DMSans_36pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../../public/fonts/DMSans_36pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../../public/fonts/DMSans_36pt-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* ===== Font Face - Manrope (Body) ===== */
@font-face {
    font-family: 'Manrope';
    src: url('../../public/fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../../public/fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../../public/fonts/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --color-primary: #C5A572;
    --color-primary-dark: #A88B5A;
    --color-primary-light: #D4B88A;
    --color-silver: #C0C0C0;
    --color-silver-light: #E8E8E8;
    --color-dark: #1A1A1A;
    --color-darker: #0D0D0D;
    --color-gray: #6B6B6B;
    --color-gray-light: #9A9A9A;
    --color-light: #F5F5F5;
    --color-white: #FFFFFF;
    --color-success: #22C55E;
    --color-error: #EF4444;
    
    /* Typography */
    --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.3);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-dark);
    margin-bottom: var(--space-md);
    letter-spacing: -0.05em;
    font-weight: 500;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--color-gray);
    font-weight: 400;
}

/* ===== Toast Notification ===== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--color-darker);
    color: var(--color-white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 90%;
}

.toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast.error {
    border-left: 4px solid var(--color-error);
}

.toast.success {
    border-left: 4px solid var(--color-success);
}

.toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.toast.error .toast-icon {
    color: var(--color-error);
}

.toast.success .toast-icon {
    color: var(--color-success);
}

.toast-message {
    font-size: 0.95rem;
    font-weight: 500;
}

.toast-close {
    margin-left: var(--space-md);
    color: var(--color-gray-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.toast-close:hover {
    color: var(--color-white);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 2rem;
    max-width: 1140px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.nav {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: var(--space-sm) 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.lang-selector {
    display: flex;
    gap: var(--space-xs);
}

.lang-btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-light);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.btn-book {
    position: relative;
    overflow: hidden;
    color: var(--color-darker);
    border: none;
    /* Silver metallic gradient */
    background: linear-gradient(
        135deg,
        #f5f5f5 0%,
        #e8e8e8 15%,
        #d4d4d4 30%,
        #c0c0c0 50%,
        #d4d4d4 70%,
        #e8e8e8 85%,
        #f5f5f5 100%
    );
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-book:hover::before {
    left: 150%;
}

/* Silver Metallic Button */
.btn-silver {
    position: relative;
    overflow: hidden;
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-darker);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    /* Silver metallic gradient */
    background: linear-gradient(
        135deg,
        #f5f5f5 0%,
        #e8e8e8 15%,
        #d4d4d4 30%,
        #c0c0c0 50%,
        #d4d4d4 70%,
        #e8e8e8 85%,
        #f5f5f5 100%
    );
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-silver:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-silver::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
}

.btn-silver:hover::before {
    left: 150%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-sm);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-base);
    transform-origin: center;
}

/* Burger to X animation - gap is 6px + 2px line = 8px total */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Ensure all 3 spans are visible */
.mobile-menu-btn span:nth-child(1),
.mobile-menu-btn span:nth-child(2),
.mobile-menu-btn span:nth-child(3) {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-darker);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.mobile-book {
    margin-top: var(--space-xl);
}

.mobile-lang {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.mobile-lang a {
    color: var(--color-gray-light);
    font-size: 0.875rem;
}

.mobile-lang a.active {
    color: var(--color-primary);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.hero-main {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-tagline {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.benefit svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
}

.hero-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.price-from {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 25%, #ffffff 50%, #a0a0a0 75%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Booking Widget - Inline */
.hero-booking-widget {
    width: 380px;
    flex-shrink: 0;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.widget-fields {
    display: flex;
    flex-direction: column;
}

.widget-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 1rem;
}

/* Destination Indicator */
.hero-destination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dest-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dest-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.dest-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.hero-slide .hero-content {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding-right: 420px; /* Space for booking widget */
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
}

.hero-price .price-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.15em;
}

.hero-price .price-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 50px;
    left: 6%;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    z-index: 20;
}

.hero-nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: var(--transition-base);
    background: rgba(0, 0, 0, 0.2);
}

.hero-nav-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.hero-nav-btn svg {
    width: 22px;
    height: 22px;
}

.hero-dots {
    display: flex;
    gap: var(--space-sm);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    border: none;
    transition: var(--transition-base);
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--color-primary);
    transform: scale(1.2);
}

.booking-widget {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-field {
    margin-bottom: var(--space-lg);
}

.widget-field label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
}

/* Searchable Select */
.select-search-wrapper {
    position: relative;
}

.select-search-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-dark);
    background: var(--color-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: text;
    transition: var(--transition-base);
}

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

.select-search-input::placeholder {
    color: var(--color-gray-light);
}

.select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 100;
    display: none;
    margin-top: 4px;
}

.select-dropdown.active {
    display: block;
}

.select-option {
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: 1px solid var(--color-light);
    font-family: var(--font-body);
}

.select-option:last-child {
    border-bottom: none;
}

.select-option:hover,
.select-option.highlighted {
    background: rgba(197, 165, 114, 0.1);
    color: var(--color-primary-dark);
}

.select-option.selected {
    background: var(--color-primary);
    color: var(--color-white);
}

.select-option-name {
    font-weight: 500;
}

.select-option-price {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-left: var(--space-sm);
}

.select-option.selected .select-option-price {
    color: rgba(255, 255, 255, 0.8);
}

.no-results {
    padding: var(--space-lg);
    text-align: center;
    color: var(--color-gray);
}

.widget-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    color: var(--color-darker);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: var(--space-lg);
    position: relative;
    overflow: hidden;
    /* Silver metallic gradient */
    background: linear-gradient(
        135deg,
        #f5f5f5 0%,
        #e8e8e8 15%,
        #d4d4d4 30%,
        #c0c0c0 50%,
        #d4d4d4 70%,
        #e8e8e8 85%,
        #f5f5f5 100%
    );
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.widget-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
}

.widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.widget-btn:hover::before {
    left: 150%;
}

.widget-btn svg {
    width: 20px;
    height: 20px;
}

/* ===== Stats Section ===== */
.stats {
    padding: 80px 0;
    background: var(--color-darker);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat-item {
    padding: var(--space-xl);
    overflow: hidden;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-sm);
    /* Silver metallic effect */
    background: linear-gradient(
        180deg,
        #f0f0f0 0%,
        #e8e8e8 15%,
        #d4d4d4 30%,
        #b8b8b8 45%,
        #a0a0a0 50%,
        #b8b8b8 55%,
        #d4d4d4 70%,
        #e8e8e8 85%,
        #f0f0f0 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Add shimmer/shine effect */
    text-shadow: 
        0 1px 1px rgba(255, 255, 255, 0.1),
        0 -1px 1px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: silverShine 3s ease-in-out infinite;
}

@keyframes silverShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 200%;
    }
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-silver-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== Sections Common ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

/* ===== Services Section ===== */
.services {
    padding: 120px 0;
    background: var(--color-white);
}

.services-content {
    max-width: 1000px;
    margin: 0 auto;
}

.services-desc {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-gray);
    line-height: 1.9;
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.services-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.feature {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.feature h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.feature p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-gray);
}

/* ===== Fleet Section ===== */
.fleet {
    padding: 120px 0;
    background: var(--color-light);
}

.fleet-intro {
    text-align: center;
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-gray);
    margin-bottom: var(--space-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.fleet-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.fleet-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.fleet-image img {
    max-height: 100%;
    object-fit: contain;
}

.fleet-info {
    padding: var(--space-xl);
}

.fleet-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.03em;
}

.fleet-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.fleet-specs {
    display: flex;
    gap: var(--space-lg);
}

.spec {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-gray);
}

.spec svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 120px 0;
    background: var(--color-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary);
    color: var(--color-primary);
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-darker);
    position: relative;
    overflow: hidden;
    /* Silver metallic background */
    background: linear-gradient(
        135deg,
        #f5f5f5 0%,
        #e8e8e8 20%,
        #d0d0d0 40%,
        #b8b8b8 50%,
        #d0d0d0 60%,
        #e8e8e8 80%,
        #f5f5f5 100%
    );
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%
    );
    animation: avatarShine 4s ease-in-out infinite;
}

@keyframes avatarShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 200%;
    }
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

.testimonial-info p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-gray);
}

.testimonial-date {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-gray-light);
    margin-top: var(--space-xs);
}

/* ===== FAQ Section ===== */
.faq {
    padding: 120px 0;
    background: var(--color-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: var(--color-white);
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-dark);
    text-align: left;
    transition: var(--transition-base);
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    transition: var(--transition-base);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-family: var(--font-body);
    color: var(--color-gray);
    line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact {
    padding: 120px 0;
    background: var(--color-darker);
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-logo {
    display: inline-block;
    margin-bottom: var(--space-xl);
}

.contact-logo img {
    height: 60px;
    width: auto;
}

.contact-details {
    margin-bottom: var(--space-xl);
}

.contact-details p {
    font-family: var(--font-body);
    margin-bottom: var(--space-sm);
    color: var(--color-silver-light);
}

.contact-details a {
    color: var(--color-primary);
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-about {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

.contact-about p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-silver-light);
}

.contact-links {
    display: flex;
    gap: var(--space-xl);
}

.contact-links a {
    font-family: var(--font-body);
    color: var(--color-primary);
    font-size: 0.9rem;
}

.contact-links a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}

.contact-map iframe {
    filter: grayscale(100%) invert(92%) contrast(85%);
}

/* ===== Footer ===== */
.footer {
    padding: var(--space-2xl) 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-gray);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-gray);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* ===== Booking Modal ===== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    width: 95%;
    max-width: 1000px;
    max-height: 90vh;
    background: linear-gradient(135deg, #0f0f14 0%, #1a1a24 50%, #0f0f14 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(30px);
    transition: var(--transition-base);
    border: 1px solid rgba(192, 192, 192, 0.15);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.booking-modal.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    z-index: 10;
    transition: var(--transition-base);
    color: #ffffff;
}

.modal-close:hover {
    background: var(--color-error);
    border-color: var(--color-error);
    color: var(--color-white);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-header {
    padding: var(--space-xl) var(--space-2xl);
    border-bottom: 1px solid rgba(192, 192, 192, 0.15);
    background: rgba(0, 0, 0, 0.2);
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 25%, #ffffff 50%, #a0a0a0 75%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-xl) var(--space-2xl);
    color: #ffffff;
}

/* Progress Bar */
.booking-progress {
    margin-bottom: var(--space-2xl);
}

.progress-track {
    height: 4px;
    background: var(--color-light);
    border-radius: 2px;
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0.4;
    transition: var(--transition-base);
}

.progress-step.active,
.progress-step.completed {
    opacity: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gray);
    background: var(--color-light);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--color-primary);
    color: var(--color-white);
}

.step-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--color-gray);
    text-align: center;
    white-space: nowrap;
}

/* Booking Content Layout */
.booking-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-2xl);
}

.booking-form-wrapper {
    display: flex;
    flex-direction: column;
}

/* Return Option */
.return-option {
    margin-bottom: var(--space-lg);
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-size: 0.75rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.checkbox-label input:checked + .checkbox-custom::after {
    opacity: 1;
}

/* Form Steps */
.form-step {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.step-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    margin-bottom: var(--space-sm);
}

.step-header.collapsed {
    background: rgba(255, 255, 255, 0.03);
}

.step-header:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(192, 192, 192, 0.2);
}

.step-check {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
}

.step-header h3 {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.step-header .chevron {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-base);
}

.form-step.active .step-header .chevron {
    transform: rotate(180deg);
}

.step-content {
    padding: 0 var(--space-lg) var(--space-lg);
    display: none;
}

.form-step.active .step-content {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Groups */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xs);
}

.field-hint {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.35rem;
    font-style: italic;
}

.booking-modal.light-theme .field-hint {
    color: rgba(0, 0, 0, 0.4);
}

.label-small {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    color: var(--color-gray) !important;
}

.form-input,
.form-select {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

/* Custom Select Styling */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: #1a1a24;
    color: #ffffff;
    padding: 12px;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: rgba(192, 192, 192, 0.5);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.1);
    background: rgba(255, 255, 255, 0.12);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.address-input {
    margin-top: var(--space-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-row.thirds {
    grid-template-columns: repeat(3, 1fr);
}

/* Order Summary */
.order-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: sticky;
    top: 0;
}

.order-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 25%, #ffffff 50%, #a0a0a0 75%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(192, 192, 192, 0.15);
    letter-spacing: -0.02em;
}

.summary-section {
    margin-bottom: var(--space-lg);
}

.summary-section h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-section p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.summary-message {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(192, 192, 192, 0.15);
}

.summary-message h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-message textarea {
    width: 100%;
    min-height: 100px;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    resize: vertical;
    transition: var(--transition-base);
}

.summary-message textarea:focus {
    outline: none;
    border-color: rgba(192, 192, 192, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.summary-message textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Payment Method Selection */
.summary-payment {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(192, 192, 192, 0.15);
}

.summary-payment h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(192, 192, 192, 0.2);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.payment-option input[type="radio"]:checked + .payment-option-content {
    border-color: var(--accent);
    background: rgba(192, 192, 192, 0.1);
}

.payment-option:hover .payment-option-content {
    border-color: rgba(192, 192, 192, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.payment-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.payment-text {
    display: flex;
    flex-direction: column;
}

.payment-text strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 2px;
}

.payment-text small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Light theme payment options */
.booking-modal.light-theme .summary-payment {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.booking-modal.light-theme .summary-payment h4 {
    color: rgba(0, 0, 0, 0.5);
}

.booking-modal.light-theme .payment-option-content {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.15);
}

.booking-modal.light-theme .payment-option input[type="radio"]:checked + .payment-option-content {
    border-color: #1a1a1a;
    background: rgba(0, 0, 0, 0.05);
}

.booking-modal.light-theme .payment-option:hover .payment-option-content {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.05);
}

.booking-modal.light-theme .payment-text strong {
    color: #1a1a1a;
}

.booking-modal.light-theme .payment-text small {
    color: rgba(0, 0, 0, 0.5);
}

/* Offer Banner */
.offer-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    margin-top: var(--space-md);
    animation: pulse-offer 2s ease-in-out infinite;
}

@keyframes pulse-offer {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 15px 3px rgba(16, 185, 129, 0.2); }
}

.offer-banner .offer-tag {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #10b981;
    font-size: 0.9rem;
}

.offer-banner .offer-discount {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    background: #10b981;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.booking-modal.light-theme .offer-banner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.08));
}

.booking-modal.light-theme .offer-banner .offer-tag {
    color: #059669;
}

.summary-price {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(192, 192, 192, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.summary-price .price-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.summary-price .price-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 25%, #ffffff 50%, #a0a0a0 75%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* Terms Checkbox */
.terms-checkbox {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-checkbox a {
    color: var(--color-primary);
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

/* Modal Footer */
.modal-footer {
    padding: var(--space-lg) var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}

/* ===== Light Theme for Modal ===== */
.booking-modal.light-theme .modal-container {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #ffffff 100%);
    border-color: rgba(0, 0, 0, 0.1);
}

.booking-modal.light-theme .modal-header {
    background: rgba(0, 0, 0, 0.03);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.booking-modal.light-theme .modal-header h2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-modal.light-theme .modal-close {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

.booking-modal.light-theme .modal-body {
    color: #1a1a1a;
}

.booking-modal.light-theme .checkbox-label {
    color: #333;
}

.booking-modal.light-theme .checkbox-custom {
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.03);
}

.booking-modal.light-theme .form-step {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.02);
}

.booking-modal.light-theme .step-header {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.booking-modal.light-theme .step-header:hover {
    background: rgba(0, 0, 0, 0.08);
}

.booking-modal.light-theme .step-header h3 {
    color: #1a1a1a;
}

.booking-modal.light-theme .step-header .chevron {
    color: rgba(0, 0, 0, 0.5);
}

.booking-modal.light-theme .form-group label {
    color: #333;
}

.booking-modal.light-theme .form-input,
.booking-modal.light-theme .form-select {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
}

.booking-modal.light-theme .form-input:focus,
.booking-modal.light-theme .form-select:focus {
    border-color: var(--color-primary);
    background: #ffffff;
}

.booking-modal.light-theme .form-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.booking-modal.light-theme .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.booking-modal.light-theme .form-select option {
    background: #ffffff;
    color: #1a1a1a;
}

.booking-modal.light-theme .order-summary {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

.booking-modal.light-theme .order-summary h3 {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.booking-modal.light-theme .summary-section h4 {
    color: rgba(0, 0, 0, 0.5);
}

.booking-modal.light-theme .summary-section p {
    color: #333;
}

.booking-modal.light-theme .summary-message {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.booking-modal.light-theme .summary-message h4 {
    color: rgba(0, 0, 0, 0.5);
}

.booking-modal.light-theme .summary-message textarea {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
}

.booking-modal.light-theme .summary-message textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.booking-modal.light-theme .summary-price {
    border-top-color: rgba(0, 0, 0, 0.15);
}

.booking-modal.light-theme .summary-price .price-label {
    color: rgba(0, 0, 0, 0.6);
}

.booking-modal.light-theme .summary-price .price-value {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-modal.light-theme .terms-checkbox {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.booking-modal.light-theme .modal-footer {
    background: rgba(0, 0, 0, 0.03);
    border-top-color: rgba(0, 0, 0, 0.1);
}

.booking-modal.light-theme .theme-toggle {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
    color: #333;
}

.booking-modal.light-theme .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Return Fields */
.return-fields {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    animation: fadeSlideIn 0.3s ease;
}

.return-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--space-md);
}

.return-divider span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.return-divider::before,
.return-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Light theme return fields */
.booking-modal.light-theme .return-fields {
    border-top-color: rgba(0, 0, 0, 0.15);
}

.booking-modal.light-theme .return-divider span {
    color: #333;
}

.booking-modal.light-theme .return-divider::before,
.booking-modal.light-theme .return-divider::after {
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.15), transparent);
}

.btn-submit {
    padding: var(--space-md) var(--space-3xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-darker);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    border: none;
    /* Silver metallic gradient */
    background: linear-gradient(
        135deg,
        #f5f5f5 0%,
        #e8e8e8 15%,
        #d4d4d4 30%,
        #c0c0c0 50%,
        #d4d4d4 70%,
        #e8e8e8 85%,
        #f5f5f5 100%
    );
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-submit:hover::before {
    left: 150%;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: linear-gradient(135deg, #0f0f14 0%, #1a1a24 50%, #0f0f14 100%);
    border: 1px solid rgba(192, 192, 192, 0.15);
    padding: var(--space-3xl);
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-success);
    border-radius: var(--radius-full);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.success-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 25%, #ffffff 50%, #a0a0a0 75%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.success-content p {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-sm);
}

.success-content strong {
    color: #22c55e;
    font-size: 1.25rem;
}

.btn-primary {
    margin-top: var(--space-xl);
    padding: var(--space-md) var(--space-2xl);
    color: var(--color-darker);
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    /* Silver metallic gradient */
    background: linear-gradient(
        135deg,
        #f5f5f5 0%,
        #e8e8e8 15%,
        #d4d4d4 30%,
        #c0c0c0 50%,
        #d4d4d4 70%,
        #e8e8e8 85%,
        #f5f5f5 100%
    );
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 100%
    );
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:hover::before {
    left: 150%;
}

/* ===== Parallax Section ===== */
.parallax-section {
    position: relative;
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.85) 0%, rgba(26, 26, 46, 0.75) 50%, rgba(10, 10, 15, 0.85) 100%);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.parallax-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 25%, #ffffff 50%, #a0a0a0 75%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.parallax-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.parallax-alt {
    height: 350px;
}

.parallax-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.p-stat {
    text-align: center;
}

.p-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 25%, #ffffff 50%, #a0a0a0 75%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.p-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== Popular Destinations Gallery ===== */
.destinations-gallery {
    background: linear-gradient(135deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
    padding: 100px 0;
}

.destinations-gallery .section-title {
    color: #ffffff;
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 25%, #ffffff 50%, #a0a0a0 75%, #d0d0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.destinations-gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dest-card-large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

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

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

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    transition: all 0.4s ease;
}

.dest-card:hover .dest-overlay {
    padding-bottom: 2.5rem;
}

.dest-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.dest-card-large .dest-overlay h3 {
    font-size: 2rem;
}

.dest-price {
    display: inline-block;
    background: linear-gradient(135deg, #e8e8e8 0%, #b8b8b8 25%, #d0d0d0 50%, #a0a0a0 75%, #c8c8c8 100%);
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.destinations-cta {
    text-align: center;
    padding-top: 2rem;
}

.destinations-cta p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero-booking {
        width: 360px;
        right: 2rem;
    }
    
    .hero-slide .hero-content {
        padding-right: 400px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
    }
    
    .services-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dest-card-large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2/1;
    }
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 70px;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 2rem 1.5rem 5rem;
        gap: 1.5rem;
        align-items: center;
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-benefits {
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-benefit,
    .benefit {
        font-size: 0.85rem;
    }
    
    .hero-price-tag {
        margin: 0 auto;
        padding: 0.75rem 1.5rem;
    }
    
    .hero-price,
    .price-amount {
        font-size: 1.5rem;
    }
    
    /* Tablet - keep vertical form, just centered */
    .hero-booking-widget {
        width: 100%;
        max-width: 420px;
    }
    
    .hero-booking-widget .booking-widget {
        padding: 1.5rem;
    }
    
    .hero-booking-widget .widget-fields {
        display: flex;
        flex-direction: column;
    }
    
    .hero-booking-widget .widget-field {
        margin-bottom: 1rem;
    }
    
    .hero-booking-widget .widget-btn {
        width: 100%;
    }
    
    .widget-title {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    
    /* Currently viewing */
    .hero-destination {
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem 1rem;
        gap: 1rem;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: relative;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dest-card-large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2/1;
    }
    
    .parallax-section {
        background-attachment: scroll;
        height: 400px;
    }
    
    .parallax-stats {
        gap: 2rem;
    }
    
    .p-stat-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-actions .btn-book {
        display: none;
    }
    
    .hero-container {
        padding: 1.5rem 1rem 4.5rem;
        gap: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Phone - vertical booking form */
    .hero-booking-widget {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-booking-widget .booking-widget {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }
    
    .widget-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-benefits {
        gap: 0.4rem;
    }
    
    .hero-benefit,
    .benefit {
        font-size: 0.8rem;
    }
    
    .hero-price-tag {
        padding: 0.6rem 1.25rem;
    }
    
    .hero-price,
    .price-amount {
        font-size: 1.5rem;
    }
    
    .price-from {
        font-size: 0.7rem;
    }
    
    /* Phone - compact destination indicator */
    .hero-destination {
        position: absolute;
        bottom: 0.75rem;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.35rem 0.6rem;
        gap: 0.5rem;
        max-width: calc(100% - 2rem);
        border-radius: 30px;
    }
    
    .dest-indicator {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }
    
    .dest-label {
        font-size: 0.55rem;
        letter-spacing: 0.03em;
    }
    
    .hero-dest-name,
    .dest-name {
        font-size: 0.75rem;
    }
    
    .hero-dots {
        gap: 0.25rem;
    }
    
    .hero-dots .hero-dot {
        width: 6px;
        height: 6px;
    }
    
    .widget-note {
        font-size: 0.7rem;
        margin-top: 0.75rem;
    }
    
    .services-features {
        grid-template-columns: 1fr;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-row.thirds {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        padding: 0.75rem;
    }
    
    /* Modal body padding reduced */
    .modal-body {
        padding: 0.75rem;
    }
    
    /* Form step content padding */
    .step-content {
        padding: 0 0.75rem 0.75rem;
    }
    
    /* Dropdown and inputs in modal - better spacing */
    .booking-modal .form-group {
        margin-bottom: 0.75rem;
    }
    
    .booking-modal .form-input,
    .booking-modal .form-select,
    .booking-modal .custom-select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 0.9rem;
        padding: 0.65rem 0.75rem;
    }
    
    /* Date/Time inputs fix - prevent overflow */
    .booking-modal input[type="date"],
    .booking-modal input[type="time"] {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    /* Form row on mobile */
    .booking-modal .form-row {
        gap: 0.75rem;
    }
    
    /* Order summary compact */
    .order-summary {
        padding: 0.75rem;
    }
    
    .summary-section {
        padding: 0.5rem 0;
    }
    
    .summary-price {
        padding-top: 0.75rem;
    }
    
    .services,
    .fleet,
    .faq,
    .contact,
    .testimonials {
        padding: 80px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .dest-card-large {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }
    
    .dest-overlay h3 {
        font-size: 1.2rem;
    }
    
    .dest-card-large .dest-overlay h3 {
        font-size: 1.5rem;
    }
    
    .parallax-section {
        height: 350px;
    }
    
    .parallax-alt {
        height: 300px;
    }
    
    .parallax-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 20px 0;
    }
    
    .parallax-alt {
        padding: 20px 0;
    }
    
    .p-stat-value {
        font-size: 2rem;
    }
    
    .destinations-gallery {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* ===== MOBILE FIXES ===== */
    
    /* Hero title larger on mobile */
    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
    }
    
    /* Price tag - TRANSFERS FROM centered with price */
    .hero-price-tag {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        padding: 0.75rem 1.5rem;
    }
    
    .price-from {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }
    
    .hero-price,
    .price-amount {
        font-size: 1.75rem;
    }
    
    /* Subtitle max-width constraint */
    .hero-tagline {
        max-width: 370px;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
    }
    
    /* Benefits text larger */
    .hero-benefit,
    .benefit {
        font-size: 0.85rem;
    }
    
    /* Book your Transfer title larger */
    .widget-title {
        font-size: 1.15rem;
    }
    
    /* Widget inputs slightly smaller */
    .hero-booking-widget .custom-select,
    .hero-booking-widget .form-input {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }
    
    /* Our Services section */
    .services .section-title,
    .fleet .section-title,
    .destinations-gallery .section-title {
        font-size: 1.85rem;
    }
    
    .services .section-subtitle,
    .fleet .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Parallax section spacing */
    .parallax-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    /* Destination price button - single line */
    .dest-price {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
        white-space: nowrap;
    }
    
    .dest-overlay {
        padding: 1rem;
    }
    
    .dest-overlay h3 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }
    
    .dest-card-large .dest-overlay h3 {
        font-size: 1.25rem;
    }
}

/* ===== Unavailability Modal ===== */
.unavailability-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.unavailability-modal.active {
    opacity: 1;
    visibility: visible;
}

.unavail-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.unavail-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.unavailability-modal.active .unavail-content {
    transform: scale(1) translateY(0);
}

.unavail-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fee2e2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unavail-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--error, #ef4444);
}

.unavail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.unavail-message {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.unavail-contact {
    margin-bottom: 1.5rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-contact:hover {
    background: var(--primary-dark, #1a3b5c);
    transform: translateY(-2px);
}

.btn-contact svg {
    width: 18px;
    height: 18px;
}

.btn-close-unavail {
    background: transparent;
    border: 1px solid var(--gray-light);
    color: var(--gray);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-close-unavail:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== Hero CTA Button ===== */
.hero-cta-buttons {
    margin-top: var(--space-lg);
}

.btn-cta-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.4);
}

.btn-cta-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.5);
}

.btn-cta-quote svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn-cta-quote:hover svg {
    transform: translateX(4px);
}

/* Additional CTA in sections */
.section-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.section-cta .btn-cta-quote {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.whatsapp-message {
    background: var(--color-white);
    color: var(--color-dark);
    padding: 12px 16px;
    border-radius: 12px 12px 0 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 220px;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-message.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.whatsapp-message::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--color-white);
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--color-white);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-btn {
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-message {
        max-width: 180px;
        font-size: 0.85rem;
    }
}

/* ===== Destination Link Buttons ===== */
.dest-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: var(--space-xl);
}

.dest-link-btn {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    background: var(--color-white);
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
}

.dest-link-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

/* ===== How to Book Section ===== */
.how-to-book {
    padding: var(--space-3xl) 0;
    background: var(--color-light);
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.booking-step {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.booking-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.booking-step p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.5;
}

/* ===== Destinations Section ===== */
.destinations-section {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

@media (max-width: 768px) {
    .dest-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .dest-link-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .booking-steps {
        grid-template-columns: 1fr;
    }
}

/* ===== MOBILE BOOKING UX IMPROVEMENTS ===== */
@media (max-width: 768px) {
    /* Modal container - full screen, no overflow */
    .booking-modal .modal-container {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    
    /* Modal header compact */
    .booking-modal .modal-header {
        padding: 1rem 1rem;
        flex-shrink: 0;
    }
    
    .booking-modal .modal-header h2 {
        font-size: 1.25rem;
    }
    
    /* Close button positioning */
    .booking-modal .modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
    }
    
    /* Modal body - scrollable area */
    .booking-modal .modal-body {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0.75rem;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Booking content - stack vertically */
    .booking-modal .booking-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Form wrapper full width */
    .booking-modal .booking-form-wrapper {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
    }
    
    /* Return option checkbox */
    .booking-modal .return-option {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    /* Form steps - compact accordion */
    .booking-modal .form-step {
        border-radius: 10px;
        margin-bottom: 0.5rem;
        overflow: hidden;
    }
    
    /* Step header - better touch target */
    .booking-modal .step-header {
        padding: 0.875rem 1rem;
        min-height: 48px;
    }
    
    .booking-modal .step-header h3 {
        font-size: 0.95rem;
    }
    
    /* Step content padding */
    .booking-modal .step-content {
        padding: 0.75rem 1rem 1rem;
    }
    
    /* Form groups - better spacing */
    .booking-modal .form-group {
        margin-bottom: 0.875rem;
    }
    
    .booking-modal .form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.35rem;
    }
    
    /* ALL inputs - prevent overflow */
    .booking-modal .form-input,
    .booking-modal .form-select,
    .booking-modal .custom-select,
    .booking-modal input,
    .booking-modal select,
    .booking-modal textarea {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        font-size: 16px; /* Prevents iOS zoom */
        padding: 0.75rem 0.875rem;
        border-radius: 8px;
    }
    
    /* Select wrapper */
    .booking-modal .select-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    /* Address input */
    .booking-modal .address-input {
        margin-top: 0.5rem;
    }
    
    /* Field hint */
    .booking-modal .field-hint {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }
    
    /* Form rows - stack on mobile */
    .booking-modal .form-row {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .booking-modal .form-row.thirds {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .booking-modal .form-row.thirds .form-group {
        margin-bottom: 0;
    }
    
    .booking-modal .form-row.thirds .label-small {
        font-size: 0.65rem;
    }
    
    /* Order summary - compact */
    .booking-modal .order-summary {
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
        margin-top: 0.5rem;
    }
    
    .booking-modal .order-summary h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .booking-modal .summary-section {
        padding: 0.5rem 0;
    }
    
    .booking-modal .summary-section h4 {
        font-size: 0.7rem;
    }
    
    .booking-modal .summary-section p {
        font-size: 0.85rem;
    }
    
    /* Message textarea */
    .booking-modal .summary-message textarea {
        min-height: 60px;
        font-size: 16px;
        padding: 0.75rem;
    }
    
    /* Payment options */
    .booking-modal .payment-options {
        gap: 0.5rem;
    }
    
    .booking-modal .payment-option-content {
        padding: 0.75rem;
    }
    
    .booking-modal .payment-icon {
        font-size: 1.25rem;
    }
    
    .booking-modal .payment-text strong {
        font-size: 0.85rem;
    }
    
    .booking-modal .payment-text small {
        font-size: 0.7rem;
    }
    
    /* Price display */
    .booking-modal .summary-price {
        padding-top: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .booking-modal .summary-price .price-label {
        font-size: 0.8rem;
    }
    
    .booking-modal .summary-price .price-value {
        font-size: 1.5rem;
    }
    
    /* Terms checkbox */
    .booking-modal .terms-checkbox {
        padding: 0.75rem 0;
        margin-top: 0.5rem;
    }
    
    .booking-modal .terms-checkbox .checkbox-label {
        font-size: 0.8rem;
    }
    
    /* Modal footer - fixed at bottom */
    .booking-modal .modal-footer {
        flex-shrink: 0;
        padding: 0.875rem 1rem;
        gap: 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Hide theme toggle on mobile - save space */
    .booking-modal .theme-toggle {
        display: none;
    }
    
    /* Submit button - full width, professional */
    .booking-modal .btn-submit {
        flex: 1;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.03em;
        border-radius: 10px;
        text-transform: uppercase;
    }
    
    /* Progress bar hidden on mobile (already hidden via progress-steps) */
    .booking-modal .booking-progress {
        padding: 0.5rem 0;
    }
    
    .booking-modal .progress-track {
        height: 3px;
        border-radius: 2px;
    }
}

/* ===== Extra small screens (iPhone SE, etc) ===== */
@media (max-width: 375px) {
    .booking-modal .modal-body {
        padding: 0.5rem;
    }
    
    .booking-modal .step-content {
        padding: 0.5rem 0.75rem 0.75rem;
    }
    
    .booking-modal .form-row.thirds {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .booking-modal .order-summary {
        padding: 0.75rem;
    }
    
    .booking-modal .summary-price .price-value {
        font-size: 1.35rem;
    }
}