:root {
  --bg: #070709;
  --bg-card: rgba(18, 18, 24, 0.65);
  --bg-card-hover: rgba(26, 26, 36, 0.85);
  --ink: #f5f4f0;
  --muted: #9e9b95;
  --line: rgba(255, 255, 255, 0.08);
  --line-glow: rgba(217, 37, 32, 0.4);
  --red: #d92520;
  --red-glow: rgba(217, 37, 32, 0.35);
  --blue: #00f0ff;
  --blue-glow: rgba(0, 240, 255, 0.3);
  --success: #00e676;
  --error: #ff3344;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ACCESSIBILITY & FOCUS STATES */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ==========================================
   PAGE LOADER & PROGRESS BAR
   ========================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050507;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-brand {
  font: 800 24px 'Manrope';
  letter-spacing: -1px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.loader-brand span { font-weight: 400; color: var(--muted); }
.loader-brand i { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px var(--red-glow); }
.loader-bar {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.loader-bar::after {
  content: '';
  position: absolute;
  left: -50%;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--red), var(--blue), transparent);
  animation: loaderMove 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes loaderMove {
  0% { left: -50%; }
  100% { left: 100%; }
}

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--blue));
  z-index: 1000;
  box-shadow: 0 0 10px var(--red-glow);
  transition: width 0.1s linear;
}

/* ==========================================
   AURORA & PARTICLE CANVAS
   ========================================== */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: 
    radial-gradient(circle at 15% 20%, rgba(217, 37, 32, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(0, 240, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(20, 20, 28, 0.5) 0%, var(--bg) 100%);
  animation: auroraPulse 12s ease-in-out infinite alternate;
}
@keyframes auroraPulse {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.cursor-dot {
  position: fixed;
  z-index: 999;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
  box-shadow: 0 0 12px var(--blue);
  transition: transform 0.08s linear, width 0.2s ease, height 0.2s ease;
}

/* ==========================================
   NAVIGATION BAR & MOBILE DRAWER
   ========================================== */
nav {
  height: 78px;
  padding: 0 5.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(7, 7, 9, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.3s ease;
}
nav:hover { border-bottom-color: rgba(255, 255, 255, 0.15); }

.logo {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
}
.logo span { font-weight: 400; color: #a5a29c; }
.logo i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin: 0 0 10px 4px;
  box-shadow: 0 0 8px var(--red);
}

.navlinks { display: flex; gap: 32px; }
.navlinks a, footer a {
  color: #b0adab;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.navlinks a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--blue);
  transition: width 0.3s var(--ease-out);
  box-shadow: 0 0 6px var(--blue);
}
.navlinks a:hover, .navlinks a.active, .navlinks a[aria-current="page"] {
  color: #fff;
}
.navlinks a:hover::after, .navlinks a.active::after, .navlinks a[aria-current="page"]::after {
  width: 100%;
}

.contact-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.contact-pill b { color: var(--blue); font-size: 14px; margin-left: 4px; transition: transform 0.3s ease; display: inline-block; }
.contact-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--blue);
  box-shadow: 0 0 20px var(--blue-glow);
  transform: translateY(-2px);
}
.contact-pill:hover b { transform: translate(2px, -2px); }

/* Mobile Menu Toggle Button */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: all 0.3s ease;
}
.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Drawer Overlay */
.mobile-menu-drawer {
  position: fixed;
  inset: 78px 0 0 0;
  z-index: 99;
  background: rgba(7, 7, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 40px 28px;
  gap: 24px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}
.mobile-menu-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-drawer a {
  font-size: 20px;
  font-weight: 600;
  color: #b0adab;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.mobile-menu-drawer a:hover, .mobile-menu-drawer a.active {
  color: #fff;
  transform: translateX(6px);
}
.mobile-menu-drawer .contact-pill {
  align-self: flex-start;
  margin-top: 16px;
  padding: 14px 28px;
  font-size: 13px;
}

/* ==========================================
   HERO CAR SHOT SECTION
   ========================================== */
.hero {
  height: 820px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, #161214 0%, #070709 70%);
  display: flex;
  align-items: center;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #070709 10%, rgba(7,7,9,0.85) 38%, transparent 70%), url('complete-car.png') 73% 53%/cover no-repeat;
  filter: saturate(0.95) contrast(1.1);
  transition: transform 0.1s linear;
}
.diagonal {
  position: absolute;
  pointer-events: none;
  transform: skewX(-22deg);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.diagonal-one {
  height: 120%;
  width: 180px;
  right: 32%;
  top: -10%;
  background: linear-gradient(90deg, transparent, rgba(217, 37, 32, 0.08));
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.hero-copy {
  position: relative;
  z-index: 2;
  margin-left: 8vw;
  max-width: 740px;
}
.kicker {
  font: 500 10px 'DM Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b0adab;
  margin: 0 0 22px;
  display: flex;
  align-items: center;
}
.kicker b {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--red);
  margin-right: 12px;
  box-shadow: 0 0 8px var(--red);
}
h1, h2, h3 { margin: 0; letter-spacing: -0.06em; }
h1 {
  font-size: clamp(54px, 7.6vw, 118px);
  line-height: 0.88;
  font-weight: 600;
  background: linear-gradient(180deg, #ffffff 40%, #b0b0b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
em { font-style: normal; color: var(--red); -webkit-text-fill-color: var(--red); text-shadow: 0 0 20px var(--red-glow); }
.lead {
  max-width: 420px;
  color: #a8a5a0;
  font-size: 15px;
  line-height: 1.7;
  margin: 30px 0;
}
.actions { display: flex; gap: 16px; }

.button {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 16px 24px;
  display: inline-flex;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}
.button span { font-size: 18px; transition: transform 0.3s var(--ease-out); }
.button.red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px var(--red-glow);
}
.button.red:hover {
  background: #f02b26;
  box-shadow: 0 12px 32px rgba(217, 37, 32, 0.5);
  transform: translateY(-2px);
}
.button.red:hover span { transform: translateX(6px); }

.button.ghost {
  color: #eee;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}
.button.ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.button.ghost:hover span { transform: translate(4px, 4px); }

.hero-meta {
  position: absolute;
  left: 8vw;
  bottom: 36px;
  right: 8vw;
  display: flex;
  justify-content: space-between;
  color: #7d7a76;
  font: 9px 'DM Mono', monospace;
  letter-spacing: 1.5px;
  z-index: 2;
}

/* Spec Card (3D Tilt & Glass) */
.spec-card {
  position: absolute;
  right: 7vw;
  bottom: 62px;
  width: 190px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.1s ease-out;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-sm);
}
.spec-card:hover {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7), 0 0 20px var(--blue-glow);
}
.spec-card > span, .spec-card small {
  font: 8px 'DM Mono', monospace;
  letter-spacing: 1px;
  color: #a5a7ae;
}
.spec-card strong {
  font-size: 42px;
  display: block;
  margin: 6px 0 0;
  font-weight: 700;
  line-height: 1;
}
.spec-card strong span { font-size: 15px; color: var(--blue); text-shadow: 0 0 10px var(--blue-glow); }
.spec-card p { font-size: 10px; color: #aaa; margin: 4px 0 0; }
.spec-card i { display: block; width: 100%; height: 1px; background: rgba(255, 255, 255, 0.1); margin: 14px 0; }

/* ==========================================
   SEAMLESS INFINITE MARQUEE
   ========================================== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-block: 1px solid var(--line);
  padding: 18px 0;
  font: 600 24px 'DM Mono', monospace;
  letter-spacing: -1px;
  color: #e5e2dc;
  background: rgba(10, 10, 14, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: moveMarquee 20s linear infinite;
  will-change: transform;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee i {
  font-style: normal;
  color: var(--red);
  margin: 0 24px;
  text-shadow: 0 0 10px var(--red-glow);
}
@keyframes moveMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================
   CONTENT SECTIONS & GLASS CARDS
   ========================================== */
.intro, .services, .projects { padding: 140px 8vw; position: relative; }

/* Intro / Diagnostics Section */
.intro {
  display: grid;
  grid-template-columns: 0.65fr 1.2fr;
  gap: 40px;
  background: radial-gradient(circle at 20% 30%, rgba(20, 20, 30, 0.6), var(--bg));
  border-bottom: 1px solid var(--line);
}
.intro h2, .services h2, .projects h2, .booking h2 {
  font-size: clamp(42px, 5.5vw, 85px);
  font-weight: 500;
  line-height: 0.92;
}
.intro > div > p {
  max-width: 420px;
  color: #aba8a2;
  font-size: 15px;
  line-height: 1.8;
  margin: 35px 0;
}
.numbers { grid-column: 2; display: flex; gap: 60px; }
.numbers div {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  flex: 1;
  transition: all 0.3s var(--ease-out);
}
.numbers div:hover {
  background: var(--bg-card-hover);
  border-color: rgba(217, 37, 32, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}
.numbers b { font-size: 40px; font-weight: 600; display: block; line-height: 1; }
.numbers b span { color: var(--red); text-shadow: 0 0 12px var(--red-glow); }
.numbers p { font-size: 10px !important; margin: 8px 0 0 !important; color: #888 !important; font-family: 'DM Mono'; text-transform: uppercase; letter-spacing: 1px; }

/* Services Section */
.services {
  position: relative;
  background: #0a0a0d;
  border-bottom: 1px solid var(--line);
}
.services::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 36%;
  height: 100%;
  background: linear-gradient(145deg, rgba(28, 28, 36, 0.4), rgba(8, 8, 12, 0.8));
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.services header, .service-list { position: relative; z-index: 2; }
.service-list { margin: 75px 0 0; border-top: 1px solid var(--line); }

.service-list article {
  display: grid;
  grid-template-columns: 70px 1fr 100px;
  gap: 25px;
  padding: 32px 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  background: rgba(15, 15, 20, 0.3);
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease-out);
  border-left: 2px solid transparent;
}
.service-list article:hover {
  padding-left: 36px;
  background: var(--bg-card-hover);
  border-left-color: var(--red);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}
.service-list > article > span { color: var(--red); font: 12px 'DM Mono', monospace; font-weight: 600; }
.service-list h3 { font-size: 26px; font-weight: 500; letter-spacing: -1px; color: #fff; }
.service-list p { font-size: 13px; color: #a6a39e; max-width: 520px; line-height: 1.6; margin: 8px 0 0; }
.service-list a, .text-link { color: #fff; text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; }
.service-list a b, .text-link b { color: var(--blue); font-size: 18px; margin-left: 8px; transition: transform 0.3s ease; display: inline-block; }
.service-list article:hover a b { transform: translate(4px, -2px); }

/* Workshop Red Story Section */
.story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: linear-gradient(135deg, #d92520 0%, #a81713 100%);
  position: relative;
  overflow: hidden;
}
.story-photo {
  min-height: 600px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.story:hover .story-photo img { transform: scale(1.04); }
.story-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(217, 37, 32, 0.4));
}
.story-photo span {
  position: absolute;
  bottom: 28px;
  left: 40px;
  z-index: 2;
  font: 9px 'DM Mono', monospace;
  letter-spacing: 2px;
  color: #fff;
}
.story-copy { align-self: center; padding: 70px 6vw 70px 2vw; }
.story-copy .kicker { color: #ffe0df; }
.story-copy .kicker b { background: #fff; box-shadow: 0 0 8px #fff; }
.story-copy em { color: #170606; -webkit-text-fill-color: #170606; text-shadow: none; }
.story-copy > p:not(.kicker) {
  font-size: 15px;
  line-height: 1.8;
  max-width: 400px;
  margin: 28px 0;
  color: #ffe4e2;
}

/* Projects Section */
.projects { background: #070709; border-bottom: 1px solid var(--line); }
.projects header { position: relative; }
.projects header .text-link { position: absolute; right: 0; bottom: 4px; }

.project-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  margin-top: 65px;
}
.project {
  height: 460px;
  position: relative;
  overflow: hidden;
  background: #121216;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transform-style: preserve-3d;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.project:hover {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}
.project::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9), transparent 60%);
  z-index: 1;
}
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.project:hover img { transform: scale(1.08); }
.project div { position: absolute; z-index: 2; bottom: 30px; left: 30px; }
.project span { font: 10px 'DM Mono', monospace; color: var(--blue); letter-spacing: 1px; }
.project h3 { font-size: 32px; font-weight: 500; margin-top: 8px; color: #fff; }
.project p { font-size: 12px; color: #c4c1bb; margin: 6px 0 0; }

/* Driver Notes / Quotes */
.quotes {
  padding: 120px 15vw;
  background: radial-gradient(circle at 50% 50%, rgba(20, 20, 28, 0.8), #070709);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.quotes .kicker { display: inline-flex; }
.quotes blockquote {
  font-size: clamp(27px, 3.4vw, 51px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -2px;
  margin: 28px auto 36px;
  max-width: 980px;
  color: #fff;
}
.quotes div { display: flex; justify-content: center; gap: 26px; font: 10px 'DM Mono', monospace; letter-spacing: 1.5px; }
.quotes span { color: var(--red); letter-spacing: 3px; text-shadow: 0 0 10px var(--red-glow); }

/* Booking Section */
.booking {
  padding: 135px 8vw;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 12vw;
  background: radial-gradient(circle at 80% 50%, rgba(33, 16, 15, 0.4), #070709);
  position: relative;
}
.booking::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 32%;
  height: 100%;
  background: linear-gradient(rgba(217, 37, 32, 0.12), transparent);
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.booking-title, .booking form { position: relative; z-index: 2; }
.booking-title > p:not(.kicker) { font-size: 14px; color: #aaa; line-height: 1.7; max-width: 380px; margin: 26px 0; }
.details { margin-top: 50px; }
.details p { font: 12px 'DM Mono', monospace; margin: 12px 0; color: #e0deda; }
.details span { display: inline-block; width: 75px; color: var(--blue); font-size: 10px; letter-spacing: 1px; }

/* FORM & INLINE VALIDATION STYLES */
form {
  background: var(--bg-card);
  padding: 36px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease;
}
form:hover { border-color: rgba(217, 37, 32, 0.4); }

.field-group {
  margin-bottom: 24px;
  position: relative;
}
label { font: 9px 'DM Mono', monospace; color: #b9b6b0; display: block; margin-bottom: 8px; letter-spacing: 1px; }

input, select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 0 12px;
  background: transparent;
  color: #fff;
  outline: 0;
  font: 14px 'Manrope', sans-serif;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
input:focus, select:focus { border-bottom-color: var(--blue); }
input.invalid, select.invalid { border-bottom-color: var(--error) !important; }
input.valid, select.valid { border-bottom-color: var(--success) !important; }

select option { background: #15151b; color: #fff; }

.field-error {
  display: block;
  font: 9px 'DM Mono', monospace;
  color: var(--error);
  margin-top: 6px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  height: 0;
  overflow: hidden;
}
.field-error.visible {
  opacity: 1;
  transform: translateY(0);
  height: auto;
  margin-top: 6px;
}

form button {
  border: 0;
  background: var(--red);
  color: #fff;
  width: 100%;
  padding: 18px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 8px 24px var(--red-glow);
}
form button:hover {
  background: #f02b26;
  box-shadow: 0 12px 32px rgba(217, 37, 32, 0.5);
  transform: translateY(-2px);
}
form button span { float: right; font-size: 20px; transition: transform 0.3s ease; }
form button:hover span { transform: translateX(6px); }

/* TOAST NOTIFICATION BANNER */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: rgba(18, 22, 28, 0.95);
  border: 1px solid var(--success);
  border-left: 4px solid var(--success);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(16px);
  color: #fff;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 230, 118, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}
.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.toast-notification strong { font-size: 13px; font-weight: 600; display: block; }
.toast-notification p { font-size: 11px; color: #a0a0a0; margin: 2px 0 0; }

/* Footer */
footer {
  height: 100px;
  padding: 0 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  background: #050507;
}
footer p { font-size: 11px; color: #777; font-family: 'DM Mono'; }
footer div { display: flex; gap: 24px; }
footer a { font-size: 11px; }

/* SCROLL REVEAL ANIMATIONS */
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; }
  .numbers { grid-column: 1; }
  .story { grid-template-columns: 1fr; }
  .booking { grid-template-columns: 1fr; gap: 60px; }
}

/* ==========================================
   PAGE SLIDE HORIZONTAL TRANSITION CURTAIN
   ========================================== */
.page-slide-curtain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: linear-gradient(135deg, #0d0d12 0%, #d92520 100%);
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.page-slide-curtain.slide-active {
  transform: translateX(0%);
}
.page-slide-curtain.slide-out {
  transform: translateX(-100%);
}

/* ==========================================
   DEDICATED SERVICES PAGE STYLES
   ========================================== */
.services-hero {
  padding: 160px 8vw 80px;
  background: radial-gradient(ellipse at 80% 30%, rgba(217, 37, 32, 0.15), var(--bg));
  border-bottom: 1px solid var(--line);
}
.breadcrumbs {
  font: 11px 'DM Mono', monospace;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumbs a { color: var(--blue); text-decoration: none; }
.breadcrumbs span { margin: 0 8px; opacity: 0.5; }
.breadcrumbs strong { color: #fff; }

.hero-badges {
  display: flex;
  gap: 40px;
  margin-top: 45px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.badge-item span {
  display: block;
  font: 9px 'DM Mono', monospace;
  color: var(--muted);
  letter-spacing: 1px;
}
.badge-item strong {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
  display: block;
}

/* Services Suite Directory */
.services-suite, .workflow, .why-us, .tech-suite, .faqs {
  padding: 120px 8vw;
  border-bottom: 1px solid var(--line);
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.suite-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 36px 30px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: all 0.35s var(--ease-out);
}
.suite-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--blue-glow);
  transform: translateY(-6px);
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.card-icon { font-size: 32px; }
.card-num { font: 10px 'DM Mono', monospace; color: var(--red); letter-spacing: 1px; }
.suite-card h3 { font-size: 24px; font-weight: 600; color: #fff; margin: 0 0 12px; }
.suite-card p { font-size: 13px; color: #aba8a2; line-height: 1.6; margin: 0 0 24px; }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.feature-list li {
  font-size: 12px;
  color: #ccc;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-list li span { color: var(--blue); font-weight: 700; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: auto;
}
.pricing small { font: 9px 'DM Mono', monospace; color: #888; display: block; }
.pricing strong { font-size: 22px; font-weight: 700; color: #fff; }
.pricing strong span { font-size: 11px; font-weight: 400; color: #aaa; }

/* Workflow Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.process-step {
  background: rgba(18, 18, 24, 0.4);
  border: 1px solid var(--line);
  padding: 32px 24px;
  border-radius: var(--radius-sm);
  position: relative;
}
.step-num {
  font: 36px 'DM Mono', monospace;
  font-weight: 700;
  color: var(--red);
  opacity: 0.8;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 20px; font-weight: 600; color: #fff; margin: 0 0 10px; }
.process-step p { font-size: 13px; color: #a0a0a0; line-height: 1.6; margin: 0; }

/* Why Choose Us Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 32px 24px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease-out);
}
.why-card:hover {
  border-color: rgba(217, 37, 32, 0.4);
  transform: translateY(-4px);
}
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-size: 19px; font-weight: 600; color: #fff; margin: 0 0 8px; }
.why-card p { font-size: 13px; color: #999; line-height: 1.6; margin: 0; }

/* Technology Suite Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.tech-card {
  background: #0d0d12;
  border: 1px solid var(--line);
  padding: 32px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.tech-card:hover { border-color: var(--blue); box-shadow: 0 0 16px var(--blue-glow); }
.tech-tag { font: 9px 'DM Mono', monospace; color: var(--blue); letter-spacing: 1px; display: block; margin-bottom: 12px; }
.tech-card h3 { font-size: 20px; font-weight: 600; color: #fff; margin: 0 0 10px; }
.tech-card p { font-size: 13px; color: #aaa; line-height: 1.6; margin: 0; }

/* Interactive FAQ Accordions */
.faq-accordion {
  max-width: 860px;
  margin: 60px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.active { border-color: rgba(255, 255, 255, 0.25); }

.faq-question {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: 0;
  color: #fff;
  font: 600 17px 'Manrope', sans-serif;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: 0;
}
.faq-toggle-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.3s var(--ease-out);
}
.faq-item.active .faq-toggle-icon { transform: rotate(45deg); color: var(--red); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 24px;
}
.faq-answer p { font-size: 14px; color: #a5a5a5; line-height: 1.7; margin: 0; }

/* Call to Action Banner */
.cta-banner {
  margin: 80px 8vw 120px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(217, 37, 32, 0.2) 0%, rgba(18, 18, 24, 0.9) 100%);
  border: 1px solid rgba(217, 37, 32, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(16px);
}
.cta-banner h2 { font-size: 36px; font-weight: 600; color: #fff; margin: 8px 0; }
.cta-banner p { font-size: 14px; color: #ccc; margin: 0; }

/* ==========================================
   ADMIN LOGIN & DASHBOARD STYLES
   ========================================== */
.admin-login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}
.admin-login-wrapper {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 2;
}
.admin-login-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7);
}
.admin-subtitle { font: 9px 'DM Mono', monospace; color: var(--muted); letter-spacing: 1px; margin: 8px 0 0; }
.admin-login-badge {
  background: rgba(217, 37, 32, 0.12);
  border: 1px solid rgba(217, 37, 32, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}
.admin-login-badge span { font: 8px 'DM Mono', monospace; color: var(--red); display: block; }
.admin-login-badge strong { font-size: 11px; color: #fff; font-family: 'DM Mono'; }

.password-wrapper { position: relative; }
.password-wrapper button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #aaa;
  cursor: pointer;
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  font-size: 11px;
}
.checkbox-label { font-size: 11px; color: #aaa; display: flex; align-items: center; gap: 8px; }
.demo-hint { font: 9px 'DM Mono', monospace; color: var(--blue); }

.login-error-badge {
  background: rgba(255, 51, 68, 0.15);
  border: 1px solid var(--error);
  color: #ff6677;
  padding: 10px;
  border-radius: var(--radius-sm);
  font: 11px 'DM Mono', monospace;
  margin-bottom: 20px;
  display: none;
}
.login-error-badge.visible { display: block; }

.admin-login-footer { margin-top: 24px; text-align: center; font-size: 11px; }
.admin-login-footer a { color: var(--muted); text-decoration: none; }
.admin-login-footer a:hover { color: #fff; }

/* Admin Executive Layout */
.admin-page { background: #050508; color: #f0f0f5; }
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }

.admin-sidebar {
  background: #09090d;
  border-right: 1px solid var(--line);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  position: sticky;
  top: 0;
}
.sidebar-header { margin-bottom: 40px; }
.admin-tag { font: 8px 'DM Mono', monospace; background: rgba(0, 240, 255, 0.1); color: var(--blue); padding: 4px 8px; border-radius: 4px; display: inline-block; margin-top: 8px; }

.admin-nav { display: flex; flex-direction: column; gap: 8px; }
.admin-nav-btn {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: #a0a0aa;
  font: 600 12px 'Manrope', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease;
}
.admin-nav-btn:hover, .admin-nav-btn.active {
  background: var(--bg-card-hover);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}
.badge-count {
  margin-left: auto;
  background: var(--red);
  color: #fff;
  font: 9px 'DM Mono', monospace;
  padding: 2px 6px;
  border-radius: 10px;
}

.sidebar-footer { border-top: 1px solid var(--line); padding-top: 20px; }
.admin-profile { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.admin-profile .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: #fff; font: 700 12px 'Manrope'; display: flex; align-items: center; justify-content: center; }
.admin-profile strong { display: block; font-size: 12px; color: #fff; }
.admin-profile small { font: 9px 'DM Mono', monospace; color: #777; }
.logout-btn { width: 100%; padding: 10px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); color: #ccc; border-radius: 4px; font-size: 11px; cursor: pointer; }
.logout-btn:hover { background: rgba(255, 51, 68, 0.2); color: #fff; border-color: var(--error); }

/* Main Content Area */
.admin-main { padding: 40px; background: #07070a; overflow-y: auto; }
.admin-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.admin-header h1 { font-size: 32px; font-weight: 700; color: #fff; margin: 0; }
.admin-header p { font-size: 13px; color: #888; margin: 6px 0 0; }
.header-right { display: flex; gap: 16px; }

.admin-tab { display: none; }
.admin-tab.active { display: block; }

/* KPI Grid */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 36px; }
.kpi-card { background: var(--bg-card); border: 1px solid var(--line); padding: 24px; border-radius: var(--radius-sm); backdrop-filter: blur(12px); }
.kpi-card span { font: 9px 'DM Mono', monospace; color: #888; display: block; letter-spacing: 1px; }
.kpi-card strong { font-size: 36px; font-weight: 700; color: #fff; display: block; margin: 8px 0; }
.kpi-card .trend { font-size: 10px; color: #aaa; }
.kpi-card .trend.positive { color: var(--success); }
.kpi-card .trend.warning { color: var(--red); }

/* Dashboard Grid & Chart Mock */
.dashboard-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; }
.dashboard-card { background: var(--bg-card); border: 1px solid var(--line); padding: 28px; border-radius: var(--radius-sm); margin-bottom: 24px; }
.dashboard-card h3 { font-size: 18px; font-weight: 600; color: #fff; margin: 0 0 20px; }

.chart-mock { display: flex; align-items: flex-end; justify-content: space-between; height: 180px; padding-top: 20px; border-bottom: 1px solid var(--line); }
.chart-bar { flex: 1; margin: 0 8px; background: rgba(255, 255, 255, 0.1); height: var(--h); border-radius: 4px 4px 0 0; position: relative; transition: background 0.3s ease; }
.chart-bar.active { background: var(--red); box-shadow: 0 0 12px var(--red-glow); }
.chart-bar span { position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%); font: 9px 'DM Mono', monospace; color: #777; }

.activity-timeline { list-style: none; padding: 0; margin: 0; }
.activity-timeline li { border-left: 2px solid var(--red); padding-left: 16px; margin-bottom: 18px; }
.activity-time { font: 9px 'DM Mono', monospace; color: var(--blue); display: block; }
.activity-timeline p { font-size: 12px; color: #ccc; margin: 4px 0 0; }

/* Admin Data Table */
.table-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; gap: 20px; }
.search-box input { width: 320px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 14px; color: #fff; }
.filter-pills { display: flex; gap: 10px; }
.filter-pills .pill { background: transparent; border: 1px solid var(--line); color: #888; padding: 8px 16px; border-radius: 20px; font-size: 11px; cursor: pointer; }
.filter-pills .pill.active { background: var(--blue); color: #000; font-weight: 700; border-color: var(--blue); }

.table-responsive { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 13px; }
.admin-table th { font: 9px 'DM Mono', monospace; color: #888; letter-spacing: 1px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: rgba(0, 0, 0, 0.2); }
.admin-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); color: #ddd; vertical-align: middle; }
.admin-table tr:hover { background: rgba(255, 255, 255, 0.02); }
.unread-row { background: rgba(217, 37, 32, 0.05); }

.tag-cat { font: 9px 'DM Mono', monospace; background: rgba(0, 240, 255, 0.1); color: var(--blue); padding: 3px 8px; border-radius: 4px; }
.status-btn { border: 0; padding: 6px 12px; border-radius: 12px; font: 10px 'DM Mono', monospace; cursor: pointer; }
.status-btn.active { background: rgba(0, 230, 118, 0.15); color: var(--success); }
.status-btn.inactive { background: rgba(255, 51, 68, 0.15); color: var(--error); }
.status-btn.featured { background: rgba(217, 37, 32, 0.2); color: var(--red); font-weight: 700; }
.status-btn.read { background: rgba(255, 255, 255, 0.08); color: #888; }
.status-btn.unread { background: var(--red); color: #fff; }

.action-btns { display: flex; gap: 8px; }
.btn-sm { padding: 6px 10px; border-radius: 4px; border: 1px solid var(--line); background: transparent; color: #ccc; font-size: 11px; cursor: pointer; }
.btn-sm.edit:hover { border-color: var(--blue); color: var(--blue); }
.btn-sm.delete:hover { border-color: var(--error); color: var(--error); }

/* Admin Modal */
.admin-modal { position: fixed; inset: 0; z-index: 9999; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(12px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
.admin-modal.open { opacity: 1; visibility: visible; }
.modal-content { background: #0f0f15; border: 1px solid var(--line); border-top: 3px solid var(--red); width: 100%; max-width: 600px; padding: 32px; border-radius: var(--radius-md); max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 48px rgba(0,0,0,0.8); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
.modal-header h3 { font-size: 20px; font-weight: 600; color: #fff; margin: 0; }
.modal-close { background: transparent; border: 0; color: #aaa; font-size: 24px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; }
.modal-footer { display: flex; justify-content: flex-end; gap: 12px; margin-top: 24px; border-top: 1px solid var(--line); padding-top: 20px; }

/* Media Grid */
.upload-dropzone { border: 2px dashed rgba(255, 255, 255, 0.2); padding: 40px; text-align: center; border-radius: var(--radius-md); cursor: pointer; transition: border-color 0.3s ease; }
.upload-dropzone:hover { border-color: var(--blue); background: rgba(0, 240, 255, 0.02); }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
.media-item { background: #121218; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.media-item img { width: 100%; height: 130px; object-fit: cover; }
.media-info { padding: 12px; }
.media-info strong { display: block; font-size: 12px; color: #fff; }
.media-info small { font: 9px 'DM Mono'; color: #777; }

/* ==========================================
   SERVICE DETAILS PAGE STYLES
   ========================================== */
.service-detail-hero { padding: 160px 8vw 60px; background: radial-gradient(ellipse at 70% 20%, rgba(0, 240, 255, 0.12), var(--bg)); border-bottom: 1px solid var(--line); }
.detail-tag-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.service-detail-body { padding: 100px 8vw; }
.detail-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
.detail-description-text { font-size: 16px; color: #bbb; line-height: 1.8; margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }
.mt-10 { margin-top: 10px; }
.w-100 { width: 100%; }

.detail-sidebar-card { background: var(--bg-card); border: 1px solid var(--line); border-top: 3px solid var(--blue); padding: 36px; border-radius: var(--radius-md); backdrop-filter: blur(16px); position: sticky; top: 120px; }
.detail-price-box { margin: 20px 0 30px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.detail-price-box small { font: 9px 'DM Mono'; color: #888; display: block; }
.detail-price-box strong { font-size: 42px; font-weight: 700; color: #fff; }
.detail-price-box span { font-size: 14px; color: var(--blue); }

.detail-meta-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.meta-row { display: flex; justify-content: space-between; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }
.meta-row span { color: #888; font-family: 'DM Mono'; }
.meta-row strong { color: #fff; }

/* ==========================================
   ENTERPRISE SAAS ADMIN DESIGN SYSTEM & AUDIT
   ========================================== */
:root {
  --admin-space-xs: 8px;
  --admin-space-sm: 16px;
  --admin-space-md: 24px;
  --admin-space-lg: 32px;
  --admin-input-height: 42px;
  --admin-border: rgba(255, 255, 255, 0.08);
  --admin-border-hover: rgba(255, 255, 255, 0.2);
}

/* Admin Mobile Sidebar Backdrop */
.admin-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.admin-sidebar-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* Top Navbar Search & Actions Bar */
.admin-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--admin-border);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Sidebar Toggle Button */
.admin-mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--admin-border);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}
.admin-mobile-toggle:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); }

/* Dropdown Menu Popovers */
.dropdown-wrapper { position: relative; }
.popover-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 1000;
  width: 260px;
  background: #111118;
  border: 1px solid var(--admin-border);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.popover-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.popover-header { font: 9px 'DM Mono', monospace; color: var(--muted); padding: 8px 12px; border-bottom: 1px solid var(--admin-border); margin-bottom: 8px; }
.popover-item {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  color: #ccc;
  font-size: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.popover-item:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

.notification-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--admin-border);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.notification-btn:hover { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.1); }
.noti-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}

/* Sticky Header & Pagination Bar */
.sticky-table-container {
  max-height: 520px;
  overflow-y: auto;
  border: 1px solid var(--admin-border);
  border-radius: var(--radius-sm);
}
.sticky-table-container table th {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #0d0d14;
  box-shadow: 0 1px 0 var(--admin-border);
}

.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(18, 18, 24, 0.6);
  border: 1px solid var(--admin-border);
  border-top: 0;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font: 11px 'DM Mono', monospace;
  color: var(--muted);
}
.pagination-controls { display: flex; gap: 8px; align-items: center; }
.page-btn {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--admin-border);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  transition: all 0.2s ease;
}
.page-btn:hover:not(:disabled) { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.3); }
.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* Empty State Cards */
.empty-state-card {
  padding: 60px 24px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--admin-border);
  border-radius: var(--radius-sm);
  color: var(--muted);
}
.empty-state-icon { font-size: 42px; margin-bottom: 12px; display: block; }
.empty-state-card h4 { font-size: 18px; font-weight: 600; color: #fff; margin: 0 0 6px; }
.empty-state-card p { font-size: 13px; color: #888; margin: 0; }

/* Modal Body Scroll Lock */
body.modal-open { overflow: hidden !important; }

@media (max-width: 900px) {
  .admin-mobile-toggle { display: flex; }
  .admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.35s var(--ease-out);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.8);
  }
  .admin-sidebar.open { transform: translateX(0%); }
  .admin-main { padding: 24px 16px; }
}





