/* ==========================================================================
   LALIMO PRIME MAIN THEME DESIGN SYSTEM (2026 EDITION)
   Aesthetic: Obsidian Dark, Champagne Gold, Ultra Glassmorphism, Modern Micro-interactions
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,500;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --v2-bg-obsidian: #08090C;
    --v2-bg-charcoal: #0F1219;
    --v2-bg-surface: #171B26;
    --v2-bg-glass: rgba(18, 22, 33, 0.72);
    --v2-bg-glass-card: rgba(25, 30, 45, 0.55);
    
    --v2-gold-champagne: #D4AF37;
    --v2-gold-bright: #F5D77F;
    --v2-gold-gradient: linear-gradient(135deg, #F3D179 0%, #D4AF37 50%, #AA8417 100%);
    --v2-gold-glow: rgba(212, 175, 55, 0.25);

    --v2-text-primary: #F8FAFC;
    --v2-text-secondary: #CBD5E1;
    --v2-text-muted: #94A3B8;
    
    --v2-border-glass: rgba(255, 255, 255, 0.08);
    --v2-border-gold: rgba(212, 175, 55, 0.3);

    --v2-radius-sm: 8px;
    --v2-radius-md: 14px;
    --v2-radius-lg: 22px;
    --v2-radius-pill: 9999px;

    --v2-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --v2-font-title: 'Outfit', sans-serif;
    --v2-font-accent: 'Playfair Display', serif;

    --v2-shadow-glass: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
    --v2-shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.25);
    --v2-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--v2-bg-obsidian);
    color: var(--v2-text-primary);
}

body {
    font-family: var(--v2-font-body);
    background-color: var(--v2-bg-obsidian);
    color: var(--v2-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--v2-font-title);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gold {
    background: var(--v2-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container-v2 {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Header & Floating Navigation --- */
.v2-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--v2-transition);
}

.v2-nav-glass {
    background: var(--v2-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--v2-border-glass);
    border-radius: var(--v2-radius-pill);
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--v2-shadow-glass);
}

.v2-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v2-brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.v2-brand-text {
    font-family: var(--v2-font-title);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.v2-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.v2-nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--v2-text-secondary);
    position: relative;
}

.v2-nav-link:hover, .v2-nav-link.active {
    color: var(--v2-text-primary);
}

.v2-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--v2-gold-champagne);
    transition: var(--v2-transition);
}

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

.v2-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* --- Buttons --- */
.v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--v2-radius-pill);
    font-family: var(--v2-font-title);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--v2-transition);
    white-space: nowrap;
}

.v2-btn-gold {
    background: var(--v2-gold-gradient);
    color: #000000;
    box-shadow: var(--v2-shadow-gold);
}

.v2-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px -3px rgba(212, 175, 55, 0.4);
}

.v2-btn-outline {
    background: transparent;
    color: var(--v2-text-primary);
    border: 1px solid var(--v2-border-glass);
}

.v2-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--v2-gold-champagne);
}

.v2-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--v2-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Mobile Drawer --- */
.v2-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--v2-bg-charcoal);
    border-left: 1px solid var(--v2-border-glass);
    z-index: 2000;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--v2-transition);
}

.v2-mobile-drawer.open {
    right: 0;
}

.v2-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: var(--v2-transition);
}

.v2-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* --- Hero Section & Background Slider --- */
.v2-hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.v2-hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.v2-hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.v2-hero-bg-slide.active {
    opacity: 1;
}

.v2-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 9, 12, 0.75) 0%, rgba(8, 9, 12, 0.88) 60%, rgba(8, 9, 12, 1) 100%);
    z-index: 2;
}

.v2-hero-container {
    position: relative;
    z-index: 3;
}

.v2-hero-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
}

.v2-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: var(--v2-radius-pill);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--v2-border-gold);
    color: var(--v2-gold-bright);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.v2-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.v2-hero-desc {
    font-size: 1.15rem;
    color: var(--v2-text-secondary);
    font-weight: 300;
    max-width: 660px;
    margin: 0 auto;
}

/* --- Multi-Step Booking Console --- */
.v2-booking-card {
    background: var(--v2-bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--v2-border-glass);
    border-radius: var(--v2-radius-lg);
    padding: 32px;
    box-shadow: var(--v2-shadow-glass);
    position: relative;
}

.v2-service-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.v2-tab-btn {
    padding: 10px 20px;
    border-radius: var(--v2-radius-pill);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--v2-border-glass);
    color: var(--v2-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--v2-transition);
    white-space: nowrap;
}

.v2-tab-btn:hover, .v2-tab-btn.active {
    background: var(--v2-gold-gradient);
    color: #000000;
    border-color: transparent;
    font-weight: 600;
}

/* Stepper Bar */
.v2-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    position: relative;
}

.v2-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.v2-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--v2-bg-surface);
    border: 1px solid var(--v2-border-glass);
    color: var(--v2-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--v2-transition);
}

.v2-step-item.active .v2-step-dot {
    background: var(--v2-gold-gradient);
    color: #000000;
    border-color: transparent;
    box-shadow: 0 0 15px var(--v2-gold-glow);
}

.v2-step-label {
    font-size: 0.8rem;
    color: var(--v2-text-muted);
    font-weight: 500;
}

.v2-step-item.active .v2-step-label {
    color: var(--v2-text-primary);
}

.v2-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.v2-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v2-label {
    font-size: 0.85rem;
    color: var(--v2-text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.v2-input, .v2-select, .v2-textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--v2-radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--v2-border-glass);
    color: var(--v2-text-primary);
    font-family: var(--v2-font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--v2-transition);
}

.v2-input:focus, .v2-select:focus, .v2-textarea:focus {
    border-color: var(--v2-gold-champagne);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

/* Dynamic Step Selection Grid */
.v2-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.v2-selection-card {
    background: var(--v2-bg-glass-card);
    border: 1px solid var(--v2-border-glass);
    border-radius: var(--v2-radius-md);
    padding: 20px;
    cursor: pointer;
    transition: var(--v2-transition);
    position: relative;
}

.v2-selection-card:hover, .v2-selection-card.selected {
    border-color: var(--v2-gold-champagne);
    transform: translateY(-3px);
    box-shadow: var(--v2-shadow-glass);
}

.v2-selection-card.selected::after {
    content: '✓';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 24px;
    height: 24px;
    background: var(--v2-gold-gradient);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
}

.v2-card-img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 14px;
}

.v2-price-tag {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--v2-gold-bright);
}

/* --- Section Layouts --- */
.v2-section {
    padding: 100px 0;
}

.v2-section-title {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.v2-section-title h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 12px;
}

.v2-section-title p {
    color: var(--v2-text-muted);
    font-size: 1.05rem;
}

/* Fleet Showroom Cards */
.v2-fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.v2-fleet-card {
    background: var(--v2-bg-glass);
    border: 1px solid var(--v2-border-glass);
    border-radius: var(--v2-radius-lg);
    overflow: hidden;
    transition: var(--v2-transition);
    display: flex;
    flex-direction: column;
}

.v2-fleet-card:hover {
    transform: translateY(-6px);
    border-color: var(--v2-border-gold);
    box-shadow: var(--v2-shadow-glass);
}

.v2-fleet-img-wrap {
    position: relative;
    padding: 30px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2-fleet-img {
    height: 180px;
    object-fit: contain;
    transition: var(--v2-transition);
}

.v2-fleet-card:hover .v2-fleet-img {
    transform: scale(1.05);
}

.v2-fleet-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.v2-specs-row {
    display: flex;
    gap: 16px;
    margin: 16px 0;
    font-size: 0.85rem;
    color: var(--v2-text-muted);
}

/* Tours Cards */
.v2-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.v2-tour-card {
    position: relative;
    height: 420px;
    border-radius: var(--v2-radius-lg);
    overflow: hidden;
    border: 1px solid var(--v2-border-glass);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.v2-tour-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.v2-tour-card:hover .v2-tour-bg {
    transform: scale(1.08);
}

.v2-tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 20%, rgba(8, 9, 12, 0.92) 100%);
    z-index: 2;
}

.v2-tour-content {
    position: relative;
    z-index: 3;
}

/* Stats Section */
.v2-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    background: var(--v2-bg-glass);
    border: 1px solid var(--v2-border-glass);
    border-radius: var(--v2-radius-lg);
    padding: 40px;
    text-align: center;
}

.v2-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
}

.v2-stat-label {
    color: var(--v2-text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Footer */
.v2-footer {
    background: var(--v2-bg-charcoal);
    border-top: 1px solid var(--v2-border-glass);
    padding: 80px 0 40px;
}

.v2-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.v2-footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.v2-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v2-footer-links a {
    color: var(--v2-text-muted);
    font-size: 0.9rem;
}

.v2-footer-links a:hover {
    color: var(--v2-gold-champagne);
}

.v2-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--v2-border-glass);
    color: var(--v2-text-muted);
    font-size: 0.85rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .v2-nav-links, .v2-nav-actions {
        display: none;
    }
    .v2-mobile-toggle {
        display: block;
    }
    .v2-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .v2-footer-grid {
        grid-template-columns: 1fr;
    }
    .v2-booking-card {
        padding: 20px;
    }
    .v2-hero {
        padding-top: 110px;
    }
}
