
    /* ================================================
       VARIABLES & DESIGN SYSTEM — AS AUTOMOBILE
    ================================================ */
    :root {
      --as-primary:       #dc3545;
      --as-primary-light: #e2c06a;
      --as-primary-dark:  #a07830;
      --as-primary-glow:  rgba(201,168,76,0.18);
      --as-bg:            #0a0a0f;
      --as-bg2:           #111118;
      --as-bg3:           #16161f;
      --as-bg4:           #1c1c28;
      --as-surface:       #1a1a25;
      --as-surface2:      #22222f;
      --as-border:        rgba(255,255,255,0.07);
      --as-border2:       rgba(201,168,76,0.22);
      --as-text:          #f0f0f5;
      --as-text-muted:    #8888a0;
      --as-text-dim:      #5a5a72;
      --as-white:         #ffffff;
      --as-danger:        #dc3545;
      --as-success:       #27ae60;
      --as-info:          #2980b9;
      --as-radius-sm:     6px;
      --as-radius:        12px;
      --as-radius-lg:     20px;
      --as-radius-xl:     30px;
      --as-shadow-sm:     0 2px 10px rgba(0,0,0,0.35);
      --as-shadow:        0 8px 30px rgba(0,0,0,0.5);
      --as-shadow-lg:     0 20px 60px rgba(0,0,0,0.7);
      --as-shadow-gold:   0 8px 30px rgba(201,168,76,0.15);
      --as-transition:    all 0.28s cubic-bezier(0.4,0,0.2,1);
      --as-font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --as-navbar-h:      72px;
    }

    /* ================================================
       RESET & BASE
    ================================================ */
    *, *::before, *::after { /*! box-sizing: border-box; */ /*! margin: 0; */ /*! padding: 0; */ }
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--as-font);
      background: var(--as-bg);
      color: var(--as-text);
      min-height: 100vh;
      overflow-x: hidden;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    ::selection { background: var(--bs--danger); color: #000; }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--as-bg2); }
    ::-webkit-scrollbar-thumb { background: var(--bs--danger-dark); border-radius: 3px; }

    /* ================================================
       TYPOGRAPHY
    ================================================ */
    h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
    .as-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--bs--danger);
      background: var(--bs-danger);
      border: 1px solid var(--bs-danger);
      border-radius: 50px; padding: 5px 14px;
    }
    .as-eyebrow i { font-size: 0.9rem; }
    .as-title { font-size: clamp(1.8rem, 4vw, 3rem); }
    .as-subtitle { color: var(--as-text-muted); font-size: 1.05rem; max-width: 560px; }
    .as-gradient-text {
      background: linear-gradient(135deg, var(--bs-danger), var(--bs-danger), var(--bs--danger-dark));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    /* ================================================
       NAVBAR
    ================================================ */
    #as-navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1050;
      height: var(--as-navbar-h);
      background: rgba(10,10,15,0.88);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--as-border);
      transition: var(--as-transition);
    }
    #as-navbar.scrolled {
      background: rgba(10,10,15,0.97);
      border-bottom-color: var(--as-border2);
    }
    .navbar-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 100%; padding: 0 clamp(16px,3vw,48px);
    }
    .as-logo {
      display: flex; align-items: center; gap: 10px;
      font-weight: 800; font-size: 1.2rem; letter-spacing: -0.03em;
      color: var(--as-white);
    }
    .as-logo-mark {
      width: 38px; height: 38px; border-radius: 10px;
      background: linear-gradient(135deg, var(--bs--danger), var(--bs--danger-dark));
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; font-weight: 900; color: #000; letter-spacing: 0;
    }
    .as-logo span { color: var(--bs--danger); }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a {
      color: var(--as-text-muted); font-size: 0.88rem; font-weight: 500;
      padding: 7px 14px; border-radius: 8px;
      transition: var(--as-transition); position: relative;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--as-white); background: rgba(255,255,255,0.06); }
    .nav-links a.active::after {
      content: ''; position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%);
      width: 18px; height: 2px; background: var(--bs-danger); border-radius: 1px;
    }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .nav-btn-ghost {
      background: none; border: 1px solid var(--as-border);
      color: var(--as-text-muted); border-radius: 8px;
      padding: 7px 16px; font-size: 0.85rem; font-weight: 500;
      transition: var(--as-transition);
    }
    .nav-btn-ghost:hover { border-color: var(--bs--danger); color: var(--bs--danger); background: var(--bs--danger-glow); }
    .nav-btn-primary {
      background: linear-gradient(135deg, var(--bs--danger), var(--bs--danger-dark));
      border: none; color: #000; border-radius: 8px;
      padding: 8px 18px; font-size: 0.85rem; font-weight: 700;
      transition: var(--as-transition); box-shadow: var(--as-shadow-gold);
    }
    .nav-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(201,168,76,0.3); }
    .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: 1px solid var(--as-border); border-radius: 8px;
      padding: 10px 12px; transition: var(--as-transition);
    }
    .nav-hamburger span { width: 20px; height: 2px; background: var(--as-text); border-radius: 1px; transition: var(--as-transition); display: block; }
    .nav-hamburger:hover { border-color: var(--bs--danger); }

    /* Mobile nav */
    #mobileMenu {
      position: fixed; top: var(--as-navbar-h); left: 0; right: 0; bottom: 0;
      background: rgba(10,10,15,0.98); backdrop-filter: blur(20px);
      z-index: 1040; padding: 32px 24px;
      transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    #mobileMenu.open { transform: translateX(0); }
    .mobile-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
    .mobile-links a {
      color: var(--as-text); font-size: 1.1rem; font-weight: 500;
      padding: 14px 16px; border-radius: 10px;
      border: 1px solid transparent; transition: var(--as-transition);
    }
    .mobile-links a:hover, .mobile-links a.active {
      background: var(--as-surface); border-color: var(--as-border2); color: var(--bs--danger);
    }

    /* ================================================
       HERO LOCATION
    ================================================ */
    #hero-location {
      position: relative; min-height: 92vh;
      display: flex; align-items: center;
      overflow: hidden; padding-top: var(--as-navbar-h);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://images.pexels.com/photos/11877375/pexels-photo-11877375.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=1080&w=1920');
      background-size: cover; background-position: center 40%;
      transform: scale(1.05); transition: transform 8s ease-out;
    }
    .hero-bg.loaded { /*! transform: scale(1); */ }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        105deg,
        rgba(10,10,15,0.96) 0%,
        rgba(10,10,15,0.75) 45%,
        rgba(10,10,15,0.3) 100%
      );
    }
    .hero-overlay-bottom {
      position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
      background: linear-gradient(to top, var(--as-bg), transparent);
    }
    .hero-content { position: relative; z-index: 2; }
    .hero-tag { margin-bottom: 24px; }
    .hero-title {
      font-size: clamp(2.2rem, 5.5vw, 4rem);
      line-height: 1.1; font-weight: 800; letter-spacing: -0.03em;
      margin-bottom: 20px;
    }
    .hero-title em { font-style: normal; color: var(--bs--danger); }
    .hero-desc {
      font-size: 1.08rem; color: var(--as-text-muted);
      max-width: 520px; margin-bottom: 36px; line-height: 1.7;
    }
    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
    .btn-primary-as {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--bs-danger), var(--bs-danger));
      color: #000; font-weight: 700; font-size: 0.9rem;
      padding: 14px 28px; border-radius: 10px; border: none;
      transition: var(--as-transition); box-shadow: var(--as-shadow-gold);
    }
    .btn-primary-as:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.35); color: #000; }
    .btn-ghost-as {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.06); color: var(--as-white);
      font-weight: 600; font-size: 0.9rem;
      padding: 13px 24px; border-radius: 10px;
      border: 1px solid var(--as-border);
      transition: var(--as-transition);
    }
    .btn-ghost-as:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: var(--as-white); }

    .hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
    .hero-stat { display: flex; flex-direction: column; }
    .hero-stat-val {
      font-size: 1.8rem; font-weight: 800; letter-spacing: -0.04em;
      background: linear-gradient(135deg, var(--bs--danger-light), var(--bs--danger));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-stat-lbl { font-size: 0.78rem; color: var(--as-text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
    .hero-stat-sep { width: 1px; background: var(--as-border); align-self: stretch; }

    /* Hero search card */
    .hero-search-card {
      background: var(--as-surface); border: 1px solid var(--as-border);
      border-radius: var(--as-radius-lg); padding: 28px;
      backdrop-filter: blur(20px);
      box-shadow: var(--as-shadow-lg);
    }
    .search-tabs { display: flex; gap: 4px; margin-bottom: 24px; }
    .search-tab {
      flex: 1; padding: 9px; font-size: 0.83rem; font-weight: 600;
      border: 1px solid var(--as-border); border-radius: 8px;
      background: transparent; color: var(--as-text-muted);
      transition: var(--as-transition); text-align: center;
    }
    .search-tab.active {
      background: var(--bs-danger); color: #000;
      border-color: var(--bs-danger);
    }
    .search-tab:hover:not(.active) { border-color: var(--bs-danger); color: var(--bs--danger); }
    .search-field label {
      display: block; font-size: 0.72rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--as-text-dim); margin-bottom: 6px;
    }
    .search-input {
      width: 100%; background: var(--as-bg3); border: 1px solid var(--as-border);
      border-radius: 8px; color: var(--as-text); font-size: 0.9rem;
      padding: 11px 14px; outline: none; transition: var(--as-transition);
      font-family: var(--as-font);
    }
    .search-input:focus { border-color: var(--bs--danger); box-shadow: 0 0 0 3px var(--bs--danger-glow); }
    .search-input::placeholder { color: var(--as-text-dim); }
    .search-divider { width: 1px; background: var(--as-border); margin: 8px 0; }

    /* ================================================
       SECTION BASE
    ================================================ */
    .as-section { padding: clamp(60px, 8vw, 100px) 0; }
    .section-header { margin-bottom: clamp(36px, 5vw, 56px); }

    /* ================================================
       QUICK SEARCH BAR
    ================================================ */
    #quick-search {
      background: var(--as-bg2);
      border-bottom: 1px solid var(--as-border);
      padding: 20px 0; position: sticky; top: var(--as-navbar-h); z-index: 100;
    }
    .quick-search-inner {
      display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
    }
    .qs-field { flex: 1; min-width: 150px; position: relative; }
    .qs-field i {
      position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
      color: var(--bs--danger); font-size: 1rem;
    }
    .qs-input {
      width: 100%; background: var(--as-bg3); border: 1px solid var(--as-border);
      border-radius: 8px; color: var(--as-text); font-size: 0.85rem;
      padding: 10px 12px 10px 36px; outline: none; transition: var(--as-transition);
      font-family: var(--as-font);
    }
    .qs-input:focus { border-color: var(--bs--danger); }
    .qs-select {
      appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238888a0' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 10px center; background-size: 18px;
      padding-right: 32px; cursor: pointer;
    }
    .qs-btn {
      background: linear-gradient(135deg, var(--bs--danger), var(--bs--danger-dark));
      color: #000; border: none; border-radius: 8px;
      padding: 10px 22px; font-size: 0.88rem; font-weight: 700;
      transition: var(--as-transition); white-space: nowrap;
      display: flex; align-items: center; gap: 7px;
    }
    .qs-btn:hover { transform: translateY(-1px); box-shadow: var(--as-shadow-gold); }
    .qs-btn-secondary {
      background: var(--as-surface); border: 1px solid var(--as-border);
      color: var(--as-text-muted); border-radius: 8px;
      padding: 10px 16px; font-size: 0.88rem; font-weight: 600;
      transition: var(--as-transition); white-space: nowrap;
      display: flex; align-items: center; gap: 7px;
    }
    .qs-btn-secondary:hover { border-color: var(--bs--danger); color: var(--bs--danger); }

    /* ================================================
       CATALOGUE SECTION
    ================================================ */
    #catalogue { background: var(--as-bg); }

    /* Sidebar Filters */
    .filter-sidebar {
      background: var(--as-surface); border: 1px solid var(--as-border);
      border-radius: var(--as-radius-lg); padding: 24px; position: sticky; top: calc(var(--as-navbar-h) + 80px);
    }
    .filter-title {
      font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--as-text-dim); margin-bottom: 6px;
    }
    .filter-section { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--as-border); }
    .filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .filter-section-title {
      font-size: 0.85rem; font-weight: 600; color: var(--as-text);
      margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
    }
    .filter-section-title i { color: var(--bs--danger); }
    .filter-check {
      display: flex; align-items: center; gap: 9px;
      cursor: pointer; margin-bottom: 9px; user-select: none;
    }
    .filter-check input { display: none; }
    .filter-check-box {
      width: 18px; height: 18px; border: 1.5px solid var(--as-border);
      border-radius: 4px; background: var(--as-bg3);
      display: flex; align-items: center; justify-content: center;
      transition: var(--as-transition); flex-shrink: 0;
    }
    .filter-check input:checked + .filter-check-box {
      background: var(--bs--danger); border-color: var(--bs--danger);
    }
    .filter-check input:checked + .filter-check-box::after {
      content: ''; width: 5px; height: 9px;
      border: 2px solid #000; border-top: none; border-left: none;
      transform: rotate(45deg) translateY(-1px); display: block;
    }
    .filter-check-lbl { font-size: 0.85rem; color: var(--as-text-muted); transition: var(--as-transition); }
    .filter-check:hover .filter-check-lbl { color: var(--as-text); }
    .filter-count {
      margin-left: auto; font-size: 0.72rem; color: var(--as-text-dim);
      background: var(--as-bg3); border-radius: 10px; padding: 2px 7px;
    }

    /* Range slider */
    .range-slider { width: 100%; margin: 8px 0; }
    .range-track {
      position: relative; height: 4px; background: var(--as-bg3); border-radius: 2px;
      margin: 16px 0 8px;
    }
    .range-fill {
      position: absolute; height: 100%; background: var(--bs-danger); border-radius: 2px;
      left: 0; right: 0;
    }
    input[type=range].as-range {
      -webkit-appearance: none; width: 100%; background: transparent;
      position: absolute; top: -6px; left: 0; height: 16px; margin: 0;
    }
    input[type=range].as-range::-webkit-slider-thumb {
      -webkit-appearance: none; width: 16px; height: 16px;
      background: var(--bs--danger); border-radius: 50%;
      box-shadow: 0 2px 8px rgba(201,168,76,0.4); cursor: pointer;
    }
    .range-labels { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--as-text-dim); }

    /* Tag filters */
    .filter-tags { display: flex; flex-wrap: wrap; gap: 7px; }
    .filter-tag {
      font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 20px;
      border: 1px solid var(--as-border); background: var(--as-bg3);
      color: var(--as-text-muted); cursor: pointer; transition: var(--as-transition);
      user-select: none;
    }
    .filter-tag:hover, .filter-tag.active {
      background: var(--bs--danger-glow); border-color: var(--bs--danger); color: var(--bs--danger);
    }

    /* ================================================
       SORT & RESULTS BAR
    ================================================ */
    .sort-bar {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
    }
    .results-count {
      font-size: 0.88rem; color: var(--as-text-muted);
    }
    .results-count strong { color: var(--as-text); }
    .sort-select {
      background: var(--as-surface); border: 1px solid var(--as-border);
      color: var(--as-text); border-radius: 8px; padding: 8px 34px 8px 12px;
      font-size: 0.85rem; font-family: var(--as-font); outline: none;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238888a0' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 8px center; background-size: 18px;
      cursor: pointer; transition: var(--as-transition);
    }
    .sort-select:focus { border-color: var(--bs--danger); }
    .view-toggle { display: flex; gap: 4px; }
    .view-btn {
      width: 36px; height: 36px; border-radius: 7px; border: 1px solid var(--as-border);
      background: var(--as-surface); color: var(--as-text-muted);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.05rem; transition: var(--as-transition); cursor: pointer;
    }
    .view-btn.active { background: var(--bs--danger-glow); border-color: var(--bs--danger); color: var(--bs--danger); }

    /* ================================================
       VEHICLE CARD
    ================================================ */
    .vehicle-card {
      background: var(--as-surface);
      border: 1px solid var(--as-border);
      border-radius: var(--as-radius-lg);
      overflow: hidden; transition: var(--as-transition);
      position: relative; display: flex; flex-direction: column;
    }
    .vehicle-card:hover {
      border-color: var(--as-border2);
      box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px var(--as-border2);
      transform: translateY(-4px);
    }
    .vehicle-card:hover .card-img-main { transform: scale(1.04); }

    .card-img-wrap {
      position: relative; overflow: hidden;
      aspect-ratio: 16/10; background: var(--as-bg3);
    }
    .card-img-main {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .card-overlay-top {
      position: absolute; top: 12px; left: 12px; right: 12px;
      display: flex; justify-content: space-between; align-items: flex-start;
      pointer-events: none;
    }
    .card-badges { display: flex; gap: 6px; flex-wrap: wrap; }
    .badge-as {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; padding: 4px 9px; border-radius: 6px;
      backdrop-filter: blur(8px);
    }
    .badge-available { background: rgba(39,174,96,0.85); color: #fff; }
    .badge-promo { background: rgba(201,168,76,0.9); color: #000; }
    .badge-electric { background: rgba(41,128,185,0.85); color: #fff; }
    .badge-hybrid { background: rgba(39,174,96,0.7); color: #fff; }
    .badge-unavailable { background: rgba(231,76,60,0.85); color: #fff; }
    .badge-premium { background: rgba(201,168,76,0.15); color: var(--bs--danger); border: 1px solid var(--as-border2); }
    .badge-lld { background: rgba(120,80,200,0.75); color: #fff; }

    .card-fav-btn {
      pointer-events: all; width: 34px; height: 34px; border-radius: 8px;
      background: rgba(10,10,15,0.7); backdrop-filter: blur(8px);
      border: 1px solid var(--as-border); color: var(--as-text-muted);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; transition: var(--as-transition); cursor: pointer;
    }
    .card-fav-btn:hover, .card-fav-btn.active { color: #e74c3c; border-color: rgba(231,76,60,0.5); background: rgba(231,76,60,0.1); }

    .card-overlay-bottom {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 12px;
      background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    }
    .card-gallery-dots { display: flex; gap: 4px; justify-content: center; }
    .card-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: var(--as-transition); }
    .card-dot.active { background: var(--bs--danger); width: 14px; border-radius: 3px; }

    .card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
    .card-brand-row {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 6px;
    }
    .card-brand { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bs--danger); }
    .card-year { font-size: 0.78rem; color: var(--as-text-dim); }
    .card-name {
      font-size: 1.1rem; font-weight: 700; color: var(--as-text);
      margin-bottom: 14px; letter-spacing: -0.02em; line-height: 1.3;
    }

    .card-specs {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 8px; margin-bottom: 16px;
    }
    .card-spec {
      display: flex; flex-direction: column; align-items: center; gap: 4px;
      background: var(--as-bg3); border-radius: 8px; padding: 8px 4px;
      border: 1px solid var(--as-border);
    }
    .card-spec i { font-size: 0.95rem; color: var(--bs--danger); }
    .card-spec-val { font-size: 0.7rem; font-weight: 600; color: var(--as-text); }
    .card-spec-lbl { font-size: 0.62rem; color: var(--as-text-dim); text-align: center; }

    .card-pricing { margin-bottom: 16px; }
    .card-price-tabs { display: flex; gap: 4px; margin-bottom: 10px; }
    .price-tab {
      flex: 1; text-align: center; font-size: 0.72rem; font-weight: 600;
      padding: 5px; border: 1px solid var(--as-border); border-radius: 6px;
      background: transparent; color: var(--as-text-dim); cursor: pointer;
      transition: var(--as-transition);
    }
    .price-tab.active { background: var(--bs--danger-glow); border-color: var(--bs--danger); color: var(--bs--danger); }
    .card-price-display { display: flex; align-items: baseline; gap: 4px; }
    .card-price-amount { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.04em; color: var(--as-text); }
    .card-price-unit { font-size: 0.8rem; color: var(--as-text-dim); }
    .card-price-old { font-size: 0.8rem; color: var(--as-text-dim); text-decoration: line-through; margin-left: 6px; }
    .card-price-discount { font-size: 0.72rem; font-weight: 700; color: var(--bs--danger); background: var(--bs--danger-glow); padding: 2px 6px; border-radius: 4px; }

    .card-actions { display: flex; gap: 8px; margin-top: auto; }
    .card-btn-primary {
      flex: 1; background: linear-gradient(135deg, var(--bs-danger), var(--bs-danger));
      color: #000; border: none; border-radius: 8px;
      padding: 10px; font-size: 0.82rem; font-weight: 700;
      transition: var(--as-transition); display: flex; align-items: center; justify-content: center; gap: 6px;
    }
    .card-btn-primary:hover { transform: translateY(-1px); box-shadow: var(--as-shadow-gold); }
    .card-btn-secondary {
      background: var(--as-bg3); border: 1px solid var(--as-border);
      color: var(--as-text-muted); border-radius: 8px;
      padding: 10px 14px; font-size: 0.82rem; font-weight: 600;
      transition: var(--as-transition); display: flex; align-items: center; gap: 5px;
    }
    .card-btn-secondary:hover { border-color: var(--bs--danger); color: var(--bs--danger); }

    /* Compare toggle */
    .card-compare-row {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--as-border);
    }
    .compare-check { display: flex; align-items: center; gap: 8px; cursor: pointer; }
    .compare-check input { display: none; }
    .compare-check-box {
      width: 16px; height: 16px; border: 1.5px solid var(--as-border);
      border-radius: 4px; background: var(--as-bg3);
      display: flex; align-items: center; justify-content: center;
      transition: var(--as-transition);
    }
    .compare-check input:checked + .compare-check-box { background: var(--bs--danger); border-color: var(--bs--danger); }
    .compare-check input:checked + .compare-check-box::after {
      content: ''; width: 4px; height: 7px;
      border: 2px solid #000; border-top: none; border-left: none;
      transform: rotate(45deg) translateY(-1px); display: block;
    }
    .compare-lbl { font-size: 0.75rem; color: var(--as-text-dim); }
    .card-avail {
      font-size: 0.72rem; display: flex; align-items: center; gap: 4px;
    }
    .avail-dot { width: 6px; height: 6px; border-radius: 50%; }
    .avail-dot.green { background: var(--as-success); box-shadow: 0 0 5px var(--as-success); }
    .avail-dot.orange { background: #f39c12; box-shadow: 0 0 5px #f39c12; }
    .avail-dot.red { background: var(--as-danger); box-shadow: 0 0 5px var(--as-danger); }

    /* List view card */
    .vehicle-card.list-view {
      flex-direction: row; aspect-ratio: unset;
    }
    .vehicle-card.list-view .card-img-wrap {
      width: 260px; flex-shrink: 0; aspect-ratio: unset; border-radius: 0;
    }
    .vehicle-card.list-view .card-specs { grid-template-columns: repeat(4,1fr); }

    /* ================================================
       COMPARE BAR
    ================================================ */
    #compare-bar {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      background: var(--as-surface2); border-top: 1px solid var(--as-border2);
      padding: 14px; transform: translateY(100%); transition: transform 0.35s ease;
    }
    #compare-bar.visible { transform: translateY(0); }
    .compare-bar-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
    .compare-slots { display: flex; gap: 10px; flex: 1; }
    .compare-slot {
      flex: 1; max-width: 200px; height: 52px;
      border: 1.5px dashed var(--as-border); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem; color: var(--as-text-dim); background: var(--as-bg3);
      transition: var(--as-transition); position: relative; overflow: hidden;
    }
    .compare-slot.filled { border-style: solid; border-color: var(--bs--danger); background: var(--bs--danger-glow); }
    .compare-slot.filled span { color: var(--bs--danger); font-size: 0.78rem; font-weight: 600; padding: 0 8px; text-align: center; }

    /* ================================================
       PREMIUM CARD (LLD / Coup de coeur)
    ================================================ */
    .vehicle-card-premium {
      background: linear-gradient(135deg, #1a1520, #1c1820);
      border: 1px solid var(--as-border2);
      border-radius: var(--as-radius-lg); overflow: hidden;
      position: relative;
    }
    .vehicle-card-premium::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--bs--danger-dark), var(--bs--danger), var(--bs--danger-dark));
    }
    .premium-ribbon {
      position: absolute; top: 18px; right: -30px;
      background: linear-gradient(135deg, var(--bs--danger), var(--bs--danger-dark));
      color: #000; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 6px 44px;
      transform: rotate(45deg); box-shadow: var(--as-shadow-gold);
    }

    /* ================================================
       PAGINATION
    ================================================ */
    .as-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
    .page-btn {
      width: 40px; height: 40px; border-radius: 8px;
      border: 1px solid var(--as-border); background: var(--as-surface);
      color: var(--as-text-muted); font-size: 0.88rem; font-weight: 600;
      transition: var(--as-transition); display: flex; align-items: center; justify-content: center;
      cursor: pointer;
    }
    .page-btn:hover { border-color: var(--bs--danger); color: var(--bs--danger); }
    .page-btn.active { background: var(--bs--danger); border-color: var(--bs--danger); color: #000; font-weight: 700; }
    .page-btn.prev-next { width: auto; padding: 0 14px; gap: 5px; }

    /* ================================================
       PROMO BANNER
    ================================================ */
    .promo-banner {
      background: linear-gradient(135deg, var(--as-bg3), var(--as-bg4));
      border: 1px solid var(--as-border2); border-radius: var(--as-radius-lg);
      padding: 32px; position: relative; overflow: hidden;
    }
    .promo-banner::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--bs--danger), transparent);
    }
    .promo-banner::after {
      content: ''; position: absolute; bottom: -80px; right: -40px;
      width: 200px; height: 200px; border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
    }
    .promo-badge {
      display: inline-block; font-size: 0.7rem; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase;
      background: linear-gradient(135deg, var(--bs--danger), var(--bs--danger-dark));
      color: #000; padding: 5px 14px; border-radius: 6px; margin-bottom: 12px;
    }

    /* ================================================
       TYPES SECTION (Short/Long Duration)
    ================================================ */
    #types-section { background: var(--as-bg2); }
    .type-card {
      background: var(--as-surface); border: 1px solid var(--as-border);
      border-radius: var(--as-radius-lg); padding: 32px;
      transition: var(--as-transition); position: relative; overflow: hidden;
    }
    .type-card:hover { border-color: var(--as-border2); transform: translateY(-3px); box-shadow: var(--as-shadow); }
    .type-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--bs-danger), var(--bs-danger));
      opacity: 0; transition: var(--as-transition);
    }
    .type-card:hover::before { opacity: 1; }
    .type-icon {
      width: 56px; height: 56px; border-radius: 14px;
      background: var(--bs--danger-glow); border: 1px solid var(--as-border2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: var(--bs--danger); margin-bottom: 20px;
    }
    .type-feature {
      display: flex; align-items: center; gap: 9px;
      font-size: 0.85rem; color: var(--as-text-muted); margin-bottom: 8px;
    }
    .type-feature i { color: var(--bs--danger); font-size: 0.9rem; }

    /* ================================================
       REVIEWS SECTION
    ================================================ */
    #reviews-section { background: var(--as-bg); }
    .review-card {
      background: var(--as-surface); border: 1px solid var(--as-border);
      border-radius: var(--as-radius-lg); padding: 24px; height: 100%;
      transition: var(--as-transition);
    }
    .review-card:hover { border-color: var(--as-border2); transform: translateY(-2px); }
    .review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .review-star { color: var(--bs--danger); font-size: 0.9rem; }
    .review-text { font-size: 0.9rem; color: var(--as-text-muted); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
    .review-author { display: flex; align-items: center; gap: 12px; }
    .review-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--bs--danger-glow); border: 2px solid var(--as-border2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--bs--danger); font-weight: 700; flex-shrink: 0;
    }
    .review-name { font-size: 0.88rem; font-weight: 700; color: var(--as-text); }
    .review-meta { font-size: 0.76rem; color: var(--as-text-dim); }
    .review-vehicle {
      margin-left: auto; font-size: 0.72rem; font-weight: 600;
      color: var(--bs--danger); background: var(--bs--danger-glow);
      border: 1px solid var(--as-border2); padding: 4px 10px; border-radius: 20px;
    }

    /* ================================================
       FAQ SECTION
    ================================================ */
    #faq-section { background: var(--as-bg2); }
    .as-accordion { border-radius: var(--as-radius-lg); overflow: hidden; border: 1px solid var(--as-border); }
    .accordion-item-as { border-bottom: 1px solid var(--as-border); }
    .accordion-item-as:last-child { border-bottom: none; }
    .accordion-header-as {
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 20px 24px; background: var(--as-surface); cursor: pointer;
      transition: var(--as-transition); user-select: none;
    }
    .accordion-header-as:hover { background: var(--as-surface2); }
    .accordion-header-as.open { background: var(--as-surface2); }
    .accordion-q { font-size: 0.95rem; font-weight: 600; color: var(--as-text); }
    .accordion-icon {
      width: 28px; height: 28px; border-radius: 7px;
      background: var(--as-bg3); border: 1px solid var(--as-border);
      display: flex; align-items: center; justify-content: center;
      color: var(--bs--danger); font-size: 1.1rem;
      transition: transform 0.28s ease; flex-shrink: 0;
    }
    .accordion-header-as.open .accordion-icon { transform: rotate(45deg); background: var(--bs--danger-glow); border-color: var(--bs--danger); }
    .accordion-body-as {
      max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .accordion-body-as.open { max-height: 300px; }
    .accordion-body-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--as-text-muted); line-height: 1.8; }

    /* ================================================
       CTA SECTION
    ================================================ */
    #cta-section {
      background: linear-gradient(135deg, var(--as-bg3) 0%, #160e20 100%);
      position: relative; overflow: hidden;
    }
    #cta-section::before {
      content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
    }
    .cta-grid-bg {
      position: absolute; inset: 0;
      background-image: linear-gradient(var(--as-border) 1px, transparent 1px),
                        linear-gradient(90deg, var(--as-border) 1px, transparent 1px);
      background-size: 60px 60px; opacity: 0.3;
    }

    /* ================================================
       FOOTER
    ================================================ */
    #as-footer {
      background: var(--as-bg);
      border-top: 1px solid var(--as-border);
      padding: 72px 0 32px;
    }
    .footer-brand { margin-bottom: 18px; }
    .footer-desc { font-size: 0.88rem; color: var(--as-text-dim); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-social {
      width: 38px; height: 38px; border-radius: 9px;
      border: 1px solid var(--as-border); background: var(--as-surface);
      display: flex; align-items: center; justify-content: center;
      color: var(--as-text-dim); font-size: 1rem; transition: var(--as-transition);
    }
    .footer-social:hover { border-color: var(--bs--danger); color: var(--bs--danger); background: var(--bs--danger-glow); }
    .footer-col-title {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--as-text-dim); margin-bottom: 18px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 0.88rem; color: var(--as-text-muted); transition: var(--as-transition); }
    .footer-links a:hover { color: var(--bs--danger); padding-left: 4px; }
    .footer-divider { border: none; border-top: 1px solid var(--as-border); margin: 40px 0 24px; }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-copy { font-size: 0.8rem; color: var(--as-text-dim); }
    .footer-legal { display: flex; gap: 20px; }
    .footer-legal a { font-size: 0.8rem; color: var(--as-text-dim); transition: var(--as-transition); }
    .footer-legal a:hover { color: var(--bs--danger); }
    .footer-badge {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.75rem; color: var(--as-text-dim);
      background: var(--as-surface); border: 1px solid var(--as-border);
      border-radius: 20px; padding: 5px 12px;
    }
    .footer-badge i { color: var(--bs--danger); }

    /* ================================================
       MODAL RESERVATION
    ================================================ */
    .modal-as .modal-content {
      background: var(--as-surface); border: 1px solid var(--as-border);
      border-radius: var(--as-radius-lg); color: var(--as-text);
    }
    .modal-as .modal-header {
      border-bottom: 1px solid var(--as-border); padding: 20px 24px;
    }
    .modal-as .modal-footer { border-top: 1px solid var(--as-border); }
    .modal-as .modal-title { font-size: 1.1rem; font-weight: 700; }
    .modal-as .btn-close { filter: invert(1) brightness(0.7); }
    .reservation-step {
      display: none;
    }
    .reservation-step.active { display: block; }
    .step-indicator { display: flex; gap: 0; margin-bottom: 28px; }
    .step-item {
      flex: 1; display: flex; flex-direction: column; align-items: center;
      position: relative;
    }
    .step-item:not(:last-child)::after {
      content: ''; position: absolute; top: 16px; left: calc(50% + 16px); right: calc(-50% + 16px);
      height: 1px; background: var(--as-border); z-index: 0;
    }
    .step-item.done:not(:last-child)::after, .step-item.active:not(:last-child)::after { background: var(--bs--danger); }
    .step-circle {
      width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--as-border);
      background: var(--as-bg3); display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; font-weight: 700; color: var(--as-text-dim);
      position: relative; z-index: 1; transition: var(--as-transition);
    }
    .step-item.active .step-circle { border-color: var(--bs--danger); color: var(--bs--danger); background: var(--bs--danger-glow); }
    .step-item.done .step-circle { background: var(--bs--danger); border-color: var(--bs--danger); color: #000; }
    .step-lbl { font-size: 0.68rem; color: var(--as-text-dim); margin-top: 6px; text-align: center; }
    .step-item.active .step-lbl { color: var(--bs--danger); }
    .form-group-as { margin-bottom: 16px; }
    .form-label-as {
      display: block; font-size: 0.78rem; font-weight: 600; color: var(--as-text-dim);
      text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 7px;
    }
    .form-input-as {
      width: 100%; background: var(--as-bg3); border: 1px solid var(--as-border);
      border-radius: 8px; color: var(--as-text); font-size: 0.9rem;
      padding: 11px 14px; outline: none; transition: var(--as-transition);
      font-family: var(--as-font);
    }
    .form-input-as:focus { border-color: var(--bs--danger); box-shadow: 0 0 0 3px var(--bs--danger-glow); }
    .option-card {
      border: 1px solid var(--as-border); border-radius: 10px; padding: 14px;
      cursor: pointer; transition: var(--as-transition); background: var(--as-bg3);
    }
    .option-card:hover, .option-card.selected { border-color: var(--bs--danger); background: var(--bs--danger-glow); }
    .option-card-title { font-size: 0.88rem; font-weight: 600; color: var(--as-text); }
    .option-card-price { font-size: 0.8rem; color: var(--bs--danger); font-weight: 700; }
    .option-card-desc { font-size: 0.76rem; color: var(--as-text-dim); margin-top: 4px; }
    .price-summary {
      background: var(--as-bg3); border: 1px solid var(--as-border2);
      border-radius: 10px; padding: 18px;
    }
    .price-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.88rem; }
    .price-row-total { font-size: 1rem; font-weight: 700; border-top: 1px solid var(--as-border); padding-top: 10px; color: var(--bs--danger); }

    /* ================================================
       CALENDAR (Availability)
    ================================================ */
    .mini-calendar {
      background: var(--as-bg3); border: 1px solid var(--as-border);
      border-radius: var(--as-radius); overflow: hidden;
    }
    .cal-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 18px; border-bottom: 1px solid var(--as-border);
    }
    .cal-nav {
      background: none; border: 1px solid var(--as-border); border-radius: 6px;
      color: var(--as-text-muted); width: 30px; height: 30px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: var(--as-transition);
    }
    .cal-nav:hover { border-color: var(--bs--danger); color: var(--bs--danger); }
    .cal-month { font-size: 0.9rem; font-weight: 600; }
    .cal-grid { padding: 12px; }
    .cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
    .cal-day-name { text-align: center; font-size: 0.68rem; font-weight: 600; color: var(--as-text-dim); padding: 4px; }
    .cal-day {
      aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; border-radius: 6px; cursor: pointer;
      transition: var(--as-transition); color: var(--as-text-muted);
    }
    .cal-day:hover { background: var(--as-surface2); color: var(--as-text); }
    .cal-day.available { color: var(--as-text); }
    .cal-day.selected { background: var(--bs--danger); color: #000; font-weight: 700; }
    .cal-day.in-range { background: var(--bs--danger-glow); color: var(--bs--danger); }
    .cal-day.unavailable { color: var(--as-text-dim); opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
    .cal-day.other-month { opacity: 0.25; }

    /* ================================================
       TOAST
    ================================================ */
    .as-toast-container { position: fixed; top: calc(var(--as-navbar-h) + 16px); right: 16px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
    .as-toast {
      background: var(--as-surface2); border: 1px solid var(--as-border);
      border-radius: 10px; padding: 14px 16px; min-width: 260px; max-width: 340px;
      display: flex; align-items: center; gap: 12px;
      box-shadow: var(--as-shadow); font-size: 0.88rem; color: var(--as-text);
      animation: toastIn 0.3s ease forwards;
    }
    .as-toast.success { border-color: rgba(39,174,96,0.4); }
    .as-toast.error { border-color: rgba(231,76,60,0.4); }
    .as-toast i { font-size: 1.2rem; flex-shrink: 0; }
    .as-toast.success i { color: var(--as-success); }
    .as-toast.error i { color: var(--as-danger); }
    .as-toast.gold i { color: var(--bs--danger); }
    @keyframes toastIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }
    @keyframes toastOut { from { opacity:1; } to { opacity:0; transform: translateX(20px); } }

    /* ================================================
       UTILITIES & ANIMATIONS
    ================================================ */
    .divider-gold { height: 1px; background: linear-gradient(90deg, transparent, var(--bs--danger), transparent); margin: 0; }
    .text-primary-as { color: var(--bs--danger); }
    .bg-primary-as { background: var(--bs--danger); }
    .no-results {
      text-align: center; padding: 80px 20px; color: var(--as-text-dim);
    }
    .no-results i { font-size: 3rem; color: var(--as-border); margin-bottom: 16px; }
    .no-results p { font-size: 1rem; }
    .skeleton {
      background: linear-gradient(90deg, var(--as-surface) 25%, var(--as-surface2) 50%, var(--as-surface) 75%);
      background-size: 200% 100%; animation: skeleton 1.5s infinite;
      border-radius: var(--as-radius-sm);
    }
    @keyframes skeleton { from { background-position: 200% 0; } to { background-position: -200% 0; } }
    .fade-in { animation: fadeIn 0.5s ease forwards; }
    .slide-up { animation: slideUp 0.4s ease forwards; }
    @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
    @keyframes slideUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
    .pulse { animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.6; } }

    /* ================================================
       RESPONSIVE
    ================================================ */
    @media (max-width: 1199px) {
      .filter-sidebar { position: relative; top: 0; }
    }
    @media (max-width: 991px) {
      .nav-links, .nav-actions .nav-btn-ghost, .nav-actions .nav-btn-primary { display: none; }
      .nav-hamburger { display: flex; }
      .hero-search-card { margin-top: 40px; }
      .vehicle-card.list-view { flex-direction: column; }
      .vehicle-card.list-view .card-img-wrap { width: 100%; aspect-ratio: 16/10; }
    }
    @media (max-width: 767px) {
      :root { --as-navbar-h: 64px; }
      .hero-stats { gap: 20px; }
      .hero-stat-sep { display: none; }
      .hero-search-card { padding: 20px; }
      .card-specs { grid-template-columns: repeat(2,1fr); }
      .compare-slots { display: none; }
      .quick-search-inner { flex-direction: column; }
      .qs-field { min-width: 100%; }
      .type-card { padding: 24px; }
    }
    @media (max-width: 575px) {
      .sort-bar { flex-direction: column; align-items: flex-start; }
      .hero-ctas { flex-direction: column; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-legal { justify-content: center; }
    }
    @media (min-width: 1600px) {
      .navbar-inner { padding: 0 80px; }
    }
    @media (min-width: 2000px) {
      html { font-size: 18px; }
    }
  

  :root {
      --bg-deep: #05060a;
      --bg-elevated: #0c0e14;
      --bg-card: rgba(18, 22, 32, 0.72);
      --bg-glass: rgba(255, 255, 255, 0.04);
      --border-glass: rgba(255, 255, 255, 0.08);
      --text-primary: #f5f7fb;
      --text-secondary: #9aa3b5;
      --text-muted: #6b7385;
      --accent: #c8a45d;
      --accent-soft: rgba(200, 164, 93, 0.15);
      --accent-strong: #e8c87a;
      --blue: #4f8cff;
      --blue-soft: rgba(79, 140, 255, 0.15);
      --success: #3dd68c;
      --danger: #ff5c7a;
      --gradient-hero: linear-gradient(135deg, rgba(5,6,10,0.2) 0%, rgba(5,6,10,0.75) 55%, rgba(5,6,10,0.95) 100%);
      --gradient-gold: linear-gradient(135deg, #c8a45d 0%, #f0d78c 50%, #a8873f 100%);
      --gradient-blue: linear-gradient(135deg, #3a7bfd 0%, #7aa7ff 100%);
      --shadow-soft: 0 20px 60px rgba(0,0,0,0.45);
      --shadow-glow: 0 0 40px rgba(200, 164, 93, 0.18);
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --nav-height: 80px;
      --font-sans: 'Inter', system-ui, sans-serif;
      --font-display: 'Playfair Display', Georgia, serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-sans);
      background: var(--bg-deep);
      color: var(--text-primary);
      overflow-x: hidden;
      min-height: 100vh;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(200,164,93,0.12), transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 10%, rgba(79,140,255,0.1), transparent 45%),
        radial-gradient(ellipse 50% 30% at 50% 100%, rgba(200,164,93,0.06), transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    .page { display: none; position: relative; z-index: 1; min-height: 100vh; }
    .page.active { display: block; }

    /* LOADER */
    #loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #05060a;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }
    #loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .loader-logo img{
        max-height:128px!important;
    }
    .loader-logo {
      font-family: var(--font-display);
      font-size: 2.5rem;
      letter-spacing: 0.08em;
      background: var(--bs-danger);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
      text-align: center;
    }
    .loader-bar {
      width: 200px;
      height: 2px;
      background: rgba(255,255,255,0.1);
      border-radius: 2px;
      overflow: hidden;
    }
    .loader-bar-fill {
      height: 100%;
      width: 0%;
      background: var(--bs-danger);
      animation: loadFill 1.8s ease forwards;
    }
    @keyframes loadFill { to { width: 100%; } }

    /* NAV */
    .navbar-premium {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-height);
      z-index: 200;
      transition: all 0.4s ease;
      background: transparent;
      border-bottom: 1px solid transparent;
    }
    .navbar-premium.scrolled {
      background: rgba(5, 6, 10, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: var(--border-glass);
    }
    .navbar-premium .container-fluid {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      cursor: pointer;
    }
    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--bs-danger);
      display: grid;
      place-items: center;
      color: #0a0a0a;
      font-weight: 800;
      font-size: 0.9rem;
      box-shadow: var(--shadow-glow);
    }
    .brand-text {
      font-family: var(--font-display);
      font-size: 1.35rem;
      color: var(--text-primary);
      letter-spacing: 0.04em;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--text-primary);
      background: var(--bg-glass);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .nav-icon-btn {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid var(--border-glass);
      background: var(--bg-glass);
      color: var(--text-secondary);
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .nav-icon-btn:hover {
      color: var(--text-primary);
      border-color: rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.08);
    }
    .btn-premium {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.85rem 1.5rem;
      border-radius: 999px;
      border: none;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }
    .btn-gold {
      background: var(--bs-danger);
      color: #0a0a0a;
      box-shadow: 0 8px 30px rgba(200,164,93,0.3);
    }
    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(200,164,93,0.45);
      color: #0a0a0a;
    }
    .btn-ghost {
      background: transparent;
      color: var(--text-primary);
      border: 1px solid var(--border-glass);
      backdrop-filter: blur(10px);
    }
    .btn-ghost:hover {
      background: var(--bg-glass);
      border-color: rgba(255,255,255,0.2);
      color: var(--text-primary);
      transform: translateY(-2px);
    }
    .btn-blue {
      background: var(--gradient-blue);
      color: white;
      box-shadow: 0 8px 30px rgba(79,140,255,0.3);
    }
    
    
    .marquee {
  overflow: hidden;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.012);
}

.marquee-track {
  display: flex;
  gap: 90px;
  width: max-content;
  animation: scrollX 34s linear infinite;
}

.marquee-track span {
  font-family: 'Sora';
  font-weight: 700;
  font-size: 1.5rem;
  color: rgba(255,255,255,.16);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .3s;
}
    
    
    
    .btn-blue:hover {
      transform: translateY(-2px);
      color: white;
      box-shadow: 0 12px 40px rgba(79,140,255,0.45);
    }
    .btn-sm-premium {
      padding: 0.55rem 1.1rem;
      font-size: 0.82rem;
    }
    .mobile-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid var(--border-glass);
      background: var(--bg-glass);
      color: var(--text-primary);
      cursor: pointer;
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0; right: 0;
      background: rgba(5,6,10,0.96);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-glass);
      padding: 1.5rem;
      z-index: 999;
      flex-direction: column;
      gap: 0.5rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--text-secondary);
      text-decoration: none;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      font-weight: 500;
      cursor: pointer;
    }
    .mobile-menu a:hover { background: var(--bg-glass); color: var(--text-primary); }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      padding: 0 0 8vh;
      overflow: hidden;
    }
    .hero-bg {
      /*! position: absolute; */
      /*! inset: 0; */
      /*! background-size: cover; */
      /*! background-position: center; */
      /*! transform: scale(1.05); */
      /*! transition: transform 8s ease; */
    }
    .hero:hover .hero-bg { transform: scale(1.1); }
    .hero-overlay {
      /*! position: absolute; */
      /*! inset: 0; */
      /*! background: var(--gradient-hero); */
    }
    .hero-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,164,93,0.2), transparent 70%);
      bottom: -200px;
      left: 10%;
      filter: blur(40px);
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 2rem;
      width: 100%;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 1rem;
      border-radius: 999px;
      background: var(--accent-soft);
      border: 1px solid rgba(200,164,93,0.25);
      color: var(--accent-strong);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 600;
      line-height: 1.05;
      max-width: 900px;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }
    .hero-title span {
      background: var(--bs-danger);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 1.15rem;
      color: var(--text-secondary);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      font-weight: 400;
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 4rem;
    }
    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border-glass);
      max-width: 700px;
    }
    .hero-stat-value {
      font-size: 1.75rem;
      font-weight: 700;
      background: var(--bs-danger);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-stat-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }

    /* SECTIONS */
    .section {
      padding: 7rem 0;
      position: relative;
    }
    .section-sm { padding: 4rem 0; }
    .container-premium {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--bs-danger);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 600;
      line-height: 1.15;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .section-sub {
      color: var(--text-secondary);
      font-size: 1.05rem;
      max-width: 560px;
      line-height: 1.7;
    }
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 2rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    /* GLASS CARDS */
    .glass-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glass);
      border-radius: var(--radius-lg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: var(--shadow-soft);
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .glass-card:hover {
      border-color: rgba(255,255,255,0.14);
      transform: translateY(-4px);
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    }

    /* SERVICES */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .service-card {
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200,164,93,0.5), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: var(--accent-soft);
      color: var(--bs-danger);
      display: grid;
      place-items: center;
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
    }
    .service-card h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }
    .service-card p {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
    }

    /* NETFLIX SLIDER */
    .featured-section {
      padding: 5rem 0 3rem;
      overflow: hidden;
    }
    .vehicle-swiper {
      overflow: visible;
      padding: 1rem 0 3rem;
    }
    .vehicle-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      background: var(--bg-elevated);
      /* border: 1px solid var(--border-glass); */
      transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .vehicle-card:hover {
      /* transform: translateY(-12px) scale(1.02); */
      /* border-color: rgba(200,164,93,0.35); */
      /* box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(200,164,93,0.1); */
      /* z-index: 5; */
    }
    .vehicle-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    /* .vehicle-card:hover .vehicle-card-img { transform: scale(1.1); } */
    .vehicle-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(5,6,10,0.95) 100%);
    }
    .vehicle-card-body {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1.5rem;
      z-index: 2;
    }
    .vehicle-badge {
          display: inline-block;
          border-radius: 9px;
          letter-spacing: 0.06em;
          text-transform: uppercase;
          padding: 0.55rem;
          font-weight: bold !important;
          font-size: 15px !important;
          background: black !important;
          top: 15px;
          position: fixed;
          right: 15px;
        }
    .badge-new { background: var(--blue-soft); color: #7aa7ff; }
    .badge-lease { background: var(--accent-soft); color: var(--accent-strong); }
    .badge-rent { background: rgba(61,214,140,0.15); color: var(--success); }
    .vehicle-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }
    .vehicle-meta {
      display: flex;
      gap: 1rem;
      color: var(--text-muted);
      font-size: 0.8rem;
      margin-bottom: 0.85rem;
    }
    .vehicle-price {
      font-size: 1.15rem;
      font-weight: 700;
      color: goldenrod;
    }
    .vehicle-price small {
      font-size: 0.75rem;
      color: white;
      font-weight: 400;
    }
    .vehicle-card-actions {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.35s ease;
    }
    .vehicle-card:hover .vehicle-card-actions {
      opacity: 1;
      transform: translateY(0);
    }

    /* CATALOGUE */
    .filters-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      padding: 1.5rem;
      margin-bottom: 2rem;
      align-items: flex-end;
    }
    .filter-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      flex: 1;
      min-width: 140px;
    }
    .filter-group label {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .form-control-premium,
    .form-select-premium {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border-glass);
      border-radius: 12px;
      color: var(--text-primary);
      padding: 0.7rem 1rem;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      width: 100%;
    }
    .form-control-premium:focus,
    .form-select-premium:focus {
      outline: none;
      border-color: rgba(200,164,93,0.5);
      box-shadow: 0 0 0 3px rgba(200,164,93,0.1);
      background: rgba(255,255,255,0.06);
      color: var(--text-primary);
    }
    .form-select-premium option {
      background: #121620;
      color: var(--text-primary);
    }
    .catalogue-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5rem;
    }
    .catalogue-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--bg-elevated);
      border: 1px solid var(--border-glass);
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      cursor: pointer;
    }
    .catalogue-card:hover {
      transform: translateY(-8px);
      border-color: rgba(200,164,93,0.3);
      box-shadow: var(--shadow-soft), var(--shadow-glow);
    }
    .catalogue-card-img-wrap {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .catalogue-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .catalogue-card:hover .catalogue-card-img-wrap img { transform: scale(1.08); }
    .catalogue-card-body { padding: 1.35rem; }
    .catalogue-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }
    .catalogue-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin: 1rem 0;
    }
    .spec-chip {
      padding: 0.3rem 0.65rem;
      border-radius: 8px;
      background: var(--bg-glass);
      border: 1px solid var(--border-glass);
      font-size: 0.75rem;
      color: var(--text-secondary);
    }
    .catalogue-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1rem;
      border-top: 1px solid var(--border-glass);
    }
    .fav-btn {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      border: 1px solid var(--border-glass);
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.3s;
      display: grid;
      place-items: center;
    }
    .fav-btn:hover, .fav-btn.active {
      color: var(--danger);
      border-color: rgba(255,92,122,0.3);
      background: rgba(255,92,122,0.1);
    }

    /* DETAIL PAGE */
    .detail-hero {
      position: relative;
      height: 70vh;
      min-height: 500px;
      overflow: hidden;
      margin-top: var(--nav-height);
    }
    .detail-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .detail-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(5,6,10,0.3) 0%, rgba(5,6,10,0.9) 100%);
      display: flex;
      align-items: flex-end;
      padding: 3rem 0;
    }
    .detail-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin: 2rem 0;
    }
    .detail-gallery img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: var(--radius-sm);
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.3s;
      opacity: 0.7;
    }
    .detail-gallery img:hover,
    .detail-gallery img.active {
      border-color: var(--bs-danger);
      opacity: 1;
    }
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .spec-item {
      padding: 1.25rem;
      border-radius: var(--radius-md);
      background: var(--bg-glass);
      border: 1px solid var(--border-glass);
    }
    .spec-item .label {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 0.35rem;
    }
    .spec-item .value {
      font-size: 1.1rem;
      font-weight: 600;
    }
    .price-simulator {
      padding: 2rem;
      position: sticky;
      top: 100px;
    }
    .price-big {
      font-size: 2.2rem;
      font-weight: 700;
      background: var(--bs-danger);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .range-premium {
      -webkit-appearance: none;
      width: 100%;
      height: 4px;
      border-radius: 2px;
      background: rgba(255,255,255,0.1);
      outline: none;
    }
    .range-premium::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--bs-danger);
      cursor: pointer;
      box-shadow: 0 0 10px rgba(200,164,93,0.5);
    }
    .review-card {
      padding: 1.5rem;
      margin-bottom: 1rem;
    }
    .stars { color: var(--bs-danger); letter-spacing: 2px; }

    /* DASHBOARD */
    .dashboard-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      min-height: 100vh;
    }
    .sidebar {
      background: rgba(8,10,16,0.95);
      border-right: 1px solid var(--border-glass);
      padding: 2rem 1.25rem;
      position: sticky;
      top: var(--nav-height);
      height: calc(100vh);
      overflow-y: auto;
    }
    .sidebar-nav {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .sidebar-nav li { margin-bottom: 0.35rem; }
    .sidebar-nav a {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.8rem 1rem;
      border-radius: 12px;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s;
      cursor: pointer;
    }
    .sidebar-nav a:hover,
    .sidebar-nav a.active {
      background: var(--accent-soft);
      color: goldenrod;
    }
    .sidebar-nav a i { width: 20px; text-align: center; }
    .dashboard-main {
      padding: 2.5rem;
      overflow-x: hidden;
    }
    .kpi-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
    .kpi-card {
      padding: 1.5rem;
    }
    .kpi-card .kpi-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }
    .kpi-card .kpi-value {
      font-size: 1.75rem;
      font-weight: 700;
    }
    .kpi-card .kpi-change {
      font-size: 0.8rem;
      margin-top: 0.5rem;
    }
    .kpi-change.up { color: var(--success); }
    .kpi-change.down { color: var(--danger); }
    .chart-placeholder {
      height: 280px;
      display: flex;
      align-items: flex-end;
      gap: 12px;
      padding: 1.5rem;
    }
    .chart-bar {
      flex: 1;
      background: var(--bs-danger);
      border-radius: 8px 8px 0 0;
      opacity: 0.85;
      transition: opacity 0.3s;
      min-height: 20px;
      position: relative;
    }
    .chart-bar:hover { opacity: 1; }
    .chart-bar::after {
      content: attr(data-label);
      position: absolute;
      bottom: -24px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.7rem;
      color: var(--text-muted);
      white-space: nowrap;
    }
    .table-premium {
      width: 100%;
      border-collapse: collapse;
    }
    .table-premium th {
      text-align: left;
      padding: 1rem;
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-bottom: 1px solid var(--border-glass);
      font-weight: 600;
    }
    .table-premium td {
      padding: 1rem;
      border-bottom: 1px solid var(--border-glass);
      font-size: 0.9rem;
      color: var(--text-secondary);
    }
    .table-premium tr:hover td {
      background: rgba(255,255,255,0.02);
      color: var(--text-primary);
    }
    .status-pill {
      display: inline-block;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 600;
    }
    .status-active { background: rgba(61,214,140,0.15); color: var(--success); }
    .status-pending { background: var(--accent-soft); color: goldenrod; }
    .status-cancelled { background: rgba(255,92,122,0.15); color: var(--danger); }

    /* LOGIN */
    .auth-page {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 0;
    }
    .auth-visual {
      position: relative;
      overflow: hidden;
    }
    .auth-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .auth-visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(5,6,10,0.7), rgba(5,6,10,0.4));
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 4rem;
    }
    .auth-form-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem;
      background: var(--bg-deep);
    }
    .auth-form {
      width: 100%;
      max-width: 420px;
    }
    .auth-tabs {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 2rem;
      background: var(--bg-glass);
      padding: 0.35rem;
      border-radius: 14px;
      border: 1px solid var(--border-glass);
    }
    .auth-tab {
      flex: 1;
      padding: 0.7rem;
      border: none;
      background: transparent;
      color: var(--text-muted);
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    .auth-tab.active {
      background: var(--accent-soft);
      color: goldenrod;
    }
    .form-group-premium {
      margin-bottom: 1.25rem;
    }
    .form-group-premium label {
      display: block;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.45rem;
      font-weight: 500;
    }

    /* EXPERIENCE BAND */
    .experience-band {
      position: relative;
      padding: 8rem 0;
      overflow: hidden;
    }
    .experience-band-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      filter: brightness(0.4);
    }
    .experience-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    /* BRANDS */
    .brands-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem 3.5rem;
      opacity: 0.5;
    }
    .brand-item {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--text-secondary);
      letter-spacing: 0.1em;
      transition: all 0.3s;
      cursor: default;
    }
    .brand-item:hover {
      opacity: 1;
      color: var(--text-primary);
    }

    /* FOOTER */
    .footer {
      border-top: 1px solid var(--border-glass);
      padding: 5rem 0 2rem;
      background: rgba(5,6,10,0.8);
      position: relative;
      z-index: 1;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer h4 {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
      font-weight: 600;
    }
    .footer a {
      display: block;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      margin-bottom: 0.7rem;
      transition: color 0.3s;
      cursor: pointer;
    }
    .footer a:hover { color: var(--bs-danger); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      border-top: 1px solid var(--border-glass);
      color: var(--text-muted);
      font-size: 0.85rem;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .socials {
      display: flex;
      gap: 0.75rem;
    }
    .socials a {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid var(--border-glass);
      display: grid;
      place-items: center;
      color: var(--text-secondary);
      margin: 0;
      transition: all 0.3s;
    }
    .socials a:hover {
      border-color: var(--bs-danger);
      color: var(--bs-danger);
      background: var(--accent-soft);
    }

    /* SEARCH MODAL */
    .search-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(5,6,10,0.92);
      backdrop-filter: blur(20px);
      display: none;
      align-items: flex-start;
      justify-content: center;
      padding-top: 15vh;
    }
    .search-overlay.open { display: flex; }
    .search-box {
      width: 100%;
      max-width: 680px;
      padding: 0 1.5rem;
    }

    .search-results {
      margin-top: 2rem;
      max-height: 50vh;
      overflow-y: auto;
    }
    .search-result-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      border-radius: 12px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .search-result-item:hover { background: var(--bg-glass); }
    .search-result-item img {
      width: 80px;
      height: 50px;
      object-fit: cover;
      border-radius: 8px;
    }

    /* TOAST */
    .toast-container-premium {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 3000;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .toast-premium {
      padding: 1rem 1.5rem;
      border-radius: 14px;
      background: rgba(18,22,32,0.95);
      border: 1px solid var(--border-glass);
      backdrop-filter: blur(20px);
      color: var(--text-primary);
      font-size: 0.9rem;
      box-shadow: var(--shadow-soft);
      animation: toastIn 0.4s ease;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      min-width: 280px;
    }
    @keyframes toastIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* UTILS */
    .text-accent { color: goldenrod; }
    .text-muted-premium { color: var(--text-muted); }
    .text-secondary-premium { color: var(--text-secondary); }
    .mb-section { margin-bottom: 3rem; }
    .hidden { display: none !important; }
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* RESPONSIVE */
    @media (max-width: 1200px) {
      .kpi-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 992px) {
      .nav-links { display: none; }
      .mobile-toggle { display: grid; place-items: center; }
      .dashboard-layout { grid-template-columns: 1fr; }
      .sidebar {
        position: fixed;
        left: -280px;
        width: 260px;
        z-index: 900;
        transition: left 0.35s ease;
      }
      .sidebar.open { left: 0; }
      .auth-page { grid-template-columns: 1fr; } 
      .auth-visual { display: none; }
      .detail-gallery { grid-template-columns: repeat(2, 1fr); }
      .specs-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .services-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.5rem; }
      .kpi-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .dashboard-main { padding: 1.5rem; }
      .catalogue-grid { grid-template-columns: 1fr; }
      .filters-bar { flex-direction: column; }
      .filter-group { min-width: 100%; }
      .navbar-premium .container-fluid { padding: 0 1rem; }
      .container-premium { padding: 0 1rem; }
      .section { padding: 4rem 0; }
    }

    /* SCROLLBAR */
    ::-webkit-scrollbar { width: 8px; height: 8px; }
    ::-webkit-scrollbar-track { background: var(--bg-deep); }
    ::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.12);
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

    /* 3D hover card effect helper */
    .card-3d {
      transform-style: preserve-3d;
      perspective: 1000px;
    }
