/* =============================================
   TRIPLE A AUTO CENTER - Design System & Styles
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --color-bg-primary: #0a0a0f;
  --color-bg-secondary: #111118;
  --color-bg-tertiary: #1a1a24;
  --color-bg-card: rgba(20, 20, 30, 0.7);
  --color-bg-glass: rgba(255, 255, 255, 0.03);
  --color-bg-glass-hover: rgba(255, 255, 255, 0.06);

  --color-red-primary: #e52020;
  --color-red-light: #ff3b3b;
  --color-red-dark: #b81616;
  --color-red-glow: rgba(229, 32, 32, 0.3);
  --color-red-subtle: rgba(229, 32, 32, 0.08);

  --color-text-primary: #f0f0f5;
  --color-text-secondary: #8a8a9a;
  --color-text-muted: #555566;
  --color-text-accent: #e52020;

  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-hover: rgba(229, 32, 32, 0.3);

  --color-success: #22c55e;
  --color-warning: #f59e0b;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(229, 32, 32, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(229, 32, 32, 0.25);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

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

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ── Utility Classes ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-red-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-red-primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Animated Background Grid ── */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3; /* Positioned behind canvas and static backdrop */
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.08;
  pointer-events: none;
  z-index: -3; /* Positioned behind canvas and static backdrop */
}

.bg-glow--red {
  background: var(--color-red-primary);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.bg-glow--dark {
  background: #1a0a0a;
  bottom: -200px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 90px;
  background: transparent;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  height: 80px;
}

.navbar.scrolled .navbar__logo img {
  width: 280px !important;
  height: 280px !important;
  top: -125px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__logo {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1001;
  width: 280px; /* Reserves exactly 280px of space for the logo graphic */
  height: 100%;
}

.navbar__logo img {
  width: 280px !important;
  height: 280px !important;
  max-width: none !important;
  position: absolute;
  top: -120px;
  left: 0;
  transition: all var(--transition-base);
}

.navbar__logo:hover img {
  transform: scale(1.02);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.navbar__link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-text-secondary);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red-primary);
  transition: width var(--transition-base);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--color-text-primary);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-red-primary);
  color: white;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(229, 32, 32, 0.3);
}

.navbar__cta:hover {
  background: var(--color-red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(229, 32, 32, 0.4);
}

/* Mobile Nav Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 160px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3; /* Positioned behind the active video background */
  opacity: 0.15; /* Make the static image very faint to let the video show through */
  pointer-events: none;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.9) 0%,
    rgba(10, 10, 15, 0.6) 50%,
    rgba(10, 10, 15, 0.8) 100%
  );
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero__content {
  animation: slideUp 1s ease-out;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-red-subtle);
  border: 1px solid rgba(229, 32, 32, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-red-light);
  margin-bottom: var(--space-xl);
}

.hero__badge .dot {
  width: 8px;
  height: 8px;
  background: var(--color-red-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--space-xl);
  letter-spacing: -1px;
}

.hero__title span {
  display: block;
  background: linear-gradient(135deg, var(--color-red-primary), var(--color-red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-text-primary);
}

.hero__stat-value span {
  color: var(--color-red-primary);
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.hero__visual {
  position: relative;
  animation: slideUp 1s ease-out 0.2s both;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.hero__image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero__image-wrapper:hover img {
  transform: scale(1.05);
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.6) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero__float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  animation: floatCard 3s ease-in-out infinite;
}

.hero__float-card .rating {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-sm);
}

.hero__float-card .star {
  color: #fbbf24;
  font-size: 1.1rem;
}

.hero__float-card .rating-text {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.hero__float-card .rating-text strong {
  color: var(--color-text-primary);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: var(--color-red-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(229, 32, 32, 0.3);
}

.btn--primary::before {
  background: linear-gradient(135deg, var(--color-red-light), var(--color-red-primary));
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(229, 32, 32, 0.4);
}

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

.btn--outline:hover {
  border-color: var(--color-red-primary);
  color: var(--color-red-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn__icon {
  font-size: 1.1em;
  transition: transform var(--transition-base);
}

.btn:hover .btn__icon {
  transform: translateX(4px);
}

/* ── Services Section ── */
.services {
  padding: var(--space-4xl) 0;
  position: relative;
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.services__header .section-label {
  justify-content: center;
}

.services__header .section-subtitle {
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  position: relative;
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  group: true;
}

.service-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.service-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__image img {
  transform: scale(1.1);
}

.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.8) 0%,
    transparent 60%
  );
}

.service-card__body {
  padding: var(--space-lg);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red-subtle);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  transition: all var(--transition-base);
}

.service-icon {
  width: 24px;
  height: 24px;
  color: var(--color-red-primary);
  stroke: currentColor;
  transition: color var(--transition-base), transform var(--transition-base);
}

.service-card:hover .service-card__icon {
  background: var(--color-red-primary);
  box-shadow: 0 4px 15px rgba(229, 32, 32, 0.3);
}

.service-card:hover .service-icon {
  color: white;
}

/* Service Card Hover Micro-Animations */
.service-card--engine:hover .engine-piston,
.service-card--engine.active-mobile .engine-piston {
  animation: pistonStroke 0.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
.service-card--engine:hover .engine-block,
.service-card--engine.active-mobile .engine-block {
  animation: engineRev 0.12s linear infinite;
}

.service-card--brakes:hover .brake-disc,
.service-card--brakes.active-mobile .brake-disc {
  transform-origin: center;
  animation: discSpinAndBrake 2.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.service-card--oil:hover .oil-canister,
.service-card--oil.active-mobile .oil-canister {
  transform-origin: 5px 18px;
  animation: canisterTilt 1.2s ease-in-out infinite;
}
.service-card--oil:hover .oil-drip,
.service-card--oil.active-mobile .oil-drip {
  transform-origin: 12px 3px;
  animation: oilDropletDrip 1.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) infinite;
}

.service-card--tires:hover .tire-wheel,
.service-card--tires.active-mobile .tire-wheel {
  transform-origin: center;
  animation: wheelSpinSmooth 1.8s linear infinite;
}

.service-card--diagnostics:hover .diag-wave,
.service-card--diagnostics.active-mobile .diag-wave {
  stroke-dasharray: 40;
  animation: waveSignalSweep 1.5s linear infinite;
}

.service-card--safety:hover .safety-shield,
.service-card--safety.active-mobile .safety-shield {
  transform-origin: center;
  animation: shieldPulseGlow 1.2s ease-in-out infinite;
}
.service-card--safety:hover .safety-check,
.service-card--safety.active-mobile .safety-check {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: checkDrawIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

/* Micro-Animation Keyframes */
@keyframes pistonStroke {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes engineRev {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(0.5px, -0.5px); }
  50% { transform: translate(-0.5px, 0.5px); }
  75% { transform: translate(-0.5px, -0.5px); }
}
@keyframes discSpinAndBrake {
  0% { transform: rotate(0deg); }
  45% { transform: rotate(540deg); }
  75%, 100% { transform: rotate(720deg); }
}
@keyframes canisterTilt {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-18deg); }
}
@keyframes oilDropletDrip {
  0%, 25% { transform: translateY(0) scaleY(1); opacity: 0; }
  30% { opacity: 1; }
  75% { transform: translateY(12px) scaleY(1.4); opacity: 1; }
  90%, 100% { transform: translateY(16px) scaleY(0.8); opacity: 0; }
}
@keyframes wheelSpinSmooth {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes waveSignalSweep {
  from { stroke-dashoffset: 80; }
  to { stroke-dashoffset: 0; }
}
@keyframes shieldPulseGlow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(229, 32, 32, 0)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 6px var(--color-red-light)); }
}
@keyframes checkDrawIn {
  0%, 20% { stroke-dashoffset: 20; transform: scale(0.8); }
  50%, 100% { stroke-dashoffset: 0; transform: scale(1); }
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.service-card:hover .service-card__title {
  color: var(--color-red-light);
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ── Why Choose Us ── */
.why-us {
  padding: var(--space-4xl) 0;
  position: relative;
}

.why-us .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.why-us__features {
  display: grid;
  gap: var(--space-xl);
}

.feature-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-item:hover {
  background: var(--color-bg-glass-hover);
  border-color: var(--color-border-hover);
  transform: translateX(8px);
}

.feature-item__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red-subtle);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  transition: all var(--transition-base);
}

.feature-item:hover .feature-item__icon {
  background: var(--color-red-primary);
  box-shadow: 0 4px 15px rgba(229, 32, 32, 0.3);
}

.feature-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.feature-item__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.why-us__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.why-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

/* ── Booking Section ── */
.booking {
  padding: var(--space-4xl) 0;
  position: relative;
}

.booking .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.booking__info {
  padding-top: var(--space-xl);
}

.booking__info-cards {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.info-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.info-card:hover {
  border-color: var(--color-border-hover);
  background: var(--color-bg-glass-hover);
}

.info-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red-subtle);
  border-radius: var(--radius-md);
  font-size: 1.3rem;
}

.info-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 4px;
}

.info-card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.info-card--financing {
  border-color: rgba(34, 197, 94, 0.2);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(20, 20, 25, 0.4) 100%);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.05);
}

.info-card--financing:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 4px 30px rgba(34, 197, 94, 0.1);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(20, 20, 25, 0.5) 100%);
}

.financing-partner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 480px) {
  .financing-partner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.financing-partner__logo {
  display: flex;
  align-items: center;
}

.financing-partner__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.partner-link {
  color: #22d3ee;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition-base);
}

.partner-link:hover {
  color: #22c55e;
  text-decoration: underline;
}

.partner-phone {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  font-family: var(--font-display);
}

.partner-phone:hover {
  color: #22c55e;
}

/* Booking Form */
.booking__form-wrapper {
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.booking__form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.booking__form-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.3px;
}

.form-group label .required {
  color: var(--color-red-primary);
}

.form-control {
  padding: 14px 16px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  width: 100%;
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

.form-control:focus {
  border-color: var(--color-red-primary);
  box-shadow: 0 0 0 3px var(--color-red-subtle);
  background: var(--color-bg-tertiary);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8a9a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select.form-control option {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  margin-top: var(--space-lg);
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* ── Google Map Section ── */
.map-section {
  padding: 0 0 var(--space-4xl) 0;
  position: relative;
  z-index: 2;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  line-height: 0;
  position: relative;
}

.map-container iframe {
  filter: grayscale(0.9) invert(0.9) contrast(1.2);
  transition: filter var(--transition-base);
  display: block;
}

.map-container:hover iframe {
  filter: grayscale(0.2) invert(0.0) contrast(1.0);
}

/* ── Google Live Reviews CTA ── */
.testimonials__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-3xl);
  padding: var(--space-lg);
  background: var(--color-bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.google-badge__logo {
  font-size: 2.2rem;
  font-weight: 900;
  color: #4285F4; /* Google Blue */
  font-family: var(--font-display);
  text-shadow: 0 0 15px rgba(66, 133, 244, 0.25);
  user-select: none;
}

.google-badge__stars {
  color: #f59e0b; /* beautiful gold stars */
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.google-badge__text {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.testimonials__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.google-reviews-widget {
  margin-bottom: var(--space-3xl);
  width: 100%;
}

/* ── Testimonials ── */
.testimonials {
  padding: var(--space-4xl) 0;
  position: relative;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.testimonials__header .section-label {
  justify-content: center;
}

.testimonials__header .section-subtitle {
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--color-bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-lg);
}

.testimonial-card__stars .star {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.testimonial-card__avatar--1 { background: linear-gradient(135deg, #e52020, #ff6b6b); }
.testimonial-card__avatar--2 { background: linear-gradient(135deg, #2563eb, #60a5fa); }
.testimonial-card__avatar--3 { background: linear-gradient(135deg, #059669, #34d399); }

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ── CTA Section ── */
.cta {
  padding: var(--space-4xl) 0;
  position: relative;
}

.cta__card {
  background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-red-primary) 50%, #c41919 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(229, 32, 32, 0.2);
}

.cta__card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-conic-gradient(
    rgba(255, 255, 255, 0.03) 0deg 5deg,
    transparent 5deg 10deg
  );
  animation: rotateBg 60s linear infinite;
}

@keyframes rotateBg {
  to { transform: rotate(360deg); }
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  position: relative;
}

.cta__text {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
  position: relative;
}

.cta__actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.btn--white {
  background: white;
  color: var(--color-red-primary);
  font-weight: 700;
}

.btn--white:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ── Footer ── */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid var(--color-border);
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand img {
  height: 120px;
  width: auto;
  margin-bottom: var(--space-lg);
}

.footer__brand-text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--color-red-primary);
  border-color: var(--color-red-primary);
  transform: translateY(-3px);
}

.footer__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__link {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__link:hover {
  color: var(--color-red-primary);
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ── Scroll Animations ── */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal--scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Mouse Glow Card Effect ── */
.glow-card {
  position: relative;
  overflow: hidden;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(229, 32, 32, 0.12),
    transparent 80%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glow-card:hover::before {
  opacity: 1;
}

/* ── Magnetic & Smooth Translations on Buttons & Inputs ── */
.btn, .form-control, .feature-item, .info-card {
  transition: all var(--transition-base);
}

.form-control:focus {
  border-color: var(--color-red-primary);
  box-shadow: 0 0 20px rgba(229, 32, 32, 0.25);
  transform: translateY(-2px);
}


/* ── Modal / Success State ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  max-width: 450px;
  width: 90%;
  text-align: center;
  animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  font-size: 2.5rem;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.modal__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-red-dark);
}

/* ── Premium Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red-primary), var(--color-red-light), var(--color-red-primary));
  background-size: 200% 100%;
  z-index: 10002;
  width: 0%;
  box-shadow: 0 0 12px var(--color-red-glow), 0 0 4px var(--color-red-primary);
  animation: progressGlow 2s linear infinite;
  pointer-events: none;
}

@keyframes progressGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}



/* ── Interactive Particle Background Canvas ── */
.bg-particles {
  position: fixed;
  inset: 0;
  z-index: -1; /* Sits behind sections but in front of base background, video and grid */
  pointer-events: none;
}

/* ── Logo Metallic Shine Overlay ── */
.navbar__logo {
  overflow: visible;
}

.navbar__logo::before {
  content: '';
  position: absolute;
  top: -95px; /* Aligns with the logo graphic scale bounding box */
  left: -150%;
  width: 80px;
  height: 280px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 20%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.02) 80%,
    transparent 100%
  );
  transform: skewX(-25deg);
  z-index: 1002;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.navbar__logo:hover::before {
  animation: logoShineSweep 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes logoShineSweep {
  0% { left: -100px; }
  100% { left: 400px; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__description {
    margin: 0 auto var(--space-2xl);
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-items: center;
  }

  .hero__visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .why-us .container {
    grid-template-columns: 1fr;
  }

  .why-us__image {
    order: -1;
    max-height: 350px;
  }

  .booking .container {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }

  .navbar.scrolled {
    height: 70px;
  }

  .navbar__logo {
    width: 160px;
    height: 100%;
    position: relative;
  }

  .navbar__logo img {
    width: 160px !important;
    height: 160px !important;
    max-width: none !important;
    position: absolute !important;
    top: -45px !important;
    left: 0 !important;
  }

  .navbar.scrolled .navbar__logo img {
    width: 160px !important;
    height: 160px !important;
    top: -45px !important;
    left: 0 !important;
  }

  .hero {
    padding-top: 110px;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--color-bg-secondary);
    border-left: 1px solid var(--color-border);
    padding: 100px var(--space-2xl) var(--space-2xl);
    gap: var(--space-xl);
    transition: right var(--transition-base);
    z-index: 999;
  }

  .navbar__links.active {
    right: 0;
  }

  .navbar__toggle {
    display: flex;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .cta__card {
    padding: var(--space-2xl);
  }

  .hero__float-card {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Live Spots Telemetry Booking Widget ── */
.availability-widget {
  display: none !important;
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  transition: all var(--transition-base);
}

.availability-widget:hover {
  border-color: rgba(229, 32, 32, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  background: rgba(10, 10, 15, 0.6);
}

.availability-widget__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 6px;
  position: relative;
}

.availability-widget__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-text-muted);
  position: relative;
  transition: all var(--transition-base);
}

.availability-widget__pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.4;
  animation: widgetPulse 2s infinite;
}

@keyframes widgetPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Pulse states */
.availability-widget__pulse--idle {
  background: var(--color-text-muted);
}

.availability-widget__pulse--loading {
  background: #22d3ee;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
}

.availability-widget__pulse--available {
  background: var(--color-success);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.availability-widget__pulse--limited {
  background: var(--color-warning);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.availability-widget__pulse--full {
  background: var(--color-red-primary);
  box-shadow: 0 0 10px rgba(229, 32, 32, 0.6);
}

.availability-widget__title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.availability-widget__status {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-secondary);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.availability-widget__status--loading {
  background: rgba(34, 211, 238, 0.1);
  color: #22d3ee;
  border-color: rgba(34, 211, 238, 0.2);
}

.availability-widget__status--available {
  background: rgba(34, 197, 94, 0.1);
  color: var(--color-success);
  border-color: rgba(34, 197, 94, 0.2);
}

.availability-widget__status--limited {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
  border-color: rgba(245, 158, 11, 0.2);
}

.availability-widget__status--full {
  background: rgba(229, 32, 32, 0.1);
  color: var(--color-red-light);
  border-color: rgba(229, 32, 32, 0.2);
}

.availability-widget__info {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  transition: opacity 0.2s ease;
}

.availability-widget__bar-wrapper {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  animation: fadeIn 0.4s ease;
}

.availability-widget__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 500;
}

#availDateLabel {
  color: var(--color-text-primary);
  font-family: var(--font-display);
}

#availCountLabel {
  color: var(--color-text-secondary);
}

.availability-widget__bar {
  width: 100%;
  height: 6px;
  background: #060609;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.availability-widget__bar-fill {
  height: 100%;
  width: 0%;
  border-radius: var(--radius-full);
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s ease;
}

.availability-widget__bar-fill--loading {
  background: linear-gradient(90deg, #0891b2, #22d3ee, #0891b2);
  background-size: 200% 100%;
  animation: progressGlow 1.5s linear infinite;
}

.availability-widget__bar-fill--available {
  background: linear-gradient(90deg, #16a34a, #22c55e);
}

.availability-widget__bar-fill--limited {
  background: linear-gradient(90deg, #d97706, #f59e0b);
}

.availability-widget__bar-fill--full {
  background: linear-gradient(90deg, #dc2626, #ef4444);
}
