/* ==========================================================================
   ELITE AUTO SOLUTIONS - PREMIUM LUXURY STYLESHEET (2027 REDESIGN - V3)
   ========================================================================== */

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Bebas+Neue&family=Outfit:wght@200;300;400;500;600;700&display=swap');

/* ==========================================================================
   1. DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
  --bg-primary: #07090f;
  --bg-secondary: #0b0f19;
  --bg-tertiary: #111827;

  --accent-gold: #d4a843;
  --accent-gold-rgb: 212, 168, 67;
  --accent-blue: #2563eb;
  --accent-blue-rgb: 37, 99, 235;
  --accent-green: #10b981;
  --accent-red: #ef4444;

  --text-primary: #e8edf5;
  --text-secondary: #a3b1c6;
  --text-muted: #6b7280;

  --border-glass: rgba(255, 255, 255, 0.06);
  --border-gold-glass: rgba(212, 168, 67, 0.12);
  --bg-glass: rgba(11, 15, 25, 0.7);
  --bg-glass-heavy: rgba(7, 9, 15, 0.95);

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.4);
  --shadow-glow-blue: 0 0 20px rgba(37, 99, 235, 0.15);
  --shadow-glow-gold: 0 0 20px rgba(212, 168, 67, 0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. RESET & BASE ELEMENTS
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
  padding-top: 72px;
  /* Fixed desktop header offset */
}

/* Spacer utilities to let design breathe */
section {
  padding: 120px 0;
  position: relative;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border: 2px solid var(--bg-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

::selection {
  background: rgba(212, 168, 67, 0.3);
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Utilities */
.highlight-gold {
  color: var(--accent-gold);
}

.highlight-blue {
  color: var(--accent-blue);
}

.text-green {
  color: var(--accent-green);
}

.text-red {
  color: var(--accent-red);
}

/* Common Section Typography */
.sec-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sec-title em {
  font-style: normal;
  color: var(--accent-gold);
  background: linear-gradient(135deg, var(--accent-gold) 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-intro {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

/* Common Buttons */
.btn-prim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #c4953c 100%);
  color: #000;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.2);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  font-size: 14px;
}

.btn-prim:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4);
  color: #000;
}

.btn-sec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.btn-sec:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
  transform: translateY(-2px);
}

/* Ambient glow blobs background decorator */
.ambient-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

/* Scroll reveal class defaults */
.rv {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.rv.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   3. LOADER SECTION
   ========================================================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.ld-center-content {
  text-align: center;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ld-circle-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.ld-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ld-ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.02);
  stroke-width: 3;
}

.ld-ring-spin {
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 3;
  stroke-dasharray: 339.29;
  stroke-dashoffset: 339.29;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.ld-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.ld-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.ld-sub {
  font-family: var(--font-cond);
  font-size: 13px;
  color: var(--accent-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ld-telemetry-panel {
  width: 240px;
}

.ld-status-log {
  font-family: monospace;
  font-size: 9px;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 6px;
}

.ld-progress-bar-wrap {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  margin-bottom: 4px;
}

.ld-progress-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--accent-gold);
  transition: width 0.1s linear;
}

.ld-pct {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
}

/* ==========================================================================
   4. NAVIGATION SECTION (NEW PREMIUM FLOATING PILL)
   ========================================================================== */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 999;
  background: rgba(7, 9, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nav.scrolled {
  background: rgba(7, 9, 15, 0.95);
  border-bottom: 1px solid rgba(212, 168, 67, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.mobile-header-call {
  display: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-brand-name em {
  display: block;
  font-family: var(--font-cond);
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .active-link {
  color: var(--accent-gold);
}

.nav-links .active-link::after {
  width: 100%;
}

.nav-links li a.nav-cta::after {
  display: none !important;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: rgba(212, 168, 67, 0.08) !important;
  color: var(--accent-gold) !important;
  border: 1px solid rgba(212, 168, 67, 0.5);
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  font-size: 12px;
  line-height: 1.2;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(212, 168, 67, 0.05);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #c4953c 100%) !important;
  color: #000 !important;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
}

/* ==========================================================================
   5. NATIVE MOBILE APP BOTTOM NAVIGATION BAR (NEW - DISPLAY < 768px ONLY)
   ========================================================================== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-glass);
  z-index: 999;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
}

.mbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 18px;
  gap: 3px;
  width: 60px;
  height: 100%;
  transition: var(--transition-fast);
}

.mbn-item span {
  font-size: 10px;
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mbn-item.active-link,
.mbn-item:hover {
  color: var(--accent-gold);
}

.mbn-cta {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #c4953c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
  margin-top: -20px;
  border: 3px solid var(--bg-primary);
  cursor: pointer;
  transition: var(--transition-normal);
}

.mbn-cta:hover {
  transform: translateY(-2px);
}

/* ── Loader Wordmark ────────────────────────────────────────────────────── */
.ld-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 4px 0 20px;
}

/* ── Nav Logo Ring ────────────────────────────────────────────────────────── */
.nav-logo-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(212, 168, 67, 0.5);
  flex-shrink: 0;
}

.nav-logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ── Nav Actions (call + book) ────────────────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(163, 177, 198, 0.85);
  font-family: var(--font-cond);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.nav-call-btn:hover {
  border-color: rgba(212, 168, 67, 0.4);
  color: #fff;
  background: rgba(212, 168, 67, 0.05);
}

.nav-call-btn i {
  color: var(--accent-gold);
  font-size: 13px;
}

/* Override nav-cta when inside nav-actions (it's a button now, not a link) */
.nav-actions .nav-cta {
  gap: 7px;
  padding: 9px 20px;
}

/* ── Hero Badge Tag ───────────────────────────────────────────────────────── */
.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.3);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-left: 4px;
}

/* ── HUD Icon ─────────────────────────────────────────────────────────────── */
.hsi-icon {
  font-size: 14px;
  color: var(--accent-gold);
  opacity: 0.7;
  margin-bottom: 4px;
}

/* ── Cyber Slider Section Header ──────────────────────────────────────────── */
.cs-section-header {
  text-align: center;
  padding: 60px 24px 40px;
  max-width: 600px;
  margin: 0 auto;
}

.cs-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.cs-kicker-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 168, 67, 0.4));
}

.cs-kicker-line:last-child {
  background: linear-gradient(to left, transparent, rgba(212, 168, 67, 0.4));
}

.cs-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.cs-section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #fff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SP Visual Overlay ────────────────────────────────────────────────────── */
.sp-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7, 9, 15, 0.1) 0%, rgba(7, 9, 15, 0.7) 70%, rgba(7, 9, 15, 0.92) 100%);
}

/* ── SP Panel Number ──────────────────────────────────────────────────────── */
.sp-panel-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}

/* ── SP Title (renamed from sp-title-new) ────────────────────────────────── */
.sp-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin: 8px 0 12px;
}

.sp-title span {
  display: block;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #fff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SP Description ───────────────────────────────────────────────────────── */
.sp-desc {
  font-size: clamp(13px, 1.3vw, 14.5px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(163, 177, 198, 0.8);
  margin: 0 0 20px;
}

/* ── SP Pricing Row ───────────────────────────────────────────────────────── */
.sp-pricing-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.sp-price-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sp-price-from {
  font-family: var(--font-cond);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(163, 177, 198, 0.5);
}

.sp-price-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent-gold);
  line-height: 1;
}

.sp-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(34, 197, 94, 0.85);
}

/* ── SP Action Row — new buttons ──────────────────────────────────────────── */
.sp-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-sp-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b8852e 100%);
  color: #07090f;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-sp-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(212, 168, 67, 0.4);
}

.btn-sp-primary i {
  font-size: 18px;
}

.btn-sp-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(163, 177, 198, 0.85);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-sp-call:hover {
  border-color: var(--accent-gold);
  color: #fff;
  background: rgba(212, 168, 67, 0.05);
}

.btn-sp-call i {
  color: var(--accent-gold);
}

/* ── Cyber Arrows container + Panel Indicators ────────────────────────────── */
.cyber-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.cyber-panel-indicators {
  display: flex;
  gap: 8px;
}

.cp-ind {
  position: relative;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-ind.active {
  width: 52px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.2);
}

/* The animated progress bar */
.cp-ind::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--accent-gold);
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.6);
  border-radius: inherit;
}

.cp-ind.active::after {
  animation: cpProgress 8s linear forwards;
}

@keyframes cpProgress {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.cyber-arrow-btns {
  display: flex;
  gap: 8px;
}

/* ── Responsive adjustments for new nav actions ───────────────────────────── */
@media (max-width: 1024px) {
  .nav-actions .nav-call-btn {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-actions {
    display: none;
  }

  .mobile-header-call {
    display: flex;
  }
}

/* ==========================================================================
   6. HERO SLIDER — CINEMATIC LUXURY EDITION
   ========================================================================== */

/* ── Core Section ─────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: visible;
  z-index: 5;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

/* ── Background Slides ────────────────────────────────────────────────────── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.h-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 1.4s;
  will-change: opacity, transform;
}

.h-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* ── Cinematic Vignette ───────────────────────────────────────────────────── */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    /* Left panel darkening for text readability */
    linear-gradient(to right, rgba(7, 9, 15, 0.92) 0%, rgba(7, 9, 15, 0.6) 50%, rgba(7, 9, 15, 0.1) 100%),
    /* Bottom darkening for HUD */
    linear-gradient(to top, rgba(7, 9, 15, 0.97) 0%, rgba(7, 9, 15, 0.5) 35%, transparent 60%),
    /* Top vignette */
    linear-gradient(to bottom, rgba(7, 9, 15, 0.4) 0%, transparent 20%);
}

/* ── Main Content Container ───────────────────────────────────────────────── */
.hero-content-container {
  position: relative;
  z-index: 5;
  flex: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 72px;
  /* nav offset */
  padding-bottom: 180px;
  /* space for hud */
}

/* ── Text Block ───────────────────────────────────────────────────────────── */
.hero-text-content {
  flex: 1;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Telemetry Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.3);
  font-family: var(--font-cond);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}

/* Shimmer border top */
.hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.6) 0%, transparent 50%, rgba(212, 168, 67, 0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(212, 168, 67, 0.25), 0 0 12px rgba(212, 168, 67, 0.6);
  animation: heroPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes heroPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

/* Display Headline */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  /* Stagger each line via animation delays */
}

.hero-title-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title-filled {
  display: block;
  color: #fff;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.15);
  animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-title-accent {
  display: block;
  color: var(--accent-gold);
  background: linear-gradient(135deg, var(--accent-gold) 0%, #fff 70%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes heroLineIn {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Subtitle */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(13.5px, 1.4vw, 15.5px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(163, 177, 198, 0.85);
  max-width: 520px;
  margin: 0;
  animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

/* CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

/* ── Primary CTA — Liquid Glass Gold ──────────────────────────────────────── */
.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #b8852e 100%);
  color: #07090f;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 168, 67, 0.5),
    0 12px 32px rgba(212, 168, 67, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.35);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-primary .btn-primary-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.btn-hero-primary:hover .btn-primary-fill {
  opacity: 0.15;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(212, 168, 67, 0.8),
    0 20px 50px rgba(212, 168, 67, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.btn-hero-primary .btn-primary-label {
  position: relative;
  z-index: 1;
}

.btn-hero-primary .btn-arrow {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-primary:hover .btn-arrow {
  transform: translate(3px, -3px);
}

/* ── Ghost CTA ────────────────────────────────────────────────────────────── */
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 50px;
  background: rgba(7, 9, 15, 0.65);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: #ffffff;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  cursor: pointer;
}

.btn-hero-ghost:hover {
  border-color: var(--accent-gold);
  color: #fff;
  background: rgba(212, 168, 67, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-hero-ghost i {
  color: var(--accent-gold);
  font-size: 14px;
}

/* ── Trust Micro-Bar ──────────────────────────────────────────────────────── */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.05s both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(163, 177, 198, 0.65);
}

.trust-badge i {
  color: var(--accent-gold);
  font-size: 12px;
}

.trust-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.4);
}

/* ── Right Stat Cards ─────────────────────────────────────────────────────── */
.hero-stat-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  animation: heroLineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero-stat-card {
  width: 210px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(11, 15, 25, 0.45);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.06),
    0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Top shimmer border on stat cards */
.hero-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg,
      rgba(212, 168, 67, 0.4) 0%,
      rgba(212, 168, 67, 0.08) 40%,
      transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.15);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(212, 168, 67, 0.12);
}

.hsc-icon {
  width: 28px;
  height: 28px;
  color: var(--accent-gold);
  opacity: 0.7;
}

.hsc-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.hsc-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hsc-number span {
  font-size: 1.4rem;
  color: var(--accent-gold);
  letter-spacing: 0;
}

.hsc-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(163, 177, 198, 0.55);
}

/* ── Floating Glass HUD Strip ─────────────────────────────────────────────── */
.hud-stats-overlay {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1200px;
  z-index: 10;
  border-radius: 18px;

  /* Deep glass */
  background: rgba(7, 9, 15, 0.55);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 -1px 0 rgba(255, 255, 255, 0.03),
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(212, 168, 67, 0.1);

  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Top shimmer line */
.hud-stats-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(212, 168, 67, 0.5) 30%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(212, 168, 67, 0.5) 70%,
      transparent 100%);
  border-radius: 1px;
}

.hud-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 16px;
}

.hud-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(212, 168, 67, 0.2), transparent);
  flex-shrink: 0;
}

.hsi-label {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(212, 168, 67, 0.7);
  margin-bottom: 2px;
}

.hsi-val {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hsi-sub {
  font-size: 11px;
  color: rgba(163, 177, 198, 0.55);
  font-weight: 300;
  display: flex;
  align-items: center;
}

.open-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  margin-right: 6px;
  flex-shrink: 0;
  animation: blinkDot 2s infinite;
}

@keyframes blinkDot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ── Slide Controls ───────────────────────────────────────────────────────── */
.hero-controls-overlay {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1200px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-indicators {
  display: flex;
  gap: 6px;
  pointer-events: auto;
}

.h-ind {
  height: 2px;
  width: 28px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.h-ind.active {
  width: 48px;
  background: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 168, 67, 0.5);
}

.hero-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-cond);
  font-size: 13px;
  color: rgba(163, 177, 198, 0.5);
  pointer-events: auto;
  letter-spacing: 0.05em;
}

.hero-counter strong {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.hero-counter-sep {
  color: rgba(212, 168, 67, 0.4);
  font-size: 11px;
}

/* ── Scroll hint ──────────────────────────────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-cond);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(163, 177, 198, 0.35);
  pointer-events: none;
}

.hero-scroll svg {
  width: 13px;
  height: 18px;
  opacity: 0.4;
}

/* ── Nav Arrows ───────────────────────────────────────────────────────────── */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(7, 9, 15, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-arrow:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #07090f;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.15), 0 12px 30px rgba(212, 168, 67, 0.3);
}

.prev-slide {
  left: 24px;
}

.next-slide {
  right: 24px;
}

/* ── Responsive Hero ──────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .hero-content-container {
    padding: 0 32px;
    padding-top: 72px;
    padding-bottom: 175px;
  }
}

@media (max-width: 1024px) {
  #hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-content-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 120px 24px 40px;
    gap: 32px;
  }

  .hero-text-content {
    align-items: center;
    max-width: 640px;
  }

  .hero-badge {
    align-self: center;
  }

  .hero-subtitle {
    text-align: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-bar {
    justify-content: center;
  }

  .hero-stat-cards {
    flex-direction: row;
    gap: 12px;
  }

  .hero-stat-card {
    width: 180px;
    padding: 18px;
  }

  .hud-stats-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: calc(100% - 32px);
    margin: 24px auto 0 auto;
    padding: 20px;
  }

  .hud-stat-item {
    padding: 0 10px;
  }

  .hero-controls-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 20px;
    justify-content: center;
    gap: 24px;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content-container {
    padding: 100px 20px 32px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
  }

  .hero-stat-cards {
    gap: 10px;
  }

  .hero-stat-card {
    width: 155px;
    padding: 16px;
  }

  .hsc-number {
    font-size: 2.1rem;
  }

  .hud-stats-overlay {
    width: calc(100% - 32px);
    padding: 14px 16px;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 24px auto 0 auto;
  }

  .hud-divider {
    display: none;
  }

  .hud-stat-item {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 12px;
  }

  .hud-stat-item:nth-child(odd):last-child,
  .hud-stat-item:last-child {
    border-bottom: none;
  }

  .hero-controls-overlay {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }

  .hero-scroll {
    display: none;
  }

  .prev-slide,
  .next-slide {
    display: none;
  }
}

@media (max-width: 540px) {
  .hero-content-container {
    padding: 90px 16px 32px;
  }

  .hero-stat-cards {
    display: none;
  }

  /* hide on very small; HUD covers the data */
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    justify-content: center;
    width: 100%;
  }

  .hud-stats-overlay {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
    bottom: auto;
    margin: 20px auto 0 auto;
  }

  .hero-controls-overlay {
    position: relative;
    bottom: auto;
    margin-top: 20px;
  }

  .hero-trust-bar {
    gap: 10px;
  }

  .trust-badge {
    font-size: 10px;
  }
}

/* ==========================================================================
   8. MARQUEE TICKER
   ========================================================================== */
.ticker {
  background: #000;
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
  padding: 12px 0;
  margin-top: 36px;
  /* Push ticker down to make room for absolute floating HUD stats overlay */
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 35s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  padding: 0 30px;
  position: relative;
}

.ticker-item::after {
  content: '·';
  position: absolute;
  right: 0;
  color: var(--accent-gold);
  font-size: 20px;
  top: -2px;
}

@keyframes tickerScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ==========================================================================
   9. CYBER SLIDER / TECH STRIP (CLEANED)
   ========================================================================== */
/* ==========================================================================
   9. CYBER SLIDER / TECH STRIP — PREMIUM SHOWCASE
   ========================================================================== */

/* ── Section wrapper ──────────────────────────────────────────────────────── */
.cyber-slider {
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

/* ── Panels container ─────────────────────────────────────────────────────── */
.slick-panels {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
  overflow: hidden;
}

/* ── Each slide panel ─────────────────────────────────────────────────────── */
.slick-panel {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  visibility: hidden;
  padding: 40px 48px 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0.8s;
  pointer-events: none;
}

.slick-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Staggered micro-animations for slide contents */
.slick-panel .sp-screen {
  transform: scale(0.97) translateX(-15px);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.slick-panel.active .sp-screen {
  transform: scale(1) translateX(0);
  opacity: 1;
}

.slick-panel .sp-dashboard {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.slick-panel.active .sp-dashboard {
  transform: translateY(0);
  opacity: 1;
}

/* ── Two-column layout ─────────────────────────────────────────────────────── */
.sp-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Left: Image panel ────────────────────────────────────────────────────── */
.sp-screen {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.sp-visual {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* The new overlay class handles gradient — no inline gradient needed */
.sp-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 9, 15, 0.15) 0%, rgba(7, 9, 15, 0.75) 70%, rgba(7, 9, 15, 0.92) 100%),
    linear-gradient(to top, rgba(7, 9, 15, 0.7) 0%, transparent 50%);
  z-index: 1;
}

/* ── Hologram scanner line ────────────────────────────────────────────────── */
.hologram-scanner {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(212, 168, 67, 0.8), transparent);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.5);
  animation: scanSweeper 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes scanSweeper {
  0% {
    top: 0%;
    opacity: 0.8;
  }

  48% {
    opacity: 0.9;
  }

  50% {
    top: 100%;
    opacity: 0.8;
  }

  100% {
    top: 0%;
    opacity: 0.8;
  }
}

/* ── Tag and panel number on image ───────────────────────────────────────── */
.sp-visual-tag {
  position: absolute !important;
  top: 16px;
  left: 16px;
  background: rgba(7, 9, 15, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 30px;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.85);
  z-index: 3;
}

.sp-panel-num {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 3;
}

/* ── Right: Dashboard content ─────────────────────────────────────────────── */
.sp-dashboard {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 8px;
}

.sp-micro-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-cond);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.85;
}

/* ── Tech chips grid ──────────────────────────────────────────────────────── */
.tech-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.tech-chip {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 12px;
  border-radius: 10px;
  transition: border-color 0.3s ease;
}

.tech-chip:hover {
  border-color: rgba(212, 168, 67, 0.2);
}

.tech-chip .bi-check-circle-fill {
  color: #22c55e;
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

.tc-info strong {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.tc-info span {
  font-size: 11px;
  color: rgba(163, 177, 198, 0.6);
  font-weight: 300;
  line-height: 1.4;
}

/* ── Cyber arrows — bottom bar ────────────────────────────────────────────── */
.cyber-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.cyber-panel-indicators {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cp-ind {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cp-ind.active {
  width: 52px;
  background: var(--accent-gold);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.5);
}

.cyber-arrow-btns {
  display: flex;
  gap: 8px;
}

.cyber-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(163, 177, 198, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.cyber-arrow:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #07090f;
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(212, 168, 67, 0.3);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .slick-panel {
    padding: 32px 32px 0;
  }

  .sp-layout-grid {
    gap: 36px;
  }

  .cyber-arrows {
    padding: 20px 32px 28px;
  }
}

@media (max-width: 768px) {
  .slick-panel {
    padding: 24px 20px 0;
  }

  .sp-layout-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sp-screen {
    aspect-ratio: 16/9;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .sp-dashboard {
    padding-right: 0;
  }
}

/* ==========================================================================
   9b. VEHICLE BRANDS INFINITE TICKER
   ========================================================================== */
#brands {
  background: var(--bg-primary);
  padding: 30px 0;
  border-bottom: 1px solid var(--border-glass);
  border-top: 1px solid var(--border-glass);
  position: relative;
  z-index: 10;
}

.brands-label {
  text-align: center;
  font-family: var(--font-cond);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.brands-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Soft fade on edges */
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.brands-track {
  display: flex;
  width: max-content;
  gap: 30px;
  animation: brandsScroll 35s linear infinite;
}

/* Pause scroll on hover */
.brands-outer:hover .brands-track {
  animation-play-state: paused;
}

.brand-logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.brand-logo-item img {
  width: 22px;
  height: 22px;
  /* Convert black simple icons to soft light silver */
  filter: brightness(0) invert(0.6);
  transition: filter var(--transition-fast), transform var(--transition-fast);
}

.brand-logo-item span {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

/* Hover effects */
.brand-logo-item:hover {
  background: rgba(212, 168, 67, 0.05);
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.1);
  transform: translateY(-2px);
}

.brand-logo-item:hover img {
  filter: brightness(0) invert(1) sepia(100%) saturate(1000%) hue-rotate(340deg);
  /* gold-ish */
  transform: scale(1.1);
}

.brand-logo-item:hover span {
  color: #fff;
}

@keyframes brandsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   10. PREMIUM SERVICES / OUR WORKSHOP SERVICES
   ========================================================================== */
.holo-services {
  position: relative;
  background: var(--bg-secondary);
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
}

.holo-bg-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: screen;
  pointer-events: none;
}

.holo-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg-secondary) 0%, transparent 20%, transparent 80%, var(--bg-secondary) 100%),
    radial-gradient(circle at center, transparent 0%, var(--bg-secondary) 80%);
  pointer-events: none;
}

/* ── FIXED SERVICES HEADING ── */
.services-hdr-2027 {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.services-hdr-2027 .sec-label {
  justify-content: center;
  margin-bottom: 12px;
}

.services-hdr-2027 .sec-title {
  text-align: center;
  margin-bottom: 20px;
  line-height: 0.95;
}

.services-intro-2027 {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 580px;
  text-align: center;
  margin: 0 auto;
}

/* ── Holo Grid ── */
.holo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 0;
  perspective: 1000px;
}

.holo-card {
  position: relative;
  height: 420px;
  border-radius: 12px;
  background: rgba(10, 15, 25, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.2, 1), box-shadow 0.5s ease, border-color 0.5s ease;
  cursor: pointer;
}

.holo-card:hover {
  transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 168, 67, 0.2);
  border-color: rgba(212, 168, 67, 0.4);
}

.hc-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(80%);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.2, 1);
}

.holo-card:hover .hc-media img {
  opacity: 0.8;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.hc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 5, 8, 1) 0%, rgba(3, 5, 8, 0.4) 50%, transparent 100%);
  z-index: 1;
}

.hc-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateZ(30px);
}

.hc-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
  transition: all 0.4s ease;
}

.holo-card:hover .hc-icon {
  background: var(--accent-gold);
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--accent-gold);
}

.hc-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.holo-card:hover .hc-title {
  color: var(--accent-gold);
}

.hc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.8;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.holo-card:hover .hc-desc {
  opacity: 1;
  transform: translateY(0);
}

.hc-btn {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hc-btn span {
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.holo-card:hover .hc-btn {
  opacity: 1;
  transform: translateY(0);
}

.holo-card:hover .hc-btn span {
  transform: translateX(5px);
}

.holo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold));
  transition: all 0.5s ease;
  z-index: 5;
}

.holo-card:hover::before {
  animation: scanLine 2s linear infinite;
}

@keyframes scanLine {
  0% {
    left: -50%;
    top: 0;
    height: 2px;
    width: 50%;
  }

  25% {
    left: 100%;
    top: 0;
    height: 2px;
    width: 50%;
  }

  25.1% {
    left: 100%;
    top: 0;
    width: 2px;
    height: 50%;
  }

  50% {
    left: 100%;
    top: 100%;
    width: 2px;
    height: 50%;
  }

  50.1% {
    left: 100%;
    top: 100%;
    height: 2px;
    width: 50%;
  }

  75% {
    left: -50%;
    top: 100%;
    height: 2px;
    width: 50%;
  }

  75.1% {
    left: 0;
    top: 100%;
    width: 2px;
    height: 50%;
  }

  100% {
    left: 0;
    top: -50%;
    width: 2px;
    height: 50%;
  }
}

@media (max-width: 1024px) {
  .holo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .holo-grid {
    grid-template-columns: 1fr;
  }

  .holo-card {
    height: 380px;
  }
}

/* ==========================================================================
   11. PROCESS / HOW IT WORKS SECTION (3D ROTATING CAROUSEL)
   ========================================================================== */
#process {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-glass);
}

.process-timeline-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.process-timeline-line {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.process-timeline-progress {
  height: 100%;
  width: 0%;
  background: var(--accent-blue);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.8);
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.process-timeline-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.pt-step {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.pt-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--border-glass);
  transition: all 0.4s ease;
}

.pt-step:hover .pt-dot {
  border-color: rgba(255, 255, 255, 0.3);
}

.pt-step.active .pt-dot {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px var(--accent-gold), 0 0 20px rgba(212, 168, 67, 0.4);
  transform: scale(1.25);
}

.pt-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.pt-step.active .pt-label {
  color: var(--accent-gold);
  text-shadow: 0 0 10px rgba(212, 168, 67, 0.2);
}

.process-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 48px;
  perspective: 1200px;
}

.process-carousel {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 600px;
  margin: 0 auto;
  transform-style: preserve-3d;
}

.proc-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7) translateZ(-200px);
  z-index: 1;
}

.proc-card.card-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateZ(0);
  z-index: 10;
}

.proc-card.card-prev {
  opacity: 0.12;
  pointer-events: auto;
  transform: translateX(-240px) scale(0.78) rotateY(25deg) translateZ(-150px);
  z-index: 5;
  cursor: pointer;
}

.proc-card.card-next {
  opacity: 0.12;
  pointer-events: auto;
  transform: translateX(240px) scale(0.78) rotateY(-25deg) translateZ(-150px);
  z-index: 5;
  cursor: pointer;
}

.pc-card-inner {
  position: relative;
  overflow: hidden;
  background: #040508;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.proc-card.card-active .pc-card-inner {
  border-color: rgba(212, 168, 67, 0.35);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 168, 67, 0.08);
}

.pc-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.38;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: var(--radius-lg);
}

.proc-card.card-active:hover .pc-card-bg {
  transform: scale(1.06);
}

.pc-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(6, 8, 12, 0.1) 0%, rgba(4, 5, 8, 0.8) 60%, rgba(4, 5, 8, 0.98) 100%);
  z-index: 2;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.pc-card-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pc-badge {
  align-self: flex-start;
  background: rgba(212, 168, 67, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.18);
  color: var(--accent-gold);
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.pc-title {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 0.5px;
}

.pc-desc {
  font-size: 13.5px;
  color: #c5c9d6;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 24px;
}

.pc-status-label {
  text-align: center;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  color: #00E5FF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: auto;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.pc-glow-bg {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pc-telemetry {
  background: rgba(4, 6, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Courier New', Courier, monospace;
}

.pct-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 700;
}

.pct-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.pct-dot.green {
  background-color: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
}

.pct-dot.yellow {
  background-color: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.pct-dot.red {
  background-color: var(--accent-red);
  box-shadow: 0 0 8px var(--accent-red);
}

.pct-dot.green-pulse {
  background-color: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: pctPulse 1.5s infinite;
}

@keyframes pctPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.pct-status {
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  margin: 6px 0;
}

.pct-specs {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-secondary);
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 6px;
  margin-top: 6px;
}

.pct-specs span {
  white-space: nowrap;
}

.pc-nav-btn {
  background: rgba(11, 15, 25, 0.7);
  border: 1px solid var(--border-glass);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 12;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.pc-nav-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
}

.pc-prev {
  position: absolute;
  left: 24px;
}

.pc-next {
  position: absolute;
  right: 24px;
}

.process-controls-hud {
  display: flex;
  align-items: center;
  background: rgba(11, 15, 25, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  padding: 8px 24px;
  margin: 40px auto 0 auto;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.p-hud-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-hud-label {
  color: var(--text-muted);
}

.p-hud-val {
  color: #fff;
  font-weight: 700;
}

.p-hud-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 16px;
}

.p-hud-play-btn {
  background: none;
  border: none;
  color: var(--accent-gold);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.p-hud-play-btn:hover {
  color: #fff;
}

/* ==========================================================================
   12. PRICING SECTION
   ========================================================================== */
.pricing-section-v2 {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-glass);
}

.pricing-slider-wrap {
  position: relative;
  margin-top: 48px;
  width: 100%;
  max-width: 1098px;
  /* 3 cards (350px * 3) + 2 gaps (24px * 2) = 1098px to clip 4th card */
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.pricing-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.pricing-track::-webkit-scrollbar {
  display: none;
}

.pricing-card {
  min-width: 350px;
  width: 350px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.pricing-card-highlight {
  border-color: var(--accent-gold);
  background: rgba(212, 168, 67, 0.02);
}

.pc-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 4px 10px;
  border-radius: 50px;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.pricing-card-highlight .pc-badge {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
}

.pc-title {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pc-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 20px;
}

.pc-price-box {
  margin-bottom: 24px;
}

.pc-price-lbl {
  font-family: var(--font-cond);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pc-price {
  font-family: var(--font-display);
  font-size: 36px;
  color: #fff;
  line-height: 1.1;
}

.pricing-card-highlight .pc-price {
  color: var(--accent-gold);
}

.pc-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.pc-f-item {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 300;
}

.pc-f-item i {
  font-size: 14px;
}

.pc-btn {
  width: 100%;
  padding: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition-fast);
  cursor: pointer;
  font-size: 13px;
}

.pricing-card-highlight .pc-btn {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.slider-nav-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--accent-gold);
  color: #000;
}

/* ==========================================================================
   13. SPECIAL OFFERS SECTION (CLEAN & AJAX LOADED)
   ========================================================================== */
.special-offers-sec {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-glass);
}

.offers-showcase {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.offer-card {
  position: relative;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: opacity var(--transition-normal), transform var(--transition-normal), border-color var(--transition-fast), box-shadow var(--transition-fast);
  opacity: 0;
  transform: translateY(30px);
}

.offer-card.vis {
  opacity: 1;
  transform: translateY(0);
}

.offer-card:hover {
  border-color: rgba(212, 168, 67, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 168, 67, 0.15);
}

/* Card layout spans for 2-column / 3-column mix */
.offer-card:nth-child(5n+1),
.offer-card:nth-child(5n+2) {
  grid-column: span 3;
}

.offer-card:nth-child(5n+3),
.offer-card:nth-child(5n+4),
.offer-card:nth-child(5n+5) {
  grid-column: span 2;
}

.offer-card-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: 1;
  transition: transform var(--transition-slow);
}

.offer-card:hover .offer-card-bg-img {
  transform: scale(1.08);
}

.offer-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 9, 15, 0.1) 0%, rgba(7, 9, 15, 0.45) 60%, rgba(7, 9, 15, 0.9) 100%);
  z-index: 2;
  transition: background var(--transition-normal);
}

.offer-card:hover .offer-card-overlay {
  background: linear-gradient(180deg, rgba(7, 9, 15, 0.05) 0%, rgba(7, 9, 15, 0.35) 50%, rgba(7, 9, 15, 0.95) 100%);
}

.offer-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-red);
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
  transition: transform var(--transition-fast);
}

.offer-card:hover .offer-card-badge {
  transform: scale(1.05);
}

.offer-card-body {
  position: relative;
  z-index: 3;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offer-card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.5vw, 24px);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.offer-card-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 300;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-card-cta {
  align-self: flex-start;
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--accent-gold);
  color: #000;
  border: 1px solid var(--accent-gold);
  padding: 10px 24px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.offer-card-cta i {
  transition: transform var(--transition-fast);
}

.offer-card-cta:hover {
  background: transparent;
  color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 168, 67, 0.3);
}

.offer-card-cta:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   14. TEAM SECTION
   ========================================================================== */
.team-section-v2 {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.tv2-slider-wrapper {
  position: relative;
  margin-top: 48px;
}

.tv2-slider-container {
  overflow-x: auto;
  scrollbar-width: none;
}

.tv2-slider-container::-webkit-scrollbar {
  display: none;
}

.tv2-grid {
  display: flex;
  gap: 24px;
}

.tv2-card {
  min-width: 280px;
  width: 280px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition-normal);
}

.tv2-photo {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.tv2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.tv2-photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--bg-secondary) 0%, transparent 60%);
}

.tv2-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: rgba(7, 9, 15, 0.85);
  border: 1px solid var(--accent-gold);
  border-radius: 6px;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 5;
  box-shadow: 0 0 12px var(--badge-glow, rgba(212, 168, 67, 0.35));
}

.tv2-info {
  padding: 20px;
  background: var(--bg-secondary);
}

.tv2-name {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 2px;
}

.tv2-role {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.tv2-bio {
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 55px;
}

.tv2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tv2-tag {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
}

.tv2-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--tv2-ac, var(--accent-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.tv2-card:hover {
  transform: translateY(-5px);
}

.tv2-card:hover .tv2-card-accent {
  transform: scaleX(1);
}

.tv2-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.tv2-slider-btn.prev {
  left: -22px;
}

.tv2-slider-btn.next {
  right: -22px;
}

.tv2-slider-btn:hover {
  background: var(--accent-gold);
  color: #000;
}

.tv2-cta-bar {
  margin-top: 48px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tv2-cta-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tv2-cta-icon {
  font-size: 24px;
  color: var(--accent-gold);
}

.tv2-cta-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.tv2-cta-text span {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ==========================================================================
   15. GALLERY SECTION
   ========================================================================== */
.gv2-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-glass);
}

.gv2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.gv2-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  position: relative;
}

.gv2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gv2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 9, 15, 0.8) 0%, transparent 80%);
  opacity: 0;
  transition: var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gv2-cat {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.gv2-title {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
}

.gv2-item:hover img {
  transform: scale(1.04);
}

.gv2-item:hover .gv2-overlay {
  opacity: 1;
}

/* ==========================================================================
   16. TESTIMONIALS / REVIEWS SECTION
   ========================================================================== */
.rv2-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
}

.rv2-slider-container {
  margin-top: 48px;
  width: 100%;
  overflow: hidden;
}

.rv2-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollReviews 30s linear infinite;
}

.rv2-card {
  width: 360px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
}

.rv2-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 16px;
  font-size: 12px;
}

.rv2-stars i {
  color: var(--accent-gold);
}

.rv2-verified {
  margin-left: 8px;
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-green);
}

.rv2-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 20px;
  flex-grow: 1;
}

.rv2-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rv2-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-gold);
}

.rv2-author-info strong {
  font-size: 14px;
  color: #fff;
  display: block;
}

.rv2-author-info span {
  font-size: 11px;
  color: var(--text-muted);
}

.rv2-service-tag {
  align-self: flex-start;
  margin-top: 16px;
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(212, 168, 67, 0.04);
  padding: 3px 10px;
  border-radius: 4px;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-33.33% - 8px));
  }
}

.rv2-trust {
  margin-top: 48px;
  border-top: 1px solid var(--border-glass);
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rv2-trust-score {
  font-family: var(--font-display);
  font-size: 36px;
  color: #fff;
}

.rv2-trust-stars {
  font-size: 14px;
  color: var(--accent-gold);
}

.rv2-trust-count {
  font-size: 12px;
  color: var(--text-secondary);
}

.rv2-trust-badges {
  display: flex;
  gap: 32px;
}

.rv2-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rv2-trust-badge i {
  font-size: 16px;
  color: var(--accent-gold);
}

.rv2-trust-badge span {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ==========================================================================
   17. CTA BANNER SECTION
   ========================================================================== */
#cta {
  background: linear-gradient(to right, rgba(7, 9, 15, 0.95), rgba(11, 15, 25, 0.85)), url('Image/booking_bg.webp');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border-glass);
}

.cta-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cta-content {
  max-width: 600px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 16px;
}

/* ==========================================================================
   18. CONTACT & MAPS SECTION
   ========================================================================== */
#contact {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-glass);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ci {
  display: flex;
  gap: 16px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.ci h4 {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.ci p,
.ci a {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 300;
}

.map-box {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(7, 9, 15, 0.95) 100%), url('Image/background_BG.webp');
  background-size: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}

.map-pin {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.08);
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-gold);
  margin-bottom: 16px;
  animation: pinBounce 2s infinite ease-in-out;
}

@keyframes pinBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.map-box h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 6px;
}

.map-box p {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 280px;
  margin-bottom: 20px;
  font-weight: 300;
}

/* ==========================================================================
   19. FOOTER SECTION
   ========================================================================== */
footer {
  background: #04060a;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.foot-brand p {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 300;
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.foot-socials {
  display: flex;
  gap: 10px;
}

.fsoc {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.fsoc:hover {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
}

.foot-col h4 {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot-col a {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 300;
}

.foot-col a:hover {
  color: var(--accent-gold);
}

.foot-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   20. MODALS SECTION (HIGHLY COMPACT TOAST-LIKE POPUPS)
   ========================================================================== */
.qb-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 10, 0.8);
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 16px;
}

.qb-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.qb-modal-container {
  width: 100%;
  max-width: 760px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.qb-modal-overlay.active .qb-modal-container {
  transform: scale(1);
}

.qb-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
}

.qb-modal-close:hover {
  background: var(--accent-gold);
  color: #000;
}

.qb-compact {
  display: flex;
}

.qb-compact-left {
  width: 38%;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.03) 0%, rgba(7, 9, 15, 0.5) 100%);
  border-right: 1px solid var(--border-glass);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qb-compact-badge {
  align-self: flex-start;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.15);
  color: var(--accent-gold);
  padding: 3px 10px;
  border-radius: 50px;
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.qb-compact-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.qb-compact-sub {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 20px;
}

.qb-compact-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qb-compact-checks span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.qb-compact-checks span::before {
  content: '✓';
  color: var(--accent-gold);
}

.qb-compact-form {
  width: 62%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qb-compact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.qb-compact-field label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.qb-compact-field input,
.qb-compact-field select,
.qb-compact-field textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 16px;
  transition: border-color var(--transition-fast);
}

.qb-compact-field input:focus,
.qb-compact-field select:focus,
.qb-compact-field textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.qb-compact-field select option {
  background: var(--bg-secondary);
  color: #fff;
}

.qb-compact-btn {
  width: 100%;
  padding: 12px;
  background: var(--accent-gold);
  color: #000;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  margin-top: 8px;
}

.qb-compact-btn:hover {
  background: #fff;
}

.review-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10000;
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
}

.review-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.rating-stars-select {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 6px;
}

.rating-stars-select input {
  display: none;
}

.rating-stars-select label {
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
}

.rating-stars-select label:hover,
.rating-stars-select label:hover~label,
.rating-stars-select input:checked~label {
  color: var(--accent-gold);
}

/* ==========================================================================
   21. FLOATING ACTION BUTTONS (FABS) & BACK TO TOP
   ========================================================================== */
.fabs {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}

.fab {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fab-wa {
  background-color: #25d366;
}

.fab-fb {
  background-color: #1877f2;
}

.fab-tiktok {
  background-color: #010101;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fab-call {
  background-color: var(--accent-gold);
  color: #000;
  border-color: rgba(212, 168, 67, 0.3);
}

.fab-tip {
  position: absolute;
  right: 50px;
  background: rgba(7, 9, 15, 0.95);
  border: 1px solid var(--border-glass);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-cond);
  font-size: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  color: var(--text-primary);
}

.fab-wa:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.fab-fb:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.45);
}

.fab-tiktok:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.fab-call:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(212, 168, 67, 0.45);
}

.fab:hover .fab-tip {
  opacity: 1;
  visibility: visible;
}

.back2top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-glass-heavy);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 998;
}

.back2top.visible {
  opacity: 1;
  visibility: visible;
}

.back2top:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* ==========================================================================
   22. RESPONSIVE MEDIA QUERIES (MOBILE OPTIMIZATION FOCUS)
   ========================================================================== */

/* Tablets & Small Desktops (1024px) */
@media (max-width: 1024px) {
  #nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 56px !important;
    border-radius: 0 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(11, 15, 25, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    padding: 0 16px !important;
    margin: 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nav-container {
    padding: 0 !important;
  }

  .nav-logo {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .nav-logo-img {
    height: 40px !important;
    width: auto !important;
  }

  .nav-brand-name {
    font-size: 16px !important;
  }

  .nav-brand-name em {
    font-size: 8px !important;
    margin-top: 1px !important;
  }

  .nav-links {
    display: none !important;
  }

  .mobile-header-call {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .mobile-header-call:hover,
  .mobile-header-call:active {
    background: var(--accent-gold);
    color: #000;
    transform: scale(1.05);
  }

  .mobile-bottom-nav {
    display: flex;
  }

  /* Show Bottom Nav */
  body {
    padding-bottom: 64px;
    padding-top: 56px !important;
    /* Mobile offset */
  }

  .fabs {
    bottom: 84px;
  }

  /* Shift FABs up so they don't block Bottom Nav */
  .back2top {
    bottom: 84px;
  }

  .sp-layout-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sp-screen {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  .holo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-carousel-wrap {
    margin-top: 24px;
    padding: 0 10px;
  }

  .process-carousel {
    max-width: 100%;
    height: 550px;
  }

  .proc-card.card-prev {
    transform: translateX(-65px) scale(0.85) rotateY(15deg) translateZ(-100px);
    opacity: 0.06;
  }

  .proc-card.card-next {
    transform: translateX(65px) scale(0.85) rotateY(-15deg) translateZ(-100px);
    opacity: 0.06;
  }

  .pc-card-inner {
    padding: 20px 24px;
  }

  .pc-title {
    font-size: 20px;
  }

  .pc-desc {
    font-size: 12.5px;
    margin-bottom: 16px;
  }



  .pt-label {
    display: none;
  }

  .process-timeline-wrap {
    margin-bottom: 24px;
  }

  .offers-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .offer-card {
    grid-column: span 1 !important;
    min-height: 280px !important;
  }

  .gv2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .ticker {
    margin-top: 0 !important;
  }
}

/* Phones & Portrait Tablets (768px) */
@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .holo-grid {
    grid-template-columns: 1fr;
  }

  .tv2-cta-bar {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .tv2-cta-content {
    flex-direction: column;
  }

  .cta-layout {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-actions {
    width: 100%;
    justify-content: center;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .qb-compact {
    flex-direction: column;
  }

  .qb-compact-left {
    width: 100%;
    padding: 24px;
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
  }

  .qb-compact-form {
    width: 100%;
    padding: 24px;
  }
}

/* Small Devices (480px) */
@media (max-width: 480px) {

  .sp-action-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-hm-pulse-cta {
    justify-content: center;
  }

  .pricing-card {
    min-width: 100%;
    width: 100%;
    padding: 20px;
  }

  .offer-card {
    min-height: 260px !important;
    padding: 20px !important;
  }

  .offer-card-title {
    font-size: 18px !important;
  }

  .tv2-card {
    min-width: 100%;
    width: 100%;
  }

  .gv2-grid {
    grid-template-columns: 1fr;
  }

  .rv2-card {
    width: 280px;
    padding: 20px;
  }

  .rv2-trust {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .rv2-trust-badges {
    flex-direction: column;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}