/* ============================================================
   LEGOS TRANSFER — Premium Design System v2.0
   ============================================================ */

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

:root {
    --primary: #0ea5e9;
    --primary-dark: #0369a1;
    --primary-light: #e0f2fe;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --navy: #0f172a;
    --navy-mid: #1e293b;
    --teal: #06b6d4;

    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --bg: #f0f9ff;
    --bg-white: #ffffff;
    --border: #e2e8f0;

    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;

    --grad-primary: linear-gradient(135deg, #0369a1, #0ea5e9);
    --grad-hero: linear-gradient(160deg, #020f1e 0%, #0a2240 50%, #0c3460 100%);
    --grad-accent: linear-gradient(135deg, #d97706, #f59e0b);

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.06);
    --shadow-xl: 0 32px 64px rgba(0,0,0,0.16), 0 12px 24px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 30px rgba(14,165,233,0.25);
    --shadow-accent-glow: 0 8px 24px rgba(245,158,11,0.4);

    --radius: 16px;
    --radius-sm: 8px;
    --radius-xl: 24px;
    --nav-height: 72px;
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
                transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5rem;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.08);
}
.logo { display: flex; align-items: center; gap: 0.5rem; transition: transform 0.3s; }
.logo:hover { transform: scale(1.03); }
.logo img { height: 52px; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.25)); }

.nav-links { display: flex; gap: 0.25rem; align-items: center; }
.nav-links a {
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    color: rgba(255,255,255,0.9);
    transition: all 0.2s;
    letter-spacing: 0.01em;
}
nav.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover { background: rgba(255,255,255,0.15); color: white; }
nav.scrolled .nav-links a:hover { background: var(--primary-light); color: var(--primary-dark); }

.lang-curr { display: flex; gap: 8px; align-items: center; }
.badge-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 100px;
    padding: 6px 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    transition: all 0.25s;
    backdrop-filter: blur(8px);
    font-family: inherit;
}
nav.scrolled .badge-btn { background: var(--bg); border-color: var(--border); color: var(--text-dark); }
.badge-btn:hover { background: rgba(255,255,255,0.22); transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 10px;
    transition: all 0.2s;
}
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}
nav.scrolled .hamburger { background: var(--bg); border-color: var(--border); }
nav.scrolled .hamburger span { background: var(--text-dark); }

.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    visibility: hidden; opacity: 0;
    position: absolute; right: 0;
    background: white;
    min-width: 160px;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    z-index: 1000;
    overflow: hidden;
    margin-top: 8px;
    border: 1px solid var(--border);
    transform: translateY(8px) scale(0.97);
    transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
}
.dropdown-content::before { content: ''; position: absolute; top: -15px; left: 0; width: 100%; height: 15px; }
.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.15s;
}
.dropdown-content a:hover { background: var(--bg); color: var(--primary); }
.dropdown:hover .dropdown-content { visibility: visible; opacity: 1; transform: translateY(0) scale(1); }

/* Mobile Navigation Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9,18,38,0.98);
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    backdrop-filter: blur(12px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    transition: all 0.2s;
    width: 240px;
    text-align: center;
    border: 1px solid transparent;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); color: #fbbf24; border-color: rgba(255,255,255,0.1); }
.mobile-nav .mobile-lang { display: flex; gap: 0.75rem; margin-top: 1rem; }
.mobile-nav-close {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    background: rgba(255,255,255,0.08);
    border: none;
    color: white;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.15); transform: rotate(90deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: var(--grad-hero);
}
.slider { position: absolute; inset: 0; z-index: 0; }
.slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.slide.active { opacity: 1; }
.slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(2,15,40,0.55) 0%,
        rgba(2,15,40,0.3) 45%,
        rgba(2,15,40,0.75) 100%
    );
}

/* Ambient glow orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    pointer-events: none;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.2) 0%, transparent 70%);
    top: -150px; left: -150px;
    animation: orbDrift 12s ease-in-out infinite;
}
.hero-orb-2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    animation: orbDrift 10s ease-in-out infinite reverse;
}
@keyframes orbDrift {
    0%, 100% { transform: translate(0,0); }
    33% { transform: translate(30px,-20px); }
    66% { transform: translate(-20px,25px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 2rem;
    padding-top: calc(var(--nav-height) + 3rem);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: 100px;
    padding: 7px 20px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fbbf24;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    animation: heroBadgeIn 1s cubic-bezier(0.16,1,0.3,1) 0.1s both, badgePulse 3s ease-in-out infinite 1.1s;
}
.hero-badge .pulse-dot {
    width: 7px; height: 7px;
    background: #fbbf24;
    border-radius: 50%;
    animation: dotBlink 1.5s ease-in-out infinite;
}
@keyframes heroBadgeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes badgePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}
@keyframes dotBlink { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 1.05;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 24px rgba(0,0,0,0.3);
    animation: heroIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.25s both;
}
.hero h1 .accent-word {
    background: linear-gradient(135deg, #fde68a, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2.5rem;
    opacity: 0.88;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    animation: heroIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.55s both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.55);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: heroIn 1s cubic-bezier(0.16,1,0.3,1) 1.2s both, scrollBounce 2.5s ease-in-out infinite 2.2s;
}
.scroll-indicator .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-section {
    background: var(--navy);
    padding: 2.75rem 2rem;
    position: relative;
    overflow: hidden;
}
.stats-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14,165,233,0.4), rgba(245,158,11,0.4), transparent);
}
.stats-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.stat-item {
    text-align: center;
    padding: 1.25rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { transform: translateY(-3px); }
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.35rem;
    color: white;
}
.stat-number .suffix { color: #fbbf24; }
.stat-label {
    color: rgba(255,255,255,0.45);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
section { scroll-margin-top: var(--nav-height); }
.section-center { text-align: center; max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 1rem;
    background: var(--primary-light);
    color: var(--primary-dark);
}
.section-tag.dark-bg {
    background: rgba(245,158,11,0.12);
    color: #fbbf24;
    border: 1px solid rgba(245,158,11,0.25);
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.9rem,4vw,3rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 0.8rem;
}
.section-title.on-dark { color: white; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.section-sub.on-dark { color: rgba(255,255,255,0.55); }

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-wrapper {
    padding: 5.5rem 2rem;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}
.booking-container {
    max-width: 880px;
    margin: 2.5rem auto 0;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.wizard-steps {
    display: flex;
    background: var(--navy);
    padding: 1.1rem 1.75rem;
    gap: 0.25rem;
}
.step-indicator {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    padding: 0.6rem 0.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    cursor: default;
}
.step-num {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 900;
    flex-shrink: 0;
    transition: all 0.3s;
}
.step-indicator.active { color: white; }
.step-indicator.active .step-num {
    background: var(--accent);
    color: var(--navy);
    box-shadow: 0 0 14px rgba(245,158,11,0.6);
}
.step-indicator.completed .step-num { background: var(--success); color: white; }

.step-panel { display: none; padding: 2rem; animation: stepIn 0.4s ease; }
.step-panel.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: translateX(0); } }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; position: relative; }
.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--text-body);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fafbfd;
    color: var(--text-dark);
    transition: all 0.2s;
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(14,165,233,0.12);
}
.form-control::placeholder { color: var(--text-light); }
.form-control-sm { padding: 0.48rem 0.7rem; font-size: 0.85rem; border-radius: 8px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.ultra-compact { gap: 0.6rem !important; }
.compact-group { margin-bottom: 0.5rem !important; }
.compact-group label { font-size: 0.7rem !important; margin-bottom: 2px !important; }

.autocomplete-list {
    position: absolute; z-index: 100;
    background: white; width: 100%;
    max-height: 280px; overflow-y: auto;
    border: 2px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    top: calc(100% + 6px);
    display: none;
    overflow: hidden;
}
.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.15s;
}
.autocomplete-item::before { content: '📍'; font-size: 0.82rem; flex-shrink: 0; }
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover { background: var(--bg); color: var(--primary-dark); padding-left: 22px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
    border: none;
    font-family: inherit;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.82rem; border-radius: 8px; }
.btn-lg { padding: 1.05rem 2.25rem; font-size: 1rem; border-radius: 12px; }

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(14,165,233,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,165,233,0.45); filter: brightness(1.06); }

.btn-accent {
    background: var(--grad-accent);
    color: white;
    font-weight: 800;
    box-shadow: var(--shadow-accent-glow);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,158,11,0.5); filter: brightness(1.05); }

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }

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

/* ============================================================
   VEHICLE CARDS
   ============================================================ */
.vehicle-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: white;
}
.vehicle-card:hover { border-color: var(--primary); box-shadow: var(--shadow-glow), var(--shadow-lg); transform: translateY(-4px); }
.vehicle-card.selected { border-color: var(--primary); border-width: 2px; background: #f0f9ff; box-shadow: var(--shadow-glow); }
.vehicle-card img { width: 100%; height: 120px; object-fit: contain; border-radius: 8px; }

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
    padding: 6rem 2rem;
    background: white;
}
.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}
.feature-card {
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--border);
    background: white;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.feature-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
    width: 58px; height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: var(--primary-light);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.feature-card:hover .feature-icon { background: var(--primary); transform: scale(1.1) rotate(6deg); }
.feature-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: 6rem 2rem;
    background: var(--bg);
}
.about-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.about-img-wrap:hover img { transform: scale(1.02); }
.about-img-badge {
    position: absolute;
    bottom: -18px; right: -18px;
    background: var(--navy);
    color: white;
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 130px;
}
.about-img-badge .badge-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
    display: block;
}
.about-img-badge .badge-txt {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
}
.about-content p { color: var(--text-body); line-height: 1.8; margin-bottom: 1rem; font-size: 0.97rem; }
.about-check-list { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.5rem; }
.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-body);
}
.check-item i { color: var(--success); font-size: 1rem; }

/* ============================================================
   STEPS / INSTRUCTIONS (DARK)
   ============================================================ */
.steps-section {
    padding: 6rem 2rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.steps-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.steps-section > div { position: relative; z-index: 1; }
.steps-grid {
    max-width: 1100px;
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 33px; left: 12.5%; right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.35;
    z-index: 0;
}
.step-card {
    position: relative; z-index: 1;
    text-align: center;
    padding: 1.5rem 1rem;
    transition: transform 0.3s;
}
.step-card:hover { transform: translateY(-6px); }
.step-number {
    width: 66px; height: 66px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.1);
    position: relative;
    transition: all 0.3s;
}
.step-number::before {
    content: attr(data-step);
    position: absolute;
    top: -8px; right: -8px;
    width: 24px; height: 24px;
    background: var(--accent);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 900;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-card:hover .step-number { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); }
.step-card h4 { color: white; font-weight: 800; font-size: 1rem; margin-bottom: 0.6rem; }
.step-card p { color: rgba(255,255,255,0.5); font-size: 0.86rem; line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
    padding: 6rem 2rem;
    background: white;
}
.contact-inner {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
.contact-info-list { margin-top: 2rem; }
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
    width: 46px; height: 46px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}
.contact-info-item:hover .contact-icon { background: var(--primary); color: white; transform: scale(1.1) rotate(-6deg); }
.contact-info-item strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 2px; }
.contact-info-item p { font-size: 0.95rem; color: var(--text-body); font-weight: 500; }
.contact-form-card { background: var(--bg); border-radius: var(--radius-xl); padding: 2.5rem; border: 1.5px solid var(--border); }
.contact-form-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 1.5rem; }

/* ============================================================
   VERIFY SECTION
   ============================================================ */
.verify-section {
    padding: 5.5rem 2rem;
    background: linear-gradient(135deg, var(--bg) 0%, white 100%);
}
.verify-card {
    max-width: 580px;
    margin: 2.5rem auto 0;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 3rem 2.5rem;
    border: 1.5px solid var(--border);
    text-align: center;
}
.verify-icon {
    width: 72px; height: 72px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

/* ============================================================
   SUCCESS STEP
   ============================================================ */
.success-step { text-align: center; padding: 3rem 1rem; }
.success-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #059669, #10b981);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 16px rgba(16,185,129,0.1);
    animation: successPop 0.65s cubic-bezier(0.16,1,0.3,1);
}
.success-icon i { color: white; font-size: 2.2rem; }
@keyframes successPop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btn {
    position: fixed;
    bottom: 24px;
    width: 52px; height: 52px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    color: white;
    font-size: 1.4rem;
}
.float-btn:hover { transform: scale(1.12) translateY(-4px); }
.wa-btn { right: 24px; background: linear-gradient(135deg, #075E54, #25D366); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
.ms-btn { right: 88px; background: linear-gradient(135deg, #005ecb, #0084FF); box-shadow: 0 8px 24px rgba(0,132,255,0.45); }
.float-btn[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 10px);
    background: var(--navy);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.2s;
    pointer-events: none;
}
.float-btn[data-tooltip]:hover::before { opacity: 1; transform: translateX(0); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--navy);
    color: white;
    padding: 3.5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14,165,233,0.5), rgba(245,158,11,0.5), transparent);
}
.footer-top {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-top: 0.6rem;
    max-width: 280px;
}
.footer-links { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.footer-links a:hover { color: white; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img-wrap img { height: 300px; }
    .about-img-badge { right: 0; }
    .steps-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid::before { display: none; }
    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .step-indicator span { display: none; }
    .step-indicator { font-size: 0; padding: 0.5rem 0.25rem; }
    .step-indicator.active { font-size: 0.7rem; }
    .step-panel { padding: 1.5rem; }
    .booking-wrapper { padding: 3rem 0.75rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .footer-top { flex-direction: column; align-items: flex-start; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; }
    .verify-card { padding: 2rem 1.25rem; }
    .contact-form-card { padding: 1.5rem; }
    .about-section, .features-section, .contact-section, .steps-section { padding: 4rem 1.25rem; }
}
