/* ==========================================================================
   ROOT VARIABLES (Премиальная темная тема - Premium European Brand)
   ========================================================================== */
:root {
    --color-primary: #E30613;
    --color-primary-hover: #FF1A1A;
    --color-primary-dark: #B80409;
    --color-primary-dim: rgba(227, 6, 19, 0.18);
    --color-primary-glow: rgba(227, 6, 19, 0.35);

    --color-bg: #0A0A0A;
    --color-bg-secondary: #141414;
    --color-bg-card: rgba(255, 255, 255, 0.05);
    --color-bg-input: rgba(20, 20, 20, 0.85);

    --color-text: #FFFFFF;
    --color-text-secondary: #9CA3AF;
    --color-text-tertiary: rgba(255, 255, 255, 0.55);
    --color-muted: rgba(255, 255, 255, 0.50);
    --color-muted-hover: rgba(255, 255, 255, 0.80);
    --color-border: rgba(255, 255, 255, 0.1);
    --border-base: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.14);

    --font-family: 'Montserrat', 'Roboto', system-ui, sans-serif;
    --container-max: 1320px;
    --shadow-primary: 0 32px 80px rgba(227, 6, 19, 0.3);
    --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);

    --bg-topbar: rgba(8, 8, 8, 0.85);
    --bg-navbar: rgba(12, 12, 12, 0.88);
    --blur: blur(24px) saturate(160%);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: all 0.2s ease;
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.text-accent { color: var(--color-primary); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 32px; border: none; border-radius: var(--radius-md); font-weight: 700;
    cursor: pointer; text-transform: uppercase; letter-spacing: 0.06em;
    font-size: 0.9rem; transition: var(--transition); position: relative; overflow: hidden;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.15); transition: var(--transition); z-index: -1;
}
.btn:hover::before { left: 100%; }

.btn-primary { 
    background: var(--color-primary); 
    color: #fff; 
    box-shadow: var(--shadow-primary); 
    font-weight: 900;
    letter-spacing: 0.05em;
}
.btn-primary:hover { 
    background: var(--color-primary-hover); 
    transform: translateY(-4px); 
    box-shadow: 0 40px 90px rgba(227, 6, 19, 0.4); 
}
.btn-primary:active {
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08); 
    color: var(--color-text);
    border: 1.5px solid rgba(227, 6, 19, 0.25); 
    backdrop-filter: blur(12px);
    font-weight: 600;
}
.btn-secondary:hover { 
    background: rgba(227, 6, 19, 0.12); 
    border-color: var(--color-primary); 
    color: var(--color-primary);
    transform: translateY(-3px);
}

.btn-lg { padding: 18px 44px; font-size: 0.95rem; }
.btn-sm { padding: 12px 24px; font-size: 0.85rem; }
.btn-full { width: 100%; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; }

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
/* ============================================================
   NAVBAR & TOP BAR — Vienna Transfer
   ============================================================ */

/* ── TOP BAR ──────────────────────────────────────────────── */

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 42px;
    z-index: 1100;
    background: var(--bg-topbar);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--border-base);
}

.top-bar .container {
    max-width: var(--container-max);
    height: 100%;
    margin: 0 auto;
    padding: 0 28px;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 10px;
    border-radius: 99px;
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
}

.top-bar-item i {
    font-size: 0.72rem;
    opacity: 0.7;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.top-bar-item:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.06);
}

.top-bar-item:hover i {
    color: var(--color-primary);
    opacity: 1;
}

.top-bar-divider {
    color: var(--border-light);
    font-size: 0.9rem;
    user-select: none;
    padding: 0 2px;
}

/* ── NAVBAR ───────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-navbar);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border-bottom: 1px solid var(--border-base);
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.96);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.32);
}

.navbar .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
}

.navbar-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    min-height: 68px;
}

/* ── LOGO ─────────────────────────────────────────────────── */

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(1);
    transition: filter var(--transition), transform var(--transition);
}

.logo:hover .logo-img {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.logo-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.logo-text {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

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

.navbar-tagline {
    font-size: 0.48rem;
    color: var(--color-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
}

/* ── NAV MENU ─────────────────────────────────────────────── */

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    position: relative;
    transition: color var(--transition);
    white-space: nowrap;
}

/* hover background pill */
.nav-link::before {
    content: '';
    position: absolute;
    inset: 4px 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0);
    transition: background var(--transition);
}

/* active underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    border-radius: 99px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s var(--ease);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::before {
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #fff;
}

/* ── NAVBAR ACTIONS ───────────────────────────────────────── */

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── LANGUAGE SWITCHER ────────────────────────────────────── */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 99px;
    padding: 4px;
    overflow: hidden;
    
}

.lang-divider {
    display: none; /* replaced by spacing */
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 10px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
    user-select: none;
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.lang-btn:hover:not(.active) {
    color: var(--color-muted-hover);
}

.theme-toggle {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.theme-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-primary);
    font-size: 0.85rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.mobile-theme-toggle {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
}

/* ── HEADER PHONE BUTTON ──────────────────────────────────── */

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background var(--transition-fast), border-color var(--transition-fast),
                color var(--transition-fast), transform var(--transition-fast);
    white-space: nowrap;
}

.header-phone i {
    font-size: 0.78rem;
    opacity: 0.65;
    transition: opacity var(--transition-fast), color var(--transition-fast);
}

.header-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff;
    transform: translateY(-1px);
}

.header-phone:hover i {
    opacity: 1;
    color: var(--color-primary);
}

/* ── PRIMARY CTA BUTTON ───────────────────────────────────── */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    border-radius: 10px;
    background: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px var(--color-primary-dim);
}

/* inner shine layer */
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.14), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px var(--color-primary-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px var(--color-primary-dim);
}

/* ── MOBILE TOGGLE ────────────────────────────────────────── */

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border-light);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

/* ── MOBILE MENU ──────────────────────────────────────────── */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 90vw);
    z-index: 1200;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-left: 1px solid var(--border-light);
    padding: 0 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateX(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.38s var(--ease), visibility 0.38s var(--ease);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 24px;
    border-bottom: 1px solid var(--border-base);
    margin-bottom: 8px;
}

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

.mobile-logo-meta {
    gap: 2px;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-base);
    color: var(--color-muted);
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: block;
    padding: 14px 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-bottom: 1px solid var(--border-base);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav-link:hover {
    color: #fff;
    padding-left: 6px;
}

.mobile-lang-switcher {
    display: flex;
    gap: 8px;
    margin: 24px 0 16px;
}

.mobile-lang-switcher .lang-btn {
    flex: 1;
    justify-content: center;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.8rem;
}

.mobile-lang-switcher .lang-btn.active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: 0.88rem;
    margin-top: auto;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 1024px) {
    .navbar-content {
        grid-template-columns: auto auto;
        gap: 16px;
    }

    .nav-menu {
        display: none;
    }

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

    .header-phone {
        display: none;
    }
}

@media (max-width: 640px) {
    .top-bar {
        height: auto;
        padding: 8px 0;
    }

    .top-bar-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .top-bar-item span {
        display: none;
    }

    .top-bar-item {
        padding: 4px 8px;
    }

    .navbar .container,
    .top-bar .container {
        padding: 0 16px;
    }

    .navbar-content {
        grid-template-columns: 1fr auto;
        gap: 14px;
    }

    .navbar-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .navbar-brand {
        width: 100%;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .navbar-tagline {
        display: none;
    }

    .hero {
        min-height: 75vh;
    }

    .hero-buttons {
        width: 100%;
        gap: 16px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero { 
    position: relative; 
    min-height: 100vh; 
    overflow: hidden; 
    background: #000; 
    display: flex;
    align-items: center;
}
.hero-slides { 
    position: absolute; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
}
.hero-slide { 
    position: absolute; 
    inset: 0; 
    background-size: cover; 
    background-position: center; 
    opacity: 0; 
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity 1s ease, transform 1s ease; 
    display: flex; 
    align-items: center;
}
.hero-slide.active { 
    opacity: 1; 
    visibility: visible;
    transform: scale(1);
    z-index: 1; 
}
.hero-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(10, 10, 10, 0.92) 100%);
    z-index: 1;
}
.hero-slide .container { 
    position: relative; 
    z-index: 2; 
    width: 100%; 
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-content { 
    max-width: 860px; 
    padding-top: 120px;
    margin: 0 auto;
}

.hero-slider-controls {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}
.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.14);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}
.hero-slider-dot.active {
    background: var(--color-primary);
    border-color: rgba(255, 255, 255, 0.95);
    transform: scale(1.1);
}
.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.32);
}

.hero-title { 
    font-size: clamp(2.8rem, 7vw, 5.2rem); 
    font-weight: 900; 
    line-height: 1.1; 
    margin-bottom: 28px; 
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.hero-subtitle { 
    font-size: 1.2rem; 
    margin-bottom: 48px; 
    max-width: 680px;
    font-weight: 500;
    line-height: 1.7;
}
.hero-buttons { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap;
    margin-bottom: 90px;
}

.hero-stats {
    position: absolute; 
    bottom: 60px; 
    left: 0; 
    right: 0; 
    z-index: 3;
    display: grid; 
    grid-template-columns: repeat(3, minmax(160px, 1fr)); 
    gap: 24px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.1); 
    padding-top: 50px;
    max-width: 900px;
    margin: 0 auto;
}
.stat-item { 
    text-align: center; 
    background: rgba(255, 255, 255, 0.03); 
    padding: 28px; 
    border-radius: var(--radius-lg); 
    backdrop-filter: blur(12px); 
    border: 1px solid rgba(227, 6, 19, 0.15);
    transition: var(--transition-fast);
}
.stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(227, 6, 19, 0.3);
}
.stat-value { 
    display: block; 
    font-size: 2.4rem; 
    font-weight: 900; 
    color: var(--color-primary);
    letter-spacing: -0.02em;
}
.stat-label { 
    font-size: 0.85rem; 
    color: var(--color-text-secondary); 
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 8px;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(227, 6, 19, 0.02) 100%);
  border-top: 1px solid rgba(227, 6, 19, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  background: rgba(227, 6, 19, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  border: 1px solid rgba(227, 6, 19, 0.2);
  backdrop-filter: blur(6px);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.9;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-text);

  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto;
}

.section-title span {
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  opacity: 0.7;
}
/* ==========================================================================
   CAR DETAIL
   ========================================================================== */
.car-detail { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}
.car-description { 
    color: var(--color-text-secondary); 
    margin: 24px 0; 
    font-size: 1.05rem;
    line-height: 1.8;
}
.car-features { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap;
    margin-top: 24px;
}
.feature-item { 
    background: rgba(255, 255, 255, 0.04); 
    padding: 14px 20px; 
    border-radius: var(--radius-md); 
    border: 1px solid rgba(227, 6, 19, 0.15); 
    font-size: 0.95rem; 
    display: flex; 
    align-items: center; 
    gap: 12px;
    backdrop-filter: blur(8px);
    transition: var(--transition-fast);
}
.feature-item:hover {
    background: rgba(227, 6, 19, 0.1);
    border-color: rgba(227, 6, 19, 0.3);
}
.feature-item i { 
    color: var(--color-primary);
    font-size: 1.1rem;
}
.car-media img { 
    border-radius: 20px; 
    box-shadow: var(--shadow-card); 
    object-fit: cover; 
    width: 100%; 
    border: 1px solid var(--color-border); 
}

/* ==========================================================================
   GRIDS (Services, Features, Routes)
   ========================================================================== */
.services-grid, .features-grid, .routes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

/* =========================================
   1. СЕТКА ДЛЯ SERVICES И FEATURES (Flexbox для центрирования нижнего ряда)
   ========================================= */
.services-grid, .features-grid { 
    display: flex; 
    flex-wrap: wrap; /* Позволяет карточкам переноситься на новую строку */
    justify-content: center; /* Центрирует неполный нижний ряд */
    gap: 30px;
    margin: 0 auto;
}

/* Ограничиваем features-grid до 4 колонок (4*280px + 3*30px gap = 1210px) */
.features-grid { 
    max-width: 1210px;
}

/* Жестко задаем ширину, чтобы они ровно вставали между верхними карточками */
.service-card, .feature-card, .contact-card {
    flex: 0 0 auto; 
    width: 280px; 
}


/* =========================================
   2. СЕТКА ДЛЯ ROUTES (Оригинальный CSS Grid)
   ========================================= */
.routes-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px;
    justify-content: center;
}


/* =========================================
   3. ОБЩИЙ ВИЗУАЛЬНЫЙ СТИЛЬ ДЛЯ ВСЕХ КАРТОЧЕК (включая route)
   ========================================= */
.service-card, .feature-card, .route-card, .contact-card {
    background: rgba(255, 255, 255, 0.04); 
    border: 1.5px solid rgba(227, 6, 19, 0.1); 
    border-radius: var(--radius-lg);
    padding: 40px 32px; 
    transition: var(--transition); 
    position: relative; 
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.service-card:hover, .feature-card:hover, .route-card:hover, .contact-card:hover {
    transform: translateY(-16px); 
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(227, 6, 19, 0.3); 
    box-shadow: var(--shadow-card);
}

/* Specifics */
.service-icon, .feature-icon, .contact-icon {
    width: 80px; 
    height: 80px; 
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.15), rgba(255, 255, 255, 0.02));
    border: 1.5px solid rgba(227, 6, 19, 0.15); 
    font-size: 2.2rem; 
    color: var(--color-primary); 
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(227, 6, 19, 0.1); 
    transition: transform 0.5s var(--transition);
}
.feature-card { 
    text-align: center; 
}
.feature-icon, .contact-icon { 
    margin: 0 auto 24px; 
}
.contact-card .contact-icon i { 
    font-size: 1.4rem; 
}
.contact-card:hover .contact-icon { 
    transform: translateY(-8px) rotate(-8deg); 
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); 
}

/* Contact grid and actions */
.contact-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 24px; 
}
.contact-title { 
    font-size: 1.15rem; 
    font-weight: 900; 
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.contact-value { 
    color: var(--color-text-secondary); 
    margin-bottom: 16px;
    font-weight: 500;
}
.contact-value a { 
    color: inherit; 
    transition: color 0.3s ease;
    font-weight: 600;
}
.contact-value a:hover { 
    color: var(--color-primary); 
}
.contact-actions { 
    display: flex; 
    gap: 12px; 
    justify-content: center; 
    margin-top: 12px; 
}
.contact-actions .btn { 
    padding: 10px 20px; 
    border-radius: var(--radius-md); 
    font-size: 0.8rem;
}
.contact-actions .btn-primary { 
    box-shadow: 0 12px 32px rgba(227, 6, 19, 0.15); 
}

.service-title, .feature-title { 
    font-size: 1.15rem; 
    font-weight: 900; 
    margin-bottom: 14px; 
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.service-description, .feature-description { 
    color: var(--color-text-secondary); 
    font-size: 0.95rem;
    line-height: 1.6;
}
.service-arrow { 
    position: absolute; 
    bottom: 32px; 
    right: 32px; 
    color: var(--color-text-secondary); 
    transition: var(--transition);
    font-size: 1.2rem;
}
.service-card:hover .service-arrow { 
    color: var(--color-primary); 
    transform: translateX(8px); 
}

/* Routes specific */
.route-card { 
    padding: 0;
    overflow: hidden;
}
.route-image { 
    height: 240px; 
    overflow: hidden; 
    position: relative; 
}
.route-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: var(--transition); 
    opacity: 0.88;
}
.route-card:hover .route-image img { 
    transform: scale(1.08); 
    opacity: 1; 
}
.route-content { 
    padding: 36px; 
}
.route-title { 
    font-size: 1.35rem; 
    font-weight: 900; 
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.route-description {
    color: var(--color-text-secondary);
    line-height: 1.6;
}
.route-footer { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: 28px; 
    padding-top: 24px; 
    border-top: 1.5px solid rgba(227, 6, 19, 0.15); 
}
.route-price { 
    font-size: 1.8rem; 
    font-weight: 900;
}

/* Landscape cards redesign */
.landscape-card {
    border: none;
    border-radius: calc(var(--radius-lg) * 1.2);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
    overflow: hidden;
    position: relative;
}
.landscape-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(227, 6, 19, 0.16), transparent 28%);
    pointer-events: none;
}
.landscape-card .route-image {
    height: 320px;
}
.landscape-card .route-image img {
    transition: var(--transition);
    filter: saturate(1.1) contrast(1.05);
}
.landscape-card .route-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.26));
    pointer-events: none;
}
.landscape-card .route-content {
    padding: 32px 30px 34px;
    background: rgba(0, 0, 0, 0.05);
}
.landscape-card .route-title {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.landscape-card .route-description {
    color: rgba(255, 255, 255, 0.82);
}
.landscape-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.25);
}
.landscape-card:hover .route-image img {
    transform: scale(1.1) rotate(0.35deg);
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

/* ==========================================================================
   BOOKING FORM
   ========================================================================== */
.booking-form-container {
    background: rgba(255, 255, 255, 0.03); 
    border: 1.5px solid rgba(227, 6, 19, 0.2);
    border-radius: var(--radius-lg); 
    padding: 48px; 
    max-width: 900px; 
    margin: 0 auto; 
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.form-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 24px; 
    margin-bottom: 32px; 
}
.form-group { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
}
.form-group label { 
    font-weight: 800; 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    color: var(--color-text-secondary);
    letter-spacing: 0.1em;
}
.form-group input, 
.form-group select, 
.form-group textarea {
    background: var(--color-bg-input); 
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md); 
    padding: 14px 18px; 
    color: var(--color-text);
    transition: var(--transition-fast);
    font-size: 0.95rem;
    font-weight: 500;
}
.form-group textarea {
    min-height: 160px;
    resize: vertical;
}
.form-group.textarea {
    grid-column: 1 / -1;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-tertiary);
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus { 
    outline: none; 
    border-color: var(--color-primary);
  background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.form-group.has-error input,
.form-group.has-error select {
    border-color: #FF4444;
    background: rgba(255, 68, 68, 0.05);
}

.form-group.has-error input:focus,
.form-group.has-error select:focus {
    box-shadow: 0 0 0 3px rgba(255, 68, 68, 0.15);
}

.form-error {
    font-size: 0.75rem;
    color: #FF6B6B;
    margin-top: -4px;
    display: none;
}

.form-group.has-error .form-error {
    display: block;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-slider { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; }
.testimonials-slider::-webkit-scrollbar { height: 6px; }
.testimonials-slider::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 10px; }
.testimonial-card {
    min-width: 350px; scroll-snap-align: start; flex-shrink: 0;
    background: var(--color-bg-card); border: 1px solid var(--color-border); padding: 32px; border-radius: 20px;
}
.testimonial-stars { color: #FFD700; margin-bottom: 16px; }
.testimonial-text { font-style: italic; color: var(--color-text-secondary); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar { width: 48px; height: 48px; background: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; }
.testimonial-name { font-weight: 700; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--color-border); border-radius: 16px; margin-bottom: 16px; background: var(--color-bg-card); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(214, 0, 0, 0.3); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px; background: none; border: none; color: var(--color-text); font-size: 1.05rem; font-weight: 700; cursor: pointer; text-align: left; }
.faq-icon { color: var(--color-primary); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 24px 24px; color: var(--color-text-secondary); }
.faq-item.active .faq-answer { max-height: 500px; }

/* ==========================================================================
   ANIMATIONS (Scroll Reveal)
   ========================================================================== */
[data-animate] {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: linear-gradient(180deg, #111, #000); padding: 80px 0 20px; border-top: 1px solid var(--color-border); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 60px; }
.logo-img-footer { height: 50px; margin-bottom: 20px; filter: grayscale(1) brightness(2); }
.footer-desc { color: var(--color-text-secondary); margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: var(--color-bg-card); display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); transition: var(--transition); }
.footer-social a:hover { background: var(--color-primary); border-color: var(--color-primary); }
.footer-title { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; margin-bottom: 24px; }
.footer-links li, .footer-contact li { margin-bottom: 12px; color: var(--color-text-secondary); }
.footer-links a:hover { color: var(--color-primary); }
.footer-contact i { color: var(--color-primary); width: 24px; }
.footer-bottom { text-align: center; border-top: 1px solid var(--color-border); padding-top: 24px; color: var(--color-text-tertiary); font-size: 0.9rem; }

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index: 3000; display: none; align-items: center; justify-content: center; }
.modal.active { display: flex; }
.modal-content { background: var(--color-bg-secondary); border: 1px solid var(--color-border); border-radius: 24px; padding: 48px; max-width: 400px; text-align: center; }
.modal-icon { font-size: 4rem; color: #25D366; margin-bottom: 24px; }
.modal-content h3 { font-size: 1.5rem; margin-bottom: 16px; text-transform: uppercase; color: var(--color-text); }
.modal-content p { color: var(--color-text-secondary); margin-bottom: 32px; }

/* ==========================================================================
   ANIMATIONS (Scroll Reveal)
   ========================================================================== */
[data-animate] {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: stretch;
  position: relative;
}

.how-it-works-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent, var(--color-primary));
    z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 52px 28px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  min-height: 280px;
  box-sizing: border-box;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.2), rgba(227, 6, 19, 0.05));
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-primary);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Ensure descriptions don't push other cards and keep content aligned */
.step-item .step-description {
  margin-top: auto;
}

/* ==========================================================================
   FLEET SECTION
   ========================================================================== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.fleet-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    cursor: pointer;
}

.fleet-card:hover {
    transform: translateY(-12px);
    border-color: rgba(227, 6, 19, 0.3);
    box-shadow: var(--shadow-card);
}

.fleet-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.1), rgba(255, 255, 255, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--color-primary);
    overflow: hidden;
    position: relative;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.08);
}

.fleet-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.fleet-content {
    padding: 28px;
}

.fleet-model {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.fleet-class {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.fleet-spec i {
    color: var(--color-primary);
    width: 20px;
}

/* ==========================================================================
   RESPONSIVE UPDATES
   ========================================================================== */

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    .navbar-content {
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 16px;
    }
    .navbar-actions .lang-switcher {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .car-detail {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: 85vh;
    }
    .hero-stats {
        position: static;
        bottom: auto;
        padding-top: 60px;
        border: none;
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
        max-width: 100%;
    }
    .hero-content {
        padding-top: 40px;
        text-align: center;
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .hero-subtitle {
        margin: 0 auto 32px;
        max-width: 100%;
    }
    .how-it-works-container {
        gap: 24px;
    }
    .how-it-works-container::before {
        display: none;
    }
    .step-item {
        padding: 24px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .navbar {
        top: 0;
        padding: 12px 18px;
    }
    .navbar-content {
        width: calc(100% - 36px);
        gap: 16px;
    }
    .logo {
        gap: 12px;
    }
    .logo-text {
        font-size: 0.85rem;
    }
    .navbar-tagline {
        display: none;
    }
    .mobile-logo-meta {
        display: none;
    }
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .hero-slides, .hero-slide {
        position: relative;
        min-height: auto;
    }
    .hero-slide {
        padding: 40px 0;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .section {
        padding: 60px 0;
    }
    .booking-form-container {
        padding: 32px;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    .fleet-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .btn-lg {
        width: 100%;
    }
    .route-image {
        height: 180px;
    }
    .footer-grid {
        gap: 32px;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
    .how-it-works-container {
        gap: 32px;
    }
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    .fleet-image {
        height: 200px;
    }
}


/* ============================================================
   VIENNA TRANSFER — Mobile Responsive
   Дополняет основной CSS. Подключать ПОСЛЕ него.
   ============================================================ */

/* ─── Мобильное меню: базовые стили (вне медиазапроса) ──────
   В основном CSS .mobile-menu дублируется дважды с конфликтом:
   первый блок — panel справа (width: 340px),
   второй — fullscreen (width: 100%).
   Оставляем panel-стиль как основу, доводим до ума.
   ─────────────────────────────────────────────────────────── */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  z-index: 1200;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  padding: 0 20px 28px;
  overflow-y: auto;
  /* сброс двойного объявления display: none из второго блока */
  transform: translateX(110%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.36s linear;
}

/* класс вешает JS (mobile-menu.js) */
.mobile-menu.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

/* оверлей — JS добавляет его при открытии */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* блокировка прокрутки */
body.menu-open {
  overflow: hidden;
}

/* ─── Mobile menu: внутренние элементы ──────────────────── */

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
  flex-shrink: 0;
}

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

.mobile-brand .logo-img {
  height: 34px;
  width: auto;
}

.mobile-logo-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mobile-logo-meta .logo-text {
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.mobile-logo-meta .navbar-tagline {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.9);
}

/* nav links */
.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  flex: 1;
}

.mobile-nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-link {
  display: block;
  padding: 15px 4px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 8px;
}

/* lang */
.mobile-lang-switcher {
  display: flex;
  gap: 8px;
  padding: 20px 0 12px;
  flex-shrink: 0;
}

.mobile-lang-switcher .lang-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mobile-lang-switcher .lang-btn.active {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
}

.mobile-lang-switcher .lang-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
}

/* CTA кнопка */
.mobile-menu .btn-full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 12px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ─── Navbar: планшеты (≤ 1024px) ───────────────────────── */

@media (max-width: 1024px) {
  .navbar {
    top: 0; /* top-bar скрыт — navbar сдвигаем наверх */
  }

  .top-bar {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex !important; /* override display:none из десктоп-стилей */
  }

  .header-phone {
    display: none;
  }

  /* grid → flex для navbar-content */
  .navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    gap: 12px;
  }

  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }

  /* скрываем lang в шапке — он в мобильном меню */
  .navbar-actions .lang-switcher {
    display: none;
  }

  /* "Забронировать" в шапке — оставляем, но компактнее */
  .navbar-actions > .btn-primary {
    padding: 8px 16px;
    font-size: 0.78rem;
  }
}

/* ─── Navbar: телефоны (≤ 640px) ─────────────────────────── */

@media (max-width: 640px) {
  .navbar .container {
    padding: 0 14px;
  }

  .navbar-content {
    min-height: 56px;
    gap: 10px;
  }

  /* скрываем текстовую часть логотипа — только иконка */
  .navbar-tagline {
    display: none;
  }

  .logo-img {
    height: 32px;
  }

  /* скрываем кнопку "Забронировать" из шапки — есть в меню */
  .navbar-actions > .btn-primary {
    display: none;
  }
}

/* ─── Hero (≤ 1024px) ───────────────────────────────────── */

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
  }

  /* slides: позиционируем относительно, а не absolute-стопкой */
  .hero-slides {
    position: relative;
    min-height: 520px;
  }

  .hero-slide {
    min-height: 520px;
  }

  .hero-content {
    padding-top: 100px; /* отступ под фиксированный navbar */
    padding-bottom: 40px;
    text-align: center;
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-buttons .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  /* stats: из absolute — в поток */
  .hero-stats {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: none;
    padding-top: 24px;
    max-width: 100%;
  }

  .hero-slider-controls {
    position: static;
    margin: 26px auto 0;
    transform: none;
    justify-content: center;
  }

  .stat-item {
    padding: 20px 12px;
  }
}

/* ─── Hero (≤ 768px) ────────────────────────────────────── */

@media (max-width: 768px) {
  .hero-slides {
    min-height: 100svh;
  }

  .hero-slide {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 32px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .hero-buttons .btn {
    max-width: 100%;
  }

  /* stats: в строку с compact-паддингами */
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 16px;
  }

  .stat-item {
    padding: 14px 8px;
    border-radius: 12px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }
}

/* ─── Hero (≤ 480px) ────────────────────────────────────── */

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

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

  /* stats в один столбец */
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .stat-item {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    padding: 14px 20px;
    text-align: left;
  }

  .stat-value {
    font-size: 1.8rem;
    flex-shrink: 0;
  }

  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
}

/* ─── FINAL Mobile Hero + Menu Overrides ───────────────────── */
@media (max-width: 1024px) {
  .hero {
    min-height: 90vh !important;
    padding: 0 !important;
  }
  .hero-slides {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
  }
  .hero-slide {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
  }
  .hero-slide .container {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
  }
  .hero-content {
    padding: 84px 24px 48px !important;
    max-width: 100% !important;
    text-align: center !important;
  }
  .hero-subtitle {
    margin: 0 auto 28px !important;
    max-width: 100% !important;
  }
  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    margin-bottom: 48px !important;
  }
  .hero-buttons .btn {
    width: 100% !important;
    max-width: 360px !important;
  }
  .hero-slider-controls {
    position: absolute !important;
    left: 50% !important;
    bottom: 16px !important;
    transform: translateX(-50%) !important;
    justify-content: center !important;
    gap: 10px !important;
    z-index: 5 !important;
  }
  .hero-stats {
    position: static !important;
    margin-top: auto !important;
    border-top: none !important;
    padding-top: 24px !important;
    width: 100% !important;
  }
  .mobile-menu {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    border-left: none !important;
    border-right: none !important;
    transform: translateX(100%) !important;
    padding: 22px 20px 28px !important;
  }
  .mobile-menu.active {
    transform: translateX(0) !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .nav-menu {
    display: none !important;
  }
  .navbar-actions .lang-switcher {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh !important;
  }
  .hero-content {
    padding: 72px 18px 38px !important;
  }
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem) !important;
  }
  .hero-subtitle {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
  .hero-slider-controls {
    bottom: 12px !important;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 64px 16px 32px !important;
  }
  .hero-title {
    font-size: clamp(1.6rem, 9vw, 2.2rem) !important;
  }
  .hero-subtitle {
    font-size: 0.92rem !important;
  }
  .hero-slider-dot {
    width: 10px !important;
    height: 10px !important;
  }
  .hero-buttons {
    margin-bottom: 36px !important;
  }
  .hero-stats {
    gap: 10px !important;
  }
  .stat-item {
    padding: 14px 18px !important;
  }
}

/* ─── Container ──────────────────────────────────────────── */

@media (max-width: 768px) {
  .container {
    padding-inline: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: 14px;
  }
}

/* ─── Sections general ───────────────────────────────────── */

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}

@media (max-width: 480px) {
  .section {
    padding: 48px 0;
  }
}

/* ─── Booking form ───────────────────────────────────────── */

@media (max-width: 768px) {
  .booking-form-container {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ─── Car detail ─────────────────────────────────────────── */

@media (max-width: 1024px) {
  .car-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─── Grids (services, features, routes) ────────────────── */

@media (max-width: 768px) {
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .routes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card,
  .feature-card {
    padding: 28px 22px;
  }

  .route-image {
    height: 200px;
  }

  .route-content {
    padding: 24px;
  }
}

/* ─── How it works ───────────────────────────────────────── */

@media (max-width: 768px) {
  .how-it-works-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how-it-works-container::before {
    display: none;
  }

  .step-item {
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin: 0;
  }

  .step-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .step-description {
    font-size: 0.88rem;
  }
}

/* ─── Fleet ──────────────────────────────────────────────── */

@media (max-width: 768px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fleet-image {
    height: 220px;
  }
}

/* ─── Testimonials ───────────────────────────────────────── */

@media (max-width: 768px) {
  .testimonials-slider {
    gap: 16px;
    padding-bottom: 16px;
    /* touch scroll hint */
    scroll-padding-inline: 14px;
    padding-inline: 14px;
    margin-inline: -14px;
  }

  .testimonial-card {
    min-width: calc(85vw);
    padding: 24px 20px;
  }
}

/* ─── Contact grid ───────────────────────────────────────── */

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ─── Footer ─────────────────────────────────────────────── */

@media (max-width: 768px) {
  .footer {
    padding: 56px 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    gap: 28px;
  }
}

/* ─── Modal ──────────────────────────────────────────────── */

@media (max-width: 480px) {
  .modal-content {
    padding: 32px 20px;
    margin: 16px;
    max-width: calc(100vw - 32px);
    border-radius: 16px;
  }
}

/* ─── FAQ ────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .faq-question {
    padding: 18px 16px;
    font-size: 0.92rem;
  }

  .faq-answer p {
    padding: 0 16px 18px;
    font-size: 0.9rem;
  }
}

/* ─── Общие утилиты ──────────────────────────────────────── */

/* Убираем hover-трансформации на touch — не работают правильно */
@media (hover: none) {
  .service-card:hover,
  .feature-card:hover,
  .route-card:hover,
  .fleet-card:hover,
  .contact-card:hover {
    transform: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .btn-secondary:hover {
    transform: none;
  }
}


/* ==========================================================================
   LIGHT THEME OVERRIDES
   ========================================================================== */
body.light-theme {
    --color-primary: #d5001c;
    --color-primary-hover: #f43135;
    --color-primary-dark: #9a0017;
    --color-bg: #f7f8fb;
    --color-bg-secondary: #ffffff;
    --color-bg-card: rgba(255, 255, 255, 0.96);
    --color-bg-input: rgba(245, 246, 250, 0.95);
    
    /* ИМЕННО ЭТИ ДВЕ СТРОКИ АВТОМАТИЧЕСКИ ПОКРАСЯТ ВСЕ ЗАГОЛОВКИ И ТЕКСТЫ */
    --color-text: #111827; 
    --color-text-secondary: #4b5563;
    
    --color-text-tertiary: #6b7280;
    --color-border: rgba(15, 23, 42, 0.08);
    --color-muted: #4b5563;
    --color-muted-hover: #4b5563;
    --border-base: rgba(15, 23, 42, 0.08);
    --border-light: rgba(15, 23, 42, 0.12);
    --bg-topbar: rgba(255, 255, 255, 0.92);
    --bg-navbar: rgba(255, 255, 255, 0.96);
    --blur: blur(18px);
}

body.light-theme .top-bar,
body.light-theme .navbar,
body.light-theme .mobile-menu {
    background: var(--bg-navbar);
}

body.light-theme .lang-btn.active,
body.light-theme .mobile-lang-switcher .lang-btn.active {
    color: var(--color-text);
    background: rgba(213, 0, 28, 0.15);
}

body.light-theme .nav-link:hover,
body.light-theme .nav-link.active,
body.light-theme .mobile-nav-link:hover {
    color: var(--color-text);
}

/* Light-theme: make hero section more visible/readable */
body.light-theme .hero {
  background: var(--color-bg);
}

body.light-theme .hero-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.25) 60%, rgba(255,255,255,0.02) 100%);
  mix-blend-mode: normal;
}

body.light-theme .hero-title,
body.light-theme .hero-subtitle {
  color: var(--color-text);
  text-shadow: none;
}

body.light-theme .hero-slider-dot {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(15, 23, 42, 0.06);
}

body.light-theme .hero-slider-dot.active {
  border-color: var(--color-primary);
}

/* Light-theme: make booking form fields readable */
body.light-theme .booking-form-container {
  background: var(--color-bg-card);
  border-color: var(--border-base);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

body.light-theme .form-group input,
body.light-theme .form-group select {
  color: var(--color-text);
  background: var(--color-bg-input);
  border-color: var(--border-base);
}

body.light-theme .form-group input::placeholder {
  color: var(--color-text-tertiary);
}

body.light-theme .form-group input:focus,
body.light-theme .form-group select:focus {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(213, 0, 28, 0.08);
}

body.light-theme .faq-question {
    color: var(--color-text);
}

body.light-theme .mobile-menu-close {
    color: var(--color-text-secondary);
}

body.light-theme .mobile-menu-close:hover {
    color: var(--color-text);
}

body.light-theme .mobile-nav-link {
    color: var(--color-text-secondary);
}

body.light-theme .mobile-nav-link:hover,
body.light-theme .mobile-nav-link.active {
    color: var(--color-text);
}

body.light-theme .mobile-lang-switcher .lang-btn {
    color: var(--color-text-secondary);
}

body.light-theme .mobile-lang-switcher .lang-btn.active {
    color: var(--color-text);
}

body.light-theme .modal-content h3 {
    color: var(--color-text);
}

body.light-theme .logo-text,
body.light-theme .mobile-logo-meta .logo-text {
    color: var(--color-text);
}

body.light-theme .logo-accent,
body.light-theme .mobile-logo-meta .logo-text .logo-accent {
    color: var(--color-primary);
}

body.light-theme .header-phone {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.12);
    color: var(--color-text);
}

body.light-theme .header-phone:hover {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.18);
    color: var(--color-text);
}

body.light-theme .header-phone i {
    color: var(--color-text-secondary);
}

body.light-theme .header-phone:hover i {
    color: var(--color-primary);
}

body.light-theme .mobile-menu-toggle {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.12);
    color: var(--color-text);
}

body.light-theme .mobile-menu-toggle:hover {
    background: rgba(15, 23, 42, 0.08);
}

body.light-theme .mobile-menu-close {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.1);
    color: var(--color-text);
}

body.light-theme .mobile-menu-close:hover {
    background: rgba(15, 23, 42, 0.08);
    color: var(--color-text);
}

body.light-theme .theme-toggle {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.1);
    color: var(--color-text);
}

body.light-theme .theme-toggle:hover {
    background: rgba(15, 23, 42, 0.08);
}

body.light-theme .footer {
    background: var(--color-bg-secondary);
    border-color: rgba(15, 23, 42, 0.08);
}

body.light-theme .logo-img-footer {
    filter: grayscale(0) brightness(1);
}

body.light-theme .footer-desc,
body.light-theme .footer-links li,
body.light-theme .footer-contact li,
body.light-theme .footer-bottom {
    color: var(--color-text-secondary);
}

body.light-theme .footer-title {
    color: var(--color-text);
}

body.light-theme .footer-social a {
    background: var(--color-bg-card);
    border-color: var(--border-light);
    color: var(--color-text);
}

body.light-theme .footer-social a:hover {
    background: var(--color-primary);
    color: #fff;
}

body.light-theme .footer-links a {
    color: var(--color-text-secondary);
}

body.light-theme .section-label {
    background: rgba(213, 0, 28, 0.08);
    border-color: rgba(213, 0, 28, 0.18);
}

body.light-theme .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.073) 0%, rgba(255, 255, 255, 0.213) 100%);
}

/* ==========================================================================
   DARK THEME ICON / INPUT FIXES
   Ensure icons and SVGs remain visible when dark theme is active.
   ========================================================================== */
body:not(.light-theme) .feature-icon i,
body:not(.light-theme) .service-icon i,
body:not(.light-theme) .contact-icon i,
body:not(.light-theme) .theme-toggle-icon i,
body:not(.light-theme) .mobile-menu-toggle i,
body:not(.light-theme) .mobile-menu-close i {
  color: var(--color-text);
}

/* Make sure inline SVGs use current text color */
body:not(.light-theme) .feature-icon svg,
body:not(.light-theme) .service-icon svg,
body:not(.light-theme) .contact-icon svg,
body:not(.light-theme) .theme-toggle-icon svg {
  fill: currentColor;
}

/* Improve visibility of native input picker icons (WebKit) */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(2);
}

/* Fallback: force FA pseudo-icons (if using pseudo elements) to be light */
body:not(.light-theme) .section-label::before {
  background: var(--color-primary);
}

/* Make theme toggle icon visible in dark theme (dark circle + light icon) */
body:not(.light-theme) .theme-toggle-icon {
  background: var(--bg-navbar);
  color: var(--color-text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   MODEL VIEWER — 3D Car Section
   ========================================================================== */
.model-viewer-wrapper {
    width: 100%;
    min-height: 460px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    box-shadow:
        0 0 0 1px rgba(227, 6, 19, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(227, 6, 19, 0.08);
}

.model-viewer-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(227, 6, 19, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.model-viewer-wrapper model-viewer {
    width: 100%;
    height: 460px;
    display: block;
    --progress-bar-color: var(--color-primary);
    --progress-bar-height: 3px;
}

/* Progress bar */
.model-viewer-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    position: absolute;
    bottom: 0;
    left: 0;
}

.model-viewer-bar {
    height: 100%;
    background: var(--color-primary);
    width: var(--progress-bar-width, 0%);
    transition: width 0.3s ease;
}

/* Interaction hint icon */
.model-viewer-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.85);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.5);
    animation: hint-pulse 2s ease-in-out infinite;
}

@keyframes hint-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.12); opacity: 0.8; }
}

/* Badge "3D" */
.model-viewer-wrapper::after {
    content: '3D';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 12px rgba(227, 6, 19, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .model-viewer-wrapper,
    .model-viewer-wrapper model-viewer {
        min-height: 320px;
        height: 320px;
    }
}
