/* ========================================
   CSS VARIABLES & RESET
======================================== */
:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1C1C1C;
    --text-primary: #FAFAFA;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
    --accent-gold: #C67A3C;
    --accent-gold-light: #D48E55;
    --accent-gold-dark: #A8612E;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(201, 169, 98, 0.3);
    --shadow-gold: rgba(201, 169, 98, 0.15);
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* Images */
.hero-image img,
.scooter-image img,
.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Scroll margin for anchor targets */
[id] {
    scroll-margin-top: 100px;
}

/* Focus visible (WCAG 2.1) */
:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

/* ========================================
   UTILITIES & ANIMATIONS
======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ========================================
   NAVIGATION
======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease-smooth);
    will-change: background-color, backdrop-filter;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo span {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-mobile-cta {
    display: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s var(--ease-smooth);
}

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

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

.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 2px;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--accent-gold);
}

.lang-divider {
    color: var(--border-subtle);
    font-size: 0.8rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Standardized subpage header class to avoid transition jumps */
.subpage-header {
    padding-top: 160px !important;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--border-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    display: block;
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-gold);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold-light);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-smooth);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-smooth);
}

.btn-secondary:hover {
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

.hero-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(201, 169, 98, 0.05) 180deg, transparent 360deg);
}


.hero-image-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--accent-gold);
    opacity: 0.5;
    position: relative;
    z-index: 1;
}

.hero-image-placeholder span {
    color: var(--text-muted);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ========================================
   SCOOTERS SECTION
======================================== */
.scooters {
    padding: 8rem 0;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.scooters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.scooter-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.scooter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.scooter-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px var(--shadow-gold);
}

.scooter-card:hover::before {
    opacity: 1;
}

.scooter-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(201, 169, 98, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.scooter-image svg {
    width: 60px;
    height: 60px;
    color: var(--accent-gold);
    opacity: 0.4;
}

/* Scooter Carousel */
.scooter-carousel .carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.scooter-carousel .carousel-track img {
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: var(--accent-gold);
}

.scooter-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.scooter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.scooter-tag {
    background: rgba(201, 169, 98, 0.1);
    color: var(--accent-gold);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.scooter-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.scooter-price-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.scooter-price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.scooter-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.85rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 8px;
    justify-content: center;
    gap: 0.5rem;
}

.scooter-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.scooter-card:hover .scooter-btn {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-primary);
}

.scooter-card:hover .scooter-btn svg {
    transform: translateX(4px);
}

/* ========================================
   TARIFS SECTION
======================================== */
.tarifs {
    padding: 8rem 0;
    background: var(--bg-secondary);
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}

.tarifs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.tarifs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tarifs-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: sticky;
    top: 120px;
}

.tarifs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.tarif-item:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
}

.tarif-name {
    font-weight: 500;
    font-size: 1rem;
}

.tarif-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.tarifs-features {
    margin-top: 0;
}

.tarifs-features h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(201, 169, 98, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-accent);
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 16px;
    height: 16px;
    color: var(--bg-primary);
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item-full {
    grid-column: span 2;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: 8rem 0;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-text .section-label {
    text-align: left;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.about-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-values {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.about-value {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    flex: 1;
}

.about-value-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.about-value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.about-value-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.about-image-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(201, 169, 98, 0.1), transparent);
}

.about-image-main svg {
    width: 80px;
    height: 80px;
    color: var(--accent-gold);
    opacity: 0.4;
    position: relative;
    z-index: 1;
}

.about-image-main span {
    color: var(--text-muted);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--bg-primary);
}

.floating-card-text h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.floating-card-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   FAQ SECTION
======================================== */
.faq {
    padding: 8rem 0;
    background: var(--bg-secondary);
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 120px;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s var(--ease-smooth);
}

.faq-item.highlight {
    border-color: var(--accent-gold);
    background: rgba(201, 169, 98, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.expanded .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.expanded .faq-answer {
    max-height: 200px;
}


/* ========================================
   FOOTER
======================================== */
.footer {
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

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

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .scooters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        height: 400px;
        margin-top: 2rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

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

    .tarifs-content,
    .about-content,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .tarifs-left,
    .faq-left {
        position: static;
        text-align: center;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .feature-item[style*="grid-column"] {
        grid-column: auto !important;
    }

    .section-header {
        text-align: center !important;
        margin-bottom: 3rem;
    }

    .about-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1.5rem;
        transform: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav {
        padding: 1rem 0;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(22, 22, 22, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem;
        border-bottom: 1px solid var(--border-subtle);
        gap: 2rem;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        height: 100vh;
        /* Full screen menu for better mobile experience */
        justify-content: center;
    }

    .nav-links.active a {
        font-size: 1.5rem;
        /* Larger touch targets */
    }

    .nav-cta {
        display: none;
    }

    .nav-mobile-cta {
        margin-top: 1rem;
    }

    .nav-mobile-cta a {
        display: inline-block;
        background: var(--accent-gold);
        color: var(--bg-primary) !important;
        padding: 0.9rem 2.5rem;
        border-radius: 8px;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 1.2rem !important;
        text-decoration: none;
        letter-spacing: 0.5px;
    }

    .lang-selector {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-image {
        height: 300px;
    }

    .hero-image img {
        object-position: center 70%;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .scooters-grid,
    .feature-list {
        grid-template-columns: 1fr;
    }

    .feature-item-full {
        grid-column: auto;
    }

    .about-values {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-image-main {
        height: 300px;
    }

    .how-it-works {
        padding: 4rem 0;
    }

    .scooters,
    .tarifs,
    .about,
    .faq,
    .discover-section {
        padding: 4rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Discover section mobile */
    .discover-item {
        padding: 1rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-image {
        height: 250px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .subpage-header {
        padding-top: 100px !important;
    }

    .footer {
        padding: 3rem 0 2rem;
    }
}

/* ========================================
   PRICE SIMULATOR
======================================== */
.simulator-card {
    margin-top: 3rem;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-accent);
    position: relative;
    overflow: hidden;
}

.simulator-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.sim-group {
    margin-bottom: 1.5rem;
}

.sim-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.sim-group select {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-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='%23C67A3C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.sim-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.sim-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sim-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.sim-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.sim-input {
    width: 60px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-display);
}

.sim-input:focus {
    outline: none;
}

.sim-result {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sim-result-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sim-result-value {
    text-align: right;
}

.sim-total-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.sim-currency {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */
.how-it-works {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.step-card {
    padding: 2rem;
    position: relative;
}

.step-icon {
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: var(--accent-gold) !important;
    color: var(--bg-primary) !important;
    transform: scale(1.1);
}

/* ========================================
   SUBPAGE SHARED STYLES (itineraires, reservation)
======================================== */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(65, 40, 20, 0.1) 0%, transparent 40%);
}

.dot-grid {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    opacity: 0.5;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.page-header {
    position: relative;
    z-index: 2;
    padding: 120px 20px 60px;
    text-align: center;
}

/* ========================================
   HOW IT WORKS - STEPS GRID
======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--accent-gold);
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    border: 1px solid var(--border-subtle);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
}

/* ========================================
   SIMULATOR LAYOUT
======================================== */
.simulator-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: end;
}

.sim-group--inline {
    margin-bottom: 0;
}

.sim-controls--center {
    justify-content: center;
}

.sim-result--col {
    border-top: none;
    padding-top: 0;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.sim-result-label--block {
    display: block;
    margin-bottom: 0.5rem;
}

.sim-savings-display {
    color: #4CAF50;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.sim-other-currencies {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
    line-height: 1.4;
}

.sim-book-btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

.simulator-card--wide {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.simulator-card--wide h3 {
    text-align: center;
}

/* ========================================
   FORM COUNTER
======================================== */
.form-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 0.25rem 0.5rem;
    height: 50px;
}

.form-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.2rem;
}

.form-counter-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    -moz-appearance: textfield;
    appearance: textfield;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* ========================================
   RESERVATION FORM
======================================== */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-input {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.1);
}

/* Form Counter Fixes */
.form-counter input[type=number]::-webkit-inner-spin-button,
.form-counter input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ========================================
   DISCOVER SECTION (Map + Itineraries)
======================================== */
.discover-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.discover-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    align-items: stretch;
    min-height: 600px;
    /* Ensure main container has height */
}

.discover-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    /* Max height to match map if needed, or scrollable */
    max-height: 600px;
    overflow-y: auto;
    padding-right: 1rem;
}

/* Custom Scrollbar for list */
.discover-list::-webkit-scrollbar {
    width: 6px;
}

.discover-list::-webkit-scrollbar-track {
    background: rgba(201, 169, 98, 0.05);
}

.discover-list::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.discover-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.discover-item:hover {
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.discover-item.active {
    background: var(--bg-card-hover);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Icon box styles */
.discover-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.discover-item.active .discover-icon {
    background: var(--accent-gold);
    color: var(--bg-primary);
}

.discover-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.discover-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.discover-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.discover-map-container {
    height: 100%;
}

.discover-web-map {
    position: sticky;
    top: 120px;
    height: 100%;
    min-height: 600px;
    /* Force minimum height for map */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.discover-web-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* The "Magnificent" Dark Filter */
    filter: grayscale(1) contrast(1.2) invert(92%) hue-rotate(180deg);
}

@media (max-width: 992px) {
    .discover-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .discover-web-map {
        height: 400px;
        min-height: 400px;
        position: relative;
        top: 0;
        order: -1;
        /* Map on top */
    }

    .discover-list {
        order: 2;
        max-height: 400px;
    }
}