/* ==========================================================================
   RBO Motorsports - Las Vegas Spec Site Stylesheet
   Luxury Motorsports, Dark Theme, High-Conversion Automotive Design
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-body: #0b0d12;
  --bg-surface: #12161f;
  --bg-card: #161b26;
  --bg-card-hover: #1c2332;
  --bg-card-alt: #10141d;
  --bg-input: #0e121a;

  --border-subtle: #232a3a;
  --border-light: #2d374d;
  --border-focus: #ff2a3b;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Brand Accents */
  --red-primary: #e50914;
  --red-bright: #ff2a3b;
  --red-glow: rgba(229, 9, 20, 0.25);
  --red-glow-strong: rgba(255, 42, 59, 0.4);

  --gold-star: #fbbf24;
  --green-accent: #10b981;
  --blue-tesla: #00d4ff;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout & Spacing */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-body);
  color: var(--text-main);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--bg-body);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile sticky action bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-center {
  text-align: center;
}

/* Section Common Elements */
.section-pill {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.3);
  color: var(--red-bright);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Highlights */
.highlight-red {
  color: var(--red-bright);
}
.highlight-white {
  color: #ffffff;
}
.highlight-green {
  color: var(--green-accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-primary) 0%, #b8050e 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--red-glow);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--red-bright) 0%, var(--red-primary) 100%);
  box-shadow: 0 6px 26px var(--red-glow-strong);
  transform: translateY(-2px);
}

.btn-call {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.btn-call:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--red-bright);
  color: #ffffff;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */

.top-bar {
  background: #06070a;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.825rem;
  padding: 0.45rem 0;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--red-bright);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--red-bright);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.top-bar-right {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .top-bar-right {
    display: flex;
  }
}

.top-bar-link {
  color: #cbd5e1;
}
.top-bar-link:hover {
  color: var(--red-bright);
}

.top-bar-phone {
  color: #ffffff;
  font-weight: 700;
}
.top-bar-phone:hover {
  color: var(--red-bright);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 13, 18, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 44px;
  height: auto;
  border-radius: 4px;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-phone-header {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.btn-phone-header:hover {
  border-color: var(--red-bright);
}

.icon-phone {
  width: 16px;
  height: 16px;
  color: var(--red-bright);
}

@media (min-width: 768px) {
  .btn-phone-header {
    display: inline-flex;
  }
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  padding: 4px;
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Slideout Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #0f131a;
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 1.5rem 2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

.mobile-nav-link:hover {
  color: var(--red-bright);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 3.5rem 0 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  filter: brightness(0.65);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(18, 22, 31, 0.9);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.star-gold {
  color: var(--gold-star);
}
.badge-divider {
  color: var(--text-dim);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-subtitle strong {
  color: #ffffff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
}

@media (min-width: 576px) {
  .hero-proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.proof-card {
  display: flex;
  flex-direction: column;
}

.proof-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

.proof-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.3;
}

/* Hero Showcase Card */
.hero-showcase {
  display: flex;
  justify-content: center;
}

.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 480px;
  transition: var(--transition);
}

.showcase-card:hover {
  border-color: rgba(229, 9, 20, 0.4);
  transform: translateY(-4px);
}

.showcase-img-wrap {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-img {
  transform: scale(1.04);
}

.showcase-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.showcase-details {
  padding: 1.35rem;
}

.showcase-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.showcase-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.showcase-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.85rem;
}

.showcase-link {
  color: var(--red-bright);
  font-weight: 700;
}

/* Brands Bar */
.brands-bar {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.brands-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .brands-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.brands-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  filter: grayscale(0.2) opacity(0.85);
  transition: var(--transition);
}

.brand-item:hover {
  filter: grayscale(0) opacity(1);
}

.brand-item img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
  padding: 5rem 0;
  background-color: var(--bg-body);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--red-bright);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.featured-service {
  border-color: rgba(229, 9, 20, 0.45);
  background: linear-gradient(180deg, rgba(229, 9, 20, 0.08) 0%, var(--bg-card) 60%);
}

.service-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--red-primary);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
  margin-bottom: 1.25rem;
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.service-summary {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.service-bullets {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.service-bullets strong {
  color: #ffffff;
}

.service-action {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

.service-turnaround {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* ==========================================================================
   Tesla & EV Section
   ========================================================================== */

.tesla-section {
  padding: 3rem 0;
}

.tesla-card {
  background: linear-gradient(135deg, #0e121a 0%, #151b27 100%);
  border: 1px solid #233045;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-card);
}

@media (min-width: 992px) {
  .tesla-card {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.tesla-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .tesla-content {
    padding: 3.5rem 3rem;
  }
}

.pill-tesla {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.35);
  color: var(--blue-tesla);
}

.tesla-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.tesla-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.tesla-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .tesla-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.t-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.t-icon {
  font-size: 1.25rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.t-text {
  display: flex;
  flex-direction: column;
}

.t-text strong {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.t-text span {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.tesla-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tesla-image-wrap {
  position: relative;
  min-height: 300px;
}

.tesla-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tesla-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 13, 18, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.badge-sub {
  font-size: 0.8rem;
  color: var(--blue-tesla);
}

/* ==========================================================================
   Calculator Section
   ========================================================================== */

.calculator-section {
  padding: 5rem 0;
  background-color: var(--bg-body);
}

.calculator-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
  .calculator-wrapper {
    padding: 3.5rem 3rem;
  }
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 992px) {
  .calc-grid {
    grid-template-columns: 1.35fr 0.85fr;
  }
}

.calc-group {
  margin-bottom: 2rem;
}

.calc-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.pill-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.calc-pill {
  padding: 0.6rem 1.15rem;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.calc-pill:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.calc-pill.active {
  background: rgba(229, 9, 20, 0.15);
  border-color: var(--red-bright);
  color: #ffffff;
  box-shadow: 0 0 12px var(--red-glow);
}

.service-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .service-checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checkbox-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.checkbox-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.checkbox-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red-bright);
  margin-top: 2px;
  cursor: pointer;
}

.cb-content {
  display: flex;
  flex-direction: column;
}

.cb-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.cb-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.3;
}

/* Calculator Summary Box */
.calc-summary {
  position: relative;
}

.summary-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 90px;
}

.summary-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.5rem;
}

.summary-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.summary-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.s-label {
  color: var(--text-muted);
}
.s-val {
  font-weight: 600;
  color: #ffffff;
}

.summary-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================================================
   Financing Section
   ========================================================================== */

.financing-section {
  padding: 2rem 0 4rem;
}

.financing-banner {
  background: linear-gradient(135deg, #181112 0%, #1c1518 100%);
  border: 1px solid rgba(229, 9, 20, 0.35);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.12);
}

@media (min-width: 768px) {
  .financing-banner {
    padding: 3.5rem 3rem;
  }
}

.fin-badge-wrap {
  margin-bottom: 1.25rem;
}

.fin-badge {
  background: rgba(229, 9, 20, 0.2);
  border: 1px solid var(--red-bright);
  color: var(--red-bright);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}

.fin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .fin-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.fin-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.fin-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.fin-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .fin-perks {
    grid-template-columns: repeat(2, 1fr);
  }
}

.perk-item {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.fin-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.btn-snap {
  background: #ffffff;
  color: #0b0d12;
  font-weight: 800;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-snap:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.fin-callout {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.fin-logo-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.snap-logo-img {
  max-width: 220px;
  height: auto;
}

.fin-card-bottom {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.fin-card-bottom strong {
  color: #ffffff;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */

.gallery-section {
  padding: 5rem 0;
  background-color: var(--bg-body);
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 2.5rem 0 2rem;
}

.gallery-filter-btn {
  padding: 0.55rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.gallery-filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.gallery-filter-btn.active {
  background: var(--red-primary);
  border-color: var(--red-bright);
  color: #ffffff;
  box-shadow: 0 0 12px var(--red-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.gallery-item.hidden {
  display: none;
}

.g-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.g-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover .g-img-wrap img {
  transform: scale(1.06);
}

.g-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 13, 18, 0.95) 85%);
  padding: 2.5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
}

.g-cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red-bright);
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.g-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.g-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.gallery-more-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.ig-link {
  color: var(--red-bright);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.reviews-section {
  padding: 5rem 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.rating-badge-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  margin-top: 1rem;
}

.stars-row {
  color: var(--gold-star);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.rating-text strong {
  color: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.rev-stars {
  color: var(--gold-star);
  font-size: 1rem;
  letter-spacing: 2px;
}

.rev-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

.rev-avatar {
  width: 40px;
  height: 40px;
  background: rgba(229, 9, 20, 0.2);
  color: var(--red-bright);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 9, 20, 0.35);
}

.rev-meta {
  display: flex;
  flex-direction: column;
}

.rev-meta strong {
  font-size: 0.9rem;
  color: #ffffff;
}

.rev-meta span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.reviews-cta-box {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
  padding: 5rem 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--red-bright);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Contact & Location Section
   ========================================================================== */

.contact-section {
  padding: 5rem 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.contact-form-card,
.contact-details-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.form-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 576px) {
  .form-row.two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 10px var(--red-glow);
}

.form-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 0.25rem;
}

@media (min-width: 576px) {
  .form-checkboxes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cb-inline {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.cb-inline input[type="checkbox"] {
  accent-color: var(--red-bright);
}

.form-submit-row {
  margin-top: 0.5rem;
}

.form-status-msg {
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-status-msg.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--green-accent);
  color: #a7f3d0;
}

.form-status-msg.error {
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid var(--red-bright);
  color: #fca5a5;
}

/* Shop Details Card */
.shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--green-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.shop-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green-accent);
  border-radius: 50%;
}

.shop-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.shop-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.shop-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.info-icon {
  font-size: 1.25rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.info-text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.info-text strong {
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.info-text span {
  color: var(--text-muted);
  line-height: 1.4;
}

.phone-link-bold {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--red-bright);
}

.email-link {
  color: #ffffff;
  text-decoration: underline;
}

.dir-link {
  color: var(--red-bright);
  font-weight: 700;
  margin-top: 0.35rem;
  display: inline-block;
}

.text-sm {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.social-connect {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.sc-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.social-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.s-btn {
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.s-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: var(--red-bright);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #06080c;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 576px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.f-brand-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.f-logo {
  width: 36px;
  height: auto;
}

.f-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff;
}

.f-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.f-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.15rem;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.f-links a:hover {
  color: var(--red-bright);
}

.f-contact-line {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.f-contact-line a {
  color: var(--red-bright);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.f-credit a {
  color: var(--red-bright);
  font-weight: 700;
}

/* ==========================================================================
   Mobile Bottom Sticky Action Bar
   ========================================================================== */

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(11, 13, 18, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0.45rem 0.25rem calc(env(safe-area-inset-bottom, 0px) + 0.45rem);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.m-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.35rem 0.2rem;
  border-radius: var(--radius-sm);
}

.m-bar-btn svg {
  width: 20px;
  height: 20px;
}

.m-bar-btn.m-call {
  color: #ffffff;
  background: var(--red-primary);
  border-radius: var(--radius-md);
  margin: 0 2px;
}

.m-bar-btn.m-call svg {
  color: #ffffff;
}

.m-bar-btn:hover {
  color: #ffffff;
}
