/* ========================================
   ANA LIMO - Modern Glassmorphic Design
   Uber-inspired • Clean • Elegant
   ======================================== */

/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f7;
    --medium-gray: #e8e8ed;
    --dark-gray: #1d1d1f;
    --text-dark: #1d1d1f;
    --text-light: #86868b;
    --text-white: #f5f5f7;
    --accent: #0071e3;
    --gold: #C9A962;
    --gold-soft: rgba(201, 169, 98, 0.2);
    
    /* Glassmorphism */
    --glass-white: rgba(255, 255, 255, 0.72);
    --glass-dark: rgba(0, 0, 0, 0.65);
    --glass-border-light: rgba(255, 255, 255, 0.3);
    --glass-border-dark: rgba(255, 255, 255, 0.1);
    --blur-amount: blur(20px) saturate(180%);
    --blur-heavy: blur(40px) saturate(200%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* --- GLASSMORPHIC CARD BASE --- */
.glass-card {
    background: var(--glass-white);
    backdrop-filter: var(--blur-amount);
    -webkit-backdrop-filter: var(--blur-amount);
    border: 1px solid var(--glass-border-light);
    border-radius: 20px;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.04);
}

.glass-card-dark {
    background: var(--glass-dark);
    backdrop-filter: var(--blur-amount);
    -webkit-backdrop-filter: var(--blur-amount);
    border: 1px solid var(--glass-border-dark);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* --- NAVIGATION - TRANSPARENT TO BLACK BLUR --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 1001;
}

.logo-text {
    color: var(--white);
}

.logo-accent {
    color: var(--gold);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

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

.nav-link-auth {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.nav-link-auth:hover {
    color: var(--white);
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #b8944a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 5% 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(201, 169, 98, 0.45);
    background: #b8944a;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    border-radius: 50px;
    border: 1px solid rgba(201, 169, 98, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(201, 169, 98, 0.12);
    border-color: rgba(201, 169, 98, 0.65);
}

/* Hero Quick Booking Form */
.hero-booking {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-heavy);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-booking h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Availability Card on Hero */
.hero-availability {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-heavy);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.status-pulse {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); transform: scale(1); }
    50% { box-shadow: 0 0 18px rgba(34, 197, 94, 0.9); transform: scale(1.15); }
}

.status-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #22c55e;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.availability-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.availability-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 0.5rem 0;
}

.service-chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: background 0.3s ease, border-color 0.3s ease;
}

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

.service-chip svg {
    opacity: 0.7;
    flex-shrink: 0;
}

.btn-get-quote {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 0.25rem;
}

.btn-get-quote:hover {
    background: #d4a849;
    transform: translateY(-1px);
}

.availability-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.availability-phone:hover {
    color: var(--gold);
}

.availability-phone svg {
    opacity: 0.7;
    flex-shrink: 0;
}

.booking-form-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-compact {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group-compact label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
}

.form-group-compact input,
.form-group-compact select {
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group-compact input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group-compact input:focus,
.form-group-compact select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.form-group-compact select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group-compact select option {
    background: var(--dark-gray);
    color: var(--white);
}

/* Airport Fields in Quick Booking */
.airport-fields {
    margin-top: 0.5rem;
}

.airport-fields .form-row-compact {
    margin-bottom: 0.75rem;
}

.airport-fields .form-group-compact input[readonly] {
    background: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}

.btn-book {
    width: 100%;
    padding: 1rem;
    background: var(--white);
    color: var(--black);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    color: var(--white);
}

.scroll-indicator span {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--white);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(300%); }
}

/* --- SECTION STYLING --- */
section {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

/* --- ABOUT SECTION - WHITE BACKGROUND --- */
.about {
    background: var(--white);
    padding: 8rem 0;
}

.about .section-title {
    color: var(--text-dark);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: stretch;
    margin-top: 4rem;
    min-height: 400px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 600;
}

.about-content p {
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Stats Grid - 2x2 layout proportional to content */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.stat-box {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.stat-box.animate {
    animation: statBoxReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.stat-box:nth-child(1).animate { animation-delay: 0.1s; }
.stat-box:nth-child(2).animate { animation-delay: 0.2s; }
.stat-box:nth-child(3).animate { animation-delay: 0.3s; }
.stat-box:nth-child(4).animate { animation-delay: 0.4s; }

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

.stat-box:hover {
    transform: translateY(-8px);
    background: #eeeeee;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-box .stat-number {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Counter animation for stat numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-box.animate .stat-number {
    animation: countUp 0.6s ease forwards;
}

.stat-box .stat-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gold);
    transition: color 0.3s ease;
}

.stat-box:hover .stat-label {
    color: var(--gold);
}

/* --- FLEET SECTION - LIGHT GREY BACKGROUND --- */
.fleet {
    background: #f0f0f0;
    padding: 6rem 0;
}

.fleet .section-subtitle {
    color: var(--gold);
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
}

.fleet .section-title {
    color: var(--text-dark);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.fleet .container {
    max-width: 1400px;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.fleet-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

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

.fleet-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border-radius: 14px;
}

.fleet-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
}

.fleet-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.fleet-card p {
    font-size: 0.9375rem;
    color: #888;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.fleet-capacity {
    display: inline-flex;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2a2110;
    padding: 0.5rem 1rem;
    background: #C9A962;
    border-radius: 50px;
    margin-top: auto;
    align-self: center;
}

/* --- RESERVATION SECTION - BLACK BACKGROUND MINIMAL --- */
.reservation {
    background: var(--black);
    position: relative;
    padding: 6rem 0;
}

.reservation .section-subtitle {
    color: var(--gold);
}

.reservation .section-title {
    color: var(--white);
}

.reservation-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

/* Reservation Form - Minimal Underline Style */
.reservation-form-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.reservation-form-minimal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Reservation form inputs - HIGH VISIBILITY white text on black background */
.reservation .form-group-minimal input,
.reservation .form-group-minimal select,
.reservation .form-group-minimal textarea {
    color: #ffffff !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5) !important;
    background: transparent !important;
}

.reservation .form-group-minimal input::placeholder,
.reservation .form-group-minimal textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.reservation .form-group-minimal textarea {
    min-height: auto;
    height: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.5rem;
    overflow: hidden;
    resize: none;
}

.reservation .form-group-minimal textarea:focus,
.reservation .form-group-minimal textarea:not(:placeholder-shown) {
    height: 80px;
    overflow: auto;
}

/* All labels in reservation form - always floated at top */
.reservation .form-group-minimal label {
    color: #ffffff !important;
    font-weight: 600 !important;
    top: -0.75rem !important;
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hide the animated input-line since we use border-bottom */
.reservation .form-group-minimal .input-line {
    display: none;
}

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

.reservation .form-group-minimal select option {
    background: #1a1a1a;
    color: #ffffff;
}

.reservation .btn-reservation-minimal {
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin: 0 auto;
}

.reservation .btn-reservation-minimal:hover {
    background: #C9A962;
    color: #000000;
    border-color: #C9A962;
}

.reservation .reservation-info-minimal {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.reservation .benefits-item {
    color: rgba(255, 255, 255, 0.9);
}

.reservation .benefits-item svg {
    stroke: var(--gold);
}

/* Reservation success message (embedded confirmation) */
.reservation-success-message {
    background: transparent;
    border: none;
    padding: 1.25rem 0 0.75rem;
}

.reservation .reservation-success-message svg {
    stroke: #C9A962;
    margin-bottom: 0.75rem;
}

.reservation .reservation-success-message h3 {
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.reservation .reservation-success-message p {
    color: #ededed;
    max-width: 420px;
    margin-bottom: 1.25rem;
}

.reservation .reservation-success-message .btn-reservation-minimal {
    margin-top: 0.25rem;
}

/* Airport Fields in Main Reservation Form */
.airport-fields-minimal {
    margin-top: 1.5rem;
}

.reservation .airport-fields-minimal .form-group-minimal input[readonly] {
    color: rgba(255, 255, 255, 0.8) !important;
    cursor: not-allowed;
    border-bottom-style: dashed !important;
}

/* Date and Time inputs in reservation */
.reservation .form-group-minimal input[type="date"],
.reservation .form-group-minimal input[type="time"] {
    color: #ffffff !important;
}

.reservation .form-group-minimal input[type="date"]::-webkit-calendar-picker-indicator,
.reservation .form-group-minimal input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-row-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-row-minimal.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group-minimal {
    position: relative;
}

.form-group-minimal input,
.form-group-minimal select,
.form-group-minimal textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--black);
    font-size: 1.125rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    outline: none;
    appearance: none;
    border-radius: 0;
}

.form-group-minimal select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(0,0,0,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1.5rem;
}

.form-group-minimal textarea {
    min-height: 80px;
    resize: none;
}

.form-group-minimal label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Floating label animation */
.form-group-minimal input:focus ~ label,
.form-group-minimal input:not(:placeholder-shown) ~ label,
.form-group-minimal select:focus ~ label,
.form-group-minimal select:valid ~ label,
.form-group-minimal textarea:focus ~ label,
.form-group-minimal textarea:not(:placeholder-shown) ~ label {
    top: -0.75rem;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Underline animation */
.form-group-minimal .input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group-minimal input:focus ~ .input-line,
.form-group-minimal select:focus ~ .input-line,
.form-group-minimal textarea:focus ~ .input-line {
    width: 100%;
}

.btn-reservation-minimal {
    width: fit-content;
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: var(--black);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
}

.btn-reservation-minimal:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Reservation Info - Simple List */
.reservation-info-minimal {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.benefits-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9375rem;
}

.benefits-item svg {
    width: 18px;
    height: 18px;
    stroke: rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

/* --- CONTACT SECTION - MODERN MINIMAL --- */
.contact {
    background: var(--white);
    position: relative;
    padding: 6rem 0;
}

.contact .section-subtitle {
    color: var(--gold);
}

.contact .section-title {
    color: var(--black);
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

/* Contact Form - Minimal Underline Style */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.contact-form-minimal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group-minimal {
    position: relative;
}

.form-group-minimal input,
.form-group-minimal textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--black);
    font-size: 1.125rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    outline: none;
    position: relative;
    z-index: 1;
}

.form-group-minimal textarea {
    min-height: 100px;
    resize: none;
    padding-top: 0.9rem;
    line-height: 1.6;
}


.form-group-minimal label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Floating label animation */
.form-group-minimal input:focus ~ label,
.form-group-minimal input:not(:placeholder-shown) ~ label,
.form-group-minimal textarea:focus ~ label,
.form-group-minimal textarea:not(:placeholder-shown) ~ label {
    top: -0.75rem;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Underline animation */
.input-line {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.form-group-minimal input:focus ~ .input-line,
.form-group-minimal textarea:focus ~ .input-line {
    width: 100%;
}

.btn-contact-minimal {
    width: fit-content;
    padding: 1rem 3rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: var(--black);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
}

.btn-contact-minimal:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* Contact Info - Simple List */
.contact-info-minimal {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    stroke: #C9A962;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--black);
}

.contact-item:hover svg {
    stroke: #C9A962;
    transform: scale(1.1);
}

/* Form Success Message */
.form-success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeInUp 0.5s ease;
}

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

.form-success-message svg {
    width: 64px;
    height: 64px;
    stroke: #34c759;
    margin-bottom: 1.5rem;
}

.form-success-message h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.form-success-message p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 300px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-send-another {
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--black);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send-another:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* --- FOOTER --- */
footer.footer-minimal {
    background: var(--black);
    padding: 1.5rem 0;
    text-align: center;
}

footer.footer-minimal p {
    color: #ffffff;
    font-size: 0.875rem;
    margin: 0;
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* --- GOOGLE PLACES AUTOCOMPLETE --- */
.pac-container {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
    z-index: 10000;
}

.pac-item {
    padding: 10px 15px;
    font-size: 14px;
    color: #1d1d1f;
    cursor: pointer;
    border-top: 1px solid #f0f0f0;
}

.pac-item:first-child {
    border-top: none;
}

.pac-item:hover {
    background-color: #f5f5f7;
}

.pac-item-selected {
    background-color: #f0f0f0;
}

.pac-icon {
    display: none;
}

.pac-item-query {
    font-size: 14px;
    color: #1d1d1f;
    font-weight: 500;
}

.pac-matched {
    font-weight: 600;
    color: #000000;
}

/* Dark theme for hero section autocomplete */
.hero-booking .pac-container {
    background-color: #1a1a1a;
}

.hero-booking .pac-item {
    color: #ffffff;
    border-top-color: rgba(255, 255, 255, 0.1);
}

.hero-booking .pac-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-booking .pac-item-selected {
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-booking .pac-item-query {
    color: #ffffff;
}

.hero-booking .pac-matched {
    color: #ffffff;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-booking {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        min-height: 300px;
    }
    
    .stat-box {
        padding: 1.75rem;
    }
    
    .stat-box .stat-number {
        font-size: 2.5rem;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .form-row-minimal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row-minimal.three-col {
        grid-template-columns: 1fr;
    }
    
    .reservation-form-minimal {
        gap: 1.5rem;
    }
    
    .reservation-info-minimal {
        gap: 1.5rem;
    }
    
    .contact-info-minimal {
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        gap: 2rem;
        transform: translateX(100%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-link {
        font-size: 1.25rem;
        color: var(--white);
    }

    .nav-link-auth {
        font-size: 1.25rem;
        color: var(--white);
    }

    .nav-cta {
        margin-top: 1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-wrapper {
        padding-top: 7rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .form-row-compact,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-row.three-col {
        grid-template-columns: 1fr;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 1rem auto 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .fleet-card {
        padding: 1.5rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        min-height: 250px;
    }
    
    .stat-box {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
    
    .stat-box .stat-label {
        font-size: 0.875rem;
    }
    
    .hero-booking {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .form-row-minimal,
    .form-row-minimal.three-col {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .reservation-form-minimal,
    .contact-form-minimal {
        gap: 1.25rem;
    }
    
    .btn-reservation-minimal,
    .btn-contact-minimal {
        width: 100%;
        align-self: center;
    }
    
    .reservation-info-minimal,
    .contact-info-minimal {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .benefits-item,
    .contact-item {
        font-size: 0.875rem;
    }

    .contact-item {
        font-size: 0.9375rem;
    }
    
    .btn-contact-minimal {
        width: 100%;
        align-self: center;
    }
}
