/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #e85d04;
  --brand-dark: #c44d00;
  --brand-light: #ff7d3b;
  --dark: #111111;
  --dark-2: #181818;
  --dark-3: #202020;
  --dark-4: #282828;
  --border: rgba(255,255,255,0.08);
  --text: #e8e8f0;
  --text-muted: #8888a8;
  --white: #ffffff;
  --radius: 4px;
  --radius-sm: 2px;
  --shadow: 0 4px 32px rgba(0,0,0,0.4);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 64px;
}

html {
  font-size: 16px;
  overflow: hidden;
  scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== BOOK / PAGE-TURN SCROLL ===== */
body {
  overflow: hidden;
  height: 100vh;
}
#book {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page {
  height: 100vh;
  overflow: hidden;
  position: relative;
  contain: style;
  flex-shrink: 0;
}

/* Page curl shadow at top edge */
.page::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  z-index: 10;
  pointer-events: none;
}

/* Racing stripes across top of every page */
.race-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  z-index: 11;
  pointer-events: none;
}
.race-stripe::before,
.race-stripe::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--brand);
}
.race-stripe::before { top: 0; }
.race-stripe::after  { top: 5px; }

/* Page turning animation classes */
.page.turning-out {
  animation: pageFlipOut 0.6s cubic-bezier(0.77,0,0.175,1) forwards;
  transform-origin: top center;
  transform-style: preserve-3d;
  z-index: 2;
}
.page.turning-in {
  animation: pageFlipIn 0.6s cubic-bezier(0.77,0,0.175,1) forwards;
  transform-origin: top center;
  transform-style: preserve-3d;
  z-index: 1;
}

@keyframes pageFlipOut {
  0%   { transform: rotateX(0deg); opacity: 1; }
  100% { transform: rotateX(-15deg); opacity: 0.4; }
}
@keyframes pageFlipIn {
  0%   { transform: rotateX(15deg); opacity: 0.4; }
  100% { transform: rotateX(0deg); opacity: 1; }
}

/* Page number indicator */
.page-indicator {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
}
.page-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}
.page-dot.active {
  background: var(--brand-light);
  border-color: var(--brand-light);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255,125,59,0.6);
}

/* Scrollable content inside pages */
.page-inner {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
  position: relative;
}
.page-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,34,0,0.03) 60%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.page-inner::-webkit-scrollbar { width: 4px; }
.page-inner::-webkit-scrollbar-track { background: transparent; }
.page-inner::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section {
  padding: calc(var(--nav-h) + 16px) 0 16px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* ===== FOOTER PAGE ===== */
.footer-full {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 16px) 0 24px;
}
.footer-full-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 40px;
  margin-bottom: 28px;
}
.footer-brand-block .nav-logo.footer-logo { display: inline-block; margin-bottom: 10px; }
.footer-brand-block p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; max-width: 300px; margin-bottom: 16px; }
.footer-socials-block { display: flex; gap: 12px; }
.footer-socials-block a {
  width: 40px; height: 40px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-socials-block a:hover { border-color: var(--brand); color: var(--brand-light); }
.footer-socials-block svg { width: 18px; height: 18px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.875rem; }
.footer-col a { color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--brand-light); }
.footer-bottom-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-bottom-bar div { display: flex; gap: 20px; }
.footer-bottom-bar a { color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-bar a:hover { color: var(--text); }
@media (max-width: 768px) {
  .footer-full-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom-bar { flex-direction: column; gap: 12px; text-align: center; }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-light) 0%, #ff9a5c 50%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(255,34,0,0.35);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,34,0,0.5);
}
.btn-yellow {
  background: linear-gradient(135deg, #ffe03b, #f5c400);
  color: #1a1000;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(245,196,0,0.35);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,196,0,0.5);
}
.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-light); background: rgba(232,93,4,0.08); }
.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: transparent;
  padding: 10px 22px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand-light); }
.btn-nav {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,93,4,0.4); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 14px; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--brand);
  border: none;
  padding: 4px 16px;
  border-radius: 0;
  margin-bottom: 8px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.section-sub { font-size: 0.85rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; line-height: 1.5; }

/* ===== NAVBAR ===== */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(232,93,4,0.3);
  background: rgba(30,20,10,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-wrapper.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--brand);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--brand-light); }
.nav-logo-img { height: 48px; width: auto; display: block; object-fit: contain; }
.footer-logo-img { height: 64px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--brand-light); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 80px;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('IMG_3209.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(rgba(255,255,255,0.15) 0% 25%, transparent 0% 50%);
  background-size: 20px 20px;
  opacity: 0.03;
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,93,4,0.2) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,125,59,0.12) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.glow-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,196,0,0.07) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--brand-light);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* Animated car streak */
.hero-car-streak {
  position: absolute;
  bottom: 80px;
  left: -200px;
  font-size: 3rem;
  animation: carDrive 8s linear infinite;
  filter: drop-shadow(0 0 20px rgba(232,93,4,0.6));
  pointer-events: none;
}
.hero-car-streak::after {
  content: '';
  position: absolute;
  top: 50%; right: 100%;
  width: 120px; height: 2px;
  background: linear-gradient(to left, rgba(232,93,4,0.6), transparent);
  transform: translateY(-50%);
}
@keyframes carDrive {
  0%   { left: -200px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { left: calc(100% + 200px); opacity: 0; }
}
/* Orbiting rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,93,4,0.15);
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 500px; height: 500px; animation: ringRotate 20s linear infinite; }
.ring-2 { width: 720px; height: 720px; animation: ringRotate 30s linear infinite reverse; border-color: rgba(255,125,59,0.08); }
.ring-3 { width: 960px; height: 960px; animation: ringRotate 45s linear infinite; border-color: rgba(232,93,4,0.05); }
@keyframes ringRotate {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Floating shapes */
.hero-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 4px;
  opacity: 0.5;
}
.shape-1 { width: 8px; height: 8px; background: var(--brand-light); top: 20%; left: 15%; transform: rotate(45deg); opacity: 0.4; }
.shape-2 { width: 6px; height: 6px; background: #ffe03b; top: 30%; right: 12%; border-radius: 50%; opacity: 0.3; }
.shape-3 { display: none; }
.shape-4 { display: none; }

/* Eyebrow */
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand-light);
  margin-bottom: 16px;
  animation: fadeUp 0.6s ease both;
}

/* Word reveal */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px) skewY(6deg);
  animation: wordReveal 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: calc(var(--d) * 0.18s + 0.2s);
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0) skewY(0deg); }
}

.hero-title {
  position: relative;
  overflow: hidden;
}
.hero-title::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  skewX(-15deg);
  animation: titleShimmer 4s ease-in-out infinite;
  animation-delay: 1.5s;
  pointer-events: none;
}
@keyframes titleShimmer {
  0%   { left: -100%; }
  50%, 100% { left: 150%; }
}

/* Animated buttons */
.btn-animated { position: relative; overflow: hidden; }
.btn-animated::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  animation: btnShimmer 3s ease-in-out infinite;
}
@keyframes btnShimmer {
  0%   { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

/* Hero stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  animation: fadeUp 0.6s 0.6s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hero-stat-num { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--brand-light); }
.hero-stat span:last-child { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-stat-divider { width: 1px; height: 32px; background: var(--border); }

/* Floating IIS button */
.floating-iis {
  position: fixed;
  top: 0; left: 0;
  background: none;
  border: none;
  color: rgba(255,130,200,0.45);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 6px;
  z-index: 1;
  will-change: transform;
  letter-spacing: 0.05em;
  cursor: pointer;
  user-select: none;
  pointer-events: auto;
}
.floating-iis:hover { color: #ffb3e0; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-light);
  background: rgba(232,93,4,0.1);
  border: 1px solid rgba(232,93,4,0.25);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 36px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-subtitle {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 auto 28px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  animation: fadeUp 0.6s 0.4s ease both;
  flex-wrap: wrap;
}
.trust-logos { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.trust-item { color: var(--text); font-weight: 500; }
.trust-dot { color: var(--brand); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brand), transparent);
}

/* ===== SERVICES ===== */
.services {}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover {
  border-color: rgba(232,93,4,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.service-card.featured {
  background: linear-gradient(135deg, rgba(232,93,4,0.08) 0%, rgba(255,125,59,0.04) 100%);
  border-color: rgba(232,93,4,0.25);
}
.service-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-light);
  background: rgba(232,93,4,0.15);
  padding: 4px 10px;
  border-radius: 100px;
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(232,93,4,0.1);
  border: 1px solid rgba(232,93,4,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand-light);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-light);
  transition: gap var(--transition);
}
.service-link:hover { text-decoration: underline; }

/* ===== INVENTORY ===== */
.inventory {}

.inv-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.inv-panel {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 22px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.inv-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.inv-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.inv-dot-green { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.5); animation: pulseGreen 2s ease-in-out infinite; }
.inv-dot-red   { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,0.5); animation: pulseRed 2s ease-in-out infinite; }
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 4px rgba(34,197,94,0.4); transform: scale(1); }
  50%       { box-shadow: 0 0 12px rgba(34,197,94,0.9); transform: scale(1.25); }
}
@keyframes pulseRed {
  0%, 100% { box-shadow: 0 0 4px rgba(239,68,68,0.4); transform: scale(1); }
  50%       { box-shadow: 0 0 12px rgba(239,68,68,0.9); transform: scale(1.25); }
}
.inv-panel-title { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.inv-panel-count { font-size: 0.95rem; font-weight: 600; color: var(--brand-light); }
.inv-count-red   { color: #f87171; }

.inv-list { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.inv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.inv-item:last-child { border-bottom: none; }
a.inv-item:hover { background: rgba(255,255,255,0.04); }
.inv-item-sold { cursor: default; }
.inv-num { font-size: 0.9rem; font-weight: 700; color: var(--brand-light); min-width: 22px; }
.inv-item-sold .inv-num { color: var(--text-muted); }
.inv-item-info { flex: 1; }
.inv-name { display: block; font-size: 0.9rem; font-weight: 600; color: var(--white); }
.inv-struck { text-decoration: line-through; color: var(--text-muted); }
.inv-meta { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.inv-price { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--brand-light); white-space: nowrap; letter-spacing: 0.02em; }
.inv-price-sold { color: var(--text-muted); font-weight: 500; }
.inv-arrow { font-size: 1.1rem; color: var(--text-muted); }

.inv-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  margin-top: 4px;
}
.inv-view-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,93,4,0.4); }

@media (max-width: 768px) {
  .inv-panels { grid-template-columns: 1fr; }
}

/* Slider */
.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.slider-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  flex: 1;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}
.slider-btn:hover { border-color: var(--brand); color: var(--brand-light); }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  background: var(--brand-light);
  transform: scale(1.3);
}
.car-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(232,93,4,0.2);
}
.car-img {
  height: 120px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.car-img-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.car-img-2 { background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 50%, #2d4059 100%); }
.car-img-3 { background: linear-gradient(135deg, #1a1200 0%, #2d1e0f 50%, #3d2b1f 100%); }
/* Car silhouettes as CSS art */
.car-img::after {
  content: '🚗';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 52px;
  opacity: 0.4;
  filter: grayscale(1) brightness(2);
}
.car-img-3::after { content: '🛻'; }
.car-img-2::after { content: '🚙'; }
.car-badge-price {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}
.car-info { padding: 12px; }
.car-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.car-title-row h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.car-status {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
}
.car-status.available { background: rgba(34,197,94,0.15); color: #4ade80; }
.car-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.car-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 10px; }
.inventory-cta { text-align: center; margin-top: 10px; }
.inventory-cta p { color: var(--text-muted); margin-bottom: 8px; font-size: 0.8rem; }

/* ===== ABOUT ===== */
.about {}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-card-stack { position: relative; height: 360px; }
.about-card {
  position: absolute;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.about-card:hover { transform: translateY(-4px) !important; }
.about-card strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--white); }
.about-card span { font-size: 0.8rem; color: var(--text-muted); }
.ac-icon { font-size: 1.5rem; }
.ac-1 { top: 0; left: 0; right: 40px; }
.ac-2 { top: 100px; left: 40px; right: 0; border-color: rgba(232,93,4,0.25); }
.ac-3 { top: 200px; left: 0; right: 40px; }
.about-orb {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(232,93,4,0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
}
.about-text .section-title { text-align: left; margin-bottom: 16px; }
.about-text .section-tag { margin-bottom: 16px; }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.about-list svg { width: 18px; height: 18px; color: var(--brand-light); flex-shrink: 0; }

/* ===== STATS ===== */
.stats { padding: 40px 0 32px; min-height: unset; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover { border-color: rgba(232,93,4,0.3); transform: translateY(-4px); }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-light);
  display: inline;
}
.stat-suffix { display: inline; font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--brand); }
.stat-label { margin-top: 8px; font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 32px 0 48px; min-height: unset; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-card.featured { border-color: rgba(232,93,4,0.25); background: linear-gradient(135deg, rgba(232,93,4,0.06) 0%, transparent 100%); }
.testi-stars { color: var(--brand-light); font-size: 1.1rem; letter-spacing: 2px; }
.testi-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; font-style: italic; flex: 1; }
.testi-stars { font-size: 0.85rem; letter-spacing: 1px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: var(--white);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--white); font-weight: 600; }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, rgba(232,93,4,0.12) 0%, rgba(255,125,59,0.06) 100%);
  border-top: 1px solid rgba(232,93,4,0.15);
  border-bottom: 1px solid rgba(232,93,4,0.15);
  padding: 72px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-strip h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-strip p { color: var(--text-muted); font-size: 1rem; }

/* ===== CONTACT ===== */
.contact {}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.contact-info .section-title { text-align: left; font-size: clamp(1.2rem, 2.5vw, 1.7rem); margin-bottom: 8px; }
.contact-info .section-tag { margin-bottom: 8px; }
.contact-info > p { color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; font-size: 0.85rem; }
.contact-details { display: flex; flex-direction: column; gap: 10px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon {
  width: 36px; height: 36px;
  background: rgba(232,93,4,0.1);
  border: 1px solid rgba(232,93,4,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-light);
  flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; }
.contact-item strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--white); margin-bottom: 1px; }
.contact-item span { font-size: 0.78rem; color: var(--text-muted); }

/* Form */
.contact-form {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-group { display: flex; flex-direction: column; gap: 3px; }
.form-group label { font-size: 0.72rem; font-weight: 500; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 0.78rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(232,93,4,0.1); }
.form-group textarea { resize: vertical; min-height: 60px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  color: #4ade80;
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-links a svg { width: 18px; height: 18px; }
.social-links a:hover { border-color: var(--brand); color: var(--brand-light); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--brand-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-card:last-child { display: none; }
  .about-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 80px 32px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; padding: 12px 16px; }
  .nav-links .btn-nav { margin-top: 8px; font-size: 1rem; padding: 14px 28px; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .services-grid { grid-template-columns: 1fr; }
  .inventory-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card:last-child { display: flex; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ===== TAXI PAGE ===== */
.taxi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.taxi-feature {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 14px;
  transition: all var(--transition);
  text-align: center;
}
.taxi-feature:hover { border-color: rgba(232,93,4,0.3); transform: translateY(-2px); }
.taxi-feature .service-icon { width: 36px; height: 36px; margin: 0 auto 8px; }
.taxi-feature .service-icon svg { width: 18px; height: 18px; }
.taxi-feature h3 { font-size: 0.875rem; font-weight: 700; color: var(--white); margin: 8px 0 6px; }
.taxi-feature p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }
.taxi-reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
@media (max-width: 1024px) {
  .taxi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .taxi-grid { grid-template-columns: 1fr 1fr; }
  .taxi-reviews { grid-template-columns: 1fr; }
  .hero-title { white-space: normal; }
}

/* Right side nav */
.side-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.side-nav-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  cursor: pointer;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.side-nav-btn:hover {
  background: rgba(232,93,4,0.15);
  border-color: rgba(232,93,4,0.4);
  color: #ff7d3b;
}
.side-nav-btn.active {
  background: linear-gradient(135deg, #ff7d3b, #e85d04);
  border-color: transparent;
  color: #fff;
}
.side-nav-taxi.active {
  background: linear-gradient(135deg, #ffe03b, #f5c400);
  color: #1a1000;
}
@media (max-width: 768px) { .side-nav { display: none; } }
