/*
Theme Name: RA3 Auto Locksmith Premium
Theme URI: http://ra3auto.local/
Author: Antigravity Pair Programmer
Description: Thème vitrine premium sur-mesure pour serrurier automobile (RA3) incluant un simulateur interactif de remboursement par assurances cartes bancaires / auto.
Version: 1.0.2
Text Domain: ra3-theme
*/

:root {
  /* Colors */
  --bg-main: #09090b;
  --bg-card: #121215;
  --bg-card-hover: #16161c;
  --border-light: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(255, 204, 0, 0.12);
  
  --accent-yellow: #ffcc00;
  --accent-yellow-hover: #ffd633;
  --accent-yellow-glow: rgba(255, 204, 0, 0.35);
  
  --success-green: #10b981;
  --success-green-bg: rgba(16, 185, 129, 0.08);
  --success-green-border: rgba(16, 185, 129, 0.25);
  
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #646470;
  
  /* Fonts */
  --font-main: 'Outfit', sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}

/* Base Styles & Carbon Mesh Pattern */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% -20%, rgba(255, 204, 0, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(59, 130, 246, 0.04) 0%, transparent 40%),
    linear-gradient(45deg, #111115 25%, transparent 25%) -6px 0,
    linear-gradient(-45deg, #111115 25%, transparent 25%) -6px 0,
    linear-gradient(45deg, transparent 75%, #111115 75%),
    linear-gradient(-45deg, transparent 75%, #111115 75%);
  background-size: 100% 100%, 100% 100%, 12px 12px, 12px 12px, 12px 12px, 12px 12px;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

/* Background Glow Effects */
.glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
}

.glow-sphere.color-1 {
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background-color: var(--accent-yellow);
}

.glow-sphere.color-2 {
  top: 500px;
  left: -200px;
  width: 600px;
  height: 600px;
  background-color: #3b82f6;
}

/* Premium Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-yellow);
  color: #000000;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px var(--accent-yellow-glow);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  background-color: var(--accent-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 204, 0, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--text-primary);
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  border: 1px solid var(--text-primary);
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-primary.full-width, .btn-secondary.full-width {
  width: 100%;
}

.glow-button {
  box-shadow: 0 0 20px var(--accent-yellow-glow);
}

/* Pulse animation */
.pulse-btn {
  position: relative;
}

.pulse-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255, 204, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

/* Sticky Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  display: flex;
  align-items: center;
}

.header-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Custom logo design matching mockup */
.logo {
  cursor: pointer;
}

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.logo-main {
  display: flex;
  align-items: center;
}

.logo-italic {
  font-size: 2.1rem;
  font-weight: 800;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: -0.05em;
}

.logo-accent {
  font-size: 2.1rem;
  color: var(--accent-yellow);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.logo-key-blade {
  width: 42px;
  height: 15px;
  color: var(--accent-yellow);
  margin-left: -2px; /* pulls closer to the 3 */
  filter: drop-shadow(0 0 6px rgba(255, 204, 0, 0.5));
}

.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: var(--text-primary);
  opacity: 0.75;
  margin-top: 3px;
  font-family: var(--font-main);
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  gap: 2.2rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent-yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-snap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fffc00;
  color: #000000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.btn-snap:hover {
  background-color: #e6e300;
  transform: scale(1.05);
}

.icon-snap {
  width: 15px;
  height: 15px;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent-yellow);
  color: #000000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  border-radius: 20px;
  transition: all 0.2s ease;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

.icon-phone {
  width: 15px;
  height: 15px;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--bg-card);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 100px 2rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  border-left: 1px solid var(--border-light);
}

.mobile-nav-overlay.active { right: 0; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.nav-divider {
  border: none;
  height: 1px;
  background-color: var(--border-light);
  margin: 1rem 0;
}

.mobile-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--accent-yellow);
  color: #000;
  padding: 0.8rem;
  border-radius: 30px;
  font-weight: 700;
  text-align: center;
}

.mobile-cta-snap {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fffc00;
  color: #000;
  padding: 0.8rem;
  border-radius: 30px;
  font-weight: 700;
  text-align: center;
}

.mobile-cta-tiktok {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #010101;
  color: #fff;
  padding: 0.8rem;
  border-radius: 30px;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
}

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

/* Hero */
.hero-section {
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 6rem;
  position: relative;
}

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

.badge-promo {
  display: inline-block;
  background-color: rgba(255, 204, 0, 0.08);
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--border-glow);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.highlight-yellow {
  color: var(--accent-yellow);
  font-size: 4.8rem;
  font-weight: 900;
  display: inline-block;
  text-shadow: 0 0 30px rgba(255, 204, 0, 0.35);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.bullet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: rgba(255, 204, 0, 0.08);
  color: var(--accent-yellow);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.8rem;
}

.hero-actions-group {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Key Fob */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-glow-circle {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.2) 0%, rgba(255, 204, 0, 0) 70%);
  filter: blur(25px);
  z-index: 1;
}

.key-fob-svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.visual-badge {
  position: absolute;
  bottom: 40px;
  right: 0;
  background: rgba(18, 18, 22, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: slideIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.visual-badge-title {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.visual-badge-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-block;
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.section-desc {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Simulator */
.simulator-section {
  padding: 6rem 0;
  background-color: rgba(10, 10, 12, 0.3);
}

.simulator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 204, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.simulator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-yellow) 0%, transparent 100%);
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
}

.sim-panel-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sim-panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
}

.sim-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.custom-select-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.sim-select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 1rem 1.4rem;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
}

.sim-select:focus {
  border-color: var(--accent-yellow);
  box-shadow: 0 0 0 2px var(--accent-yellow-glow);
  background-color: rgba(255, 255, 255, 0.05);
}

.custom-select-wrapper::after {
  content: '▼';
  font-size: 0.7rem;
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}

.sim-steps-small {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.sim-step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.sim-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--border-light);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.sim-step-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.sim-panel-right {
  background-color: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  text-align: center;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

.sim-initial-state {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sim-initial-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.sim-initial-state h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sim-initial-state p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 280px;
}

.sim-result-state {
  width: 100%;
  animation: fadeIn 0.4s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bank Selection Badge with inline SVG logo styling */
.sim-bank-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
}

.bank-badge-logo {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  flex-shrink: 0;
  display: block;
}

.sim-res-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.sim-amount-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.1rem;
}

.sim-amount-val {
  font-size: 4.8rem;
  font-weight: 800;
  color: var(--accent-yellow);
  line-height: 1;
  letter-spacing: -0.03em;
}

.sim-amount-currency {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-yellow);
}

.sim-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

/* Arc Gauge */
.gauge-wrapper {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 2rem auto;
  position: relative;
}

.gauge-container {
  position: relative;
  width: 100%;
  height: 115px;
  overflow: hidden;
}

.gauge-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gauge-text-overlay {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.gauge-percentage {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.gauge-lbl {
  font-size: 0.75rem;
  color: var(--accent-yellow);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.gauge-limits {
  display: flex;
  justify-content: space-between;
  padding: 4px 14px 0 14px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.sim-status-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.sim-status-box.status-full {
  background-color: var(--success-green-bg);
  border: 1px solid var(--success-green-border);
  color: var(--success-green);
}

.sim-status-box.status-partial {
  background-color: rgba(255, 204, 0, 0.06);
  border: 1px solid var(--border-glow);
  color: var(--accent-yellow);
}

.simulator-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Services */
.services-section {
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  background-color: var(--bg-card-hover);
  border-color: rgba(255, 204, 0, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-card.accent-card {
  border-color: rgba(255, 204, 0, 0.3);
  background: linear-gradient(180deg, rgba(255, 204, 0, 0.02) 0%, rgba(18, 18, 22, 1) 100%), var(--bg-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card.accent-card:hover {
  border-color: var(--accent-yellow);
}

.card-badge-top {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: #ef4444;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(255, 204, 0, 0.08);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.2rem;
}

.service-list li::before {
  content: '•';
  color: var(--accent-yellow);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-card-footer {
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-light);
}

.service-price {
  font-weight: 700;
  color: var(--accent-yellow);
  font-size: 1.05rem;
}

/* Brands */
.brands-wrapper {
  margin-top: 4rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
}

.brands-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

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

.brand-tag {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.brand-tag:hover {
  background-color: rgba(255, 204, 0, 0.08);
  border-color: var(--border-glow);
  color: var(--accent-yellow);
}

/* Steps */
.steps-section {
  padding: 6rem 0;
  background-color: rgba(10, 10, 12, 0.3);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.step-num-bg {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 4rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: rgba(255, 204, 0, 0.02);
  z-index: 1;
  transition: color 0.3s ease;
}

.step-card:hover .step-num-bg {
  color: rgba(255, 204, 0, 0.05);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.step-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

.step-text a {
  color: var(--accent-yellow);
  font-weight: 600;
}

/* Testimonials */
.testimonials-section {
  padding: 6rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--accent-yellow);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.reviewer-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Contact & Form */
.contact-section {
  padding: 6rem 0;
  background-color: rgba(10, 10, 12, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info .section-subtitle {
  text-align: left;
}

.contact-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 204, 0, 0.06);
  border-radius: 8px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.info-link {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.info-link:hover {
  color: var(--accent-yellow);
}

.contact-form-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 1.2rem;
}

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

.contact-form-wrapper label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.contact-form-wrapper input, .contact-form-wrapper select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form-wrapper input:focus, .contact-form-wrapper select:focus {
  border-color: var(--accent-yellow);
  background-color: rgba(255, 255, 255, 0.04);
}

.form-success-msg {
  margin-top: 1rem;
  background-color: var(--success-green-bg);
  border: 1px solid var(--success-green-border);
  color: var(--success-green);
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.form-success-msg.error-style {
  background-color: rgba(255, 71, 87, 0.1);
  border: 1px solid #ff4757;
  color: #ff4757;
}

/* Footer */
.main-footer {
  background-color: #050507;
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.2rem;
}

.footer-motto {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-block;
  background-color: #fffc00;
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.social-link:hover {
  transform: scale(1.05);
}

.social-link.tiktok-link {
  background-color: #010101;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-grid h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-yellow);
}

.footer-contact p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.snapchat-qr-box {
  display: inline-block;
  padding: 6px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.snap-yellow-bg {
  background-color: #fffc00;
  border-radius: 8px;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000000;
  width: 100px;
  height: 100px;
  justify-content: center;
}

.snap-ghost {
  width: 50px;
  height: 50px;
}

.snap-qr-username {
  font-size: 0.65rem;
  font-weight: 800;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: var(--text-secondary);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-description {
    margin: 0 auto 2rem auto;
  }
  
  .hero-bullets {
    align-items: center;
  }
  
  .hero-actions-group {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-grid .service-card:last-child {
    grid-column: span 2;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .header-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .highlight-yellow {
    font-size: 3.5rem;
  }
  
  .simulator-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sim-panel-right {
    min-height: 280px;
    padding: 1.5rem;
  }
  
  .sim-amount-val {
    font-size: 3.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid .service-card:last-child {
    grid-column: span 1;
  }
  
  .bottom-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* --- New Alignments & Premium DA Upgrades --- */

/* Centered Hero Layout */
.hero-container-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content-centered {
  margin-bottom: 3rem;
}

.hero-title-centered {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-description-centered {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Centered Visual Container */
.hero-visual-centered {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: 0 auto 3rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.key-fob-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 250px;
  animation: float 6s ease-in-out infinite;
}

/* Orbital Swirl Paths */
.orbit-glow-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  z-index: 2;
  pointer-events: none;
}

.orbit-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.4));
}

/* Lateral bars (vertical menus on sides) */
.hero-lateral-bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: rgba(18, 18, 22, 0.6);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
  padding: 1.5rem 0.8rem;
  border-radius: 20px;
  z-index: 8;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.left-bar {
  left: 30px;
}

.right-bar {
  right: 30px;
}

.lateral-icon-item {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lateral-icon-item svg {
  width: 20px;
  height: 20px;
}

.lateral-icon-item:hover, .lateral-icon-item.active {
  color: var(--accent-yellow);
  background-color: rgba(255, 204, 0, 0.1);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

/* Floating badges around the key */
.floating-badge-circle {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(18, 18, 22, 0.85);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-yellow);
  z-index: 6;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.25);
  animation: floating-slow 5s ease-in-out infinite;
}

.badge-pos-1 {
  top: 15%;
  left: 200px;
  animation-delay: 0.5s;
}

.badge-pos-2 {
  bottom: 22%;
  right: 190px;
  animation-delay: 1.2s;
}

.floating-badge-circle svg {
  width: 18px;
  height: 18px;
}

.hero-actions-centered {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  width: 100%;
}

@keyframes floating-slow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Custom Dropdown Select Component */
.custom-dropdown {
  position: relative;
  width: 100%;
  text-align: left;
}

.custom-dropdown-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  border-radius: 30px;
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 52px;
}

.custom-dropdown-trigger:hover {
  border-color: var(--accent-yellow);
  background-color: rgba(255, 255, 255, 0.05);
}

.custom-dropdown.open .custom-dropdown-trigger {
  border-color: var(--accent-yellow);
  box-shadow: 0 0 15px var(--accent-yellow-glow);
}

.selected-option-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trigger-placeholder {
  color: var(--text-secondary);
}

.trigger-selected-text {
  font-weight: 600;
  color: var(--text-primary);
}

.trigger-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trigger-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
}

.custom-dropdown.open .trigger-arrow {
  transform: rotate(180deg);
}

.custom-dropdown-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  max-height: 280px;
  overflow-y: auto;
  background: rgba(18, 18, 22, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  z-index: 100;
  display: none;
  flex-direction: column;
}

.custom-dropdown.open .custom-dropdown-options {
  display: flex;
}

.custom-dropdown-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.custom-dropdown-option:last-child {
  border-bottom: none;
}

.custom-dropdown-option:hover {
  background-color: rgba(255, 204, 0, 0.06);
  color: var(--accent-yellow);
}

.option-name {
  font-weight: 500;
}

.bank-badge-logo {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  flex-shrink: 0;
  display: block;
}

/* Simulator Section Ornaments */
.relative-container {
  position: relative;
}

.simulator-wrapper {
  position: relative;
  width: 100%;
}

.sim-floating-badge {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(18, 18, 22, 0.8);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-yellow);
  z-index: 6;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
  animation: floating-slow 6s ease-in-out infinite;
}

/* Placement matching mockup */
.badge-left-1 { top: 8%; left: -60px; animation-delay: 0.1s; }
.badge-left-2 { top: 35%; left: -90px; animation-delay: 0.6s; }
.badge-left-3 { top: 62%; left: -75px; animation-delay: 1.1s; }
.badge-left-4 { bottom: 10%; left: -50px; animation-delay: 1.6s; }

.badge-right-1 { top: 6%; right: -50px; animation-delay: 0.3s; }
.badge-right-2 { top: 24%; right: -90px; animation-delay: 0.8s; }
.badge-right-3 { top: 48%; right: -65px; animation-delay: 1.3s; }
.badge-right-4 { top: 72%; right: -85px; animation-delay: 1.8s; }
.badge-right-5 { bottom: 6%; right: -55px; animation-delay: 2.3s; }

.sim-floating-badge svg {
  width: 18px;
  height: 18px;
}

/* Link active styling */
.main-nav a.active {
  color: var(--accent-yellow) !important;
  font-weight: 700;
}

/* Responsive updates for centered hero */
@media (max-width: 1024px) {
  .hero-lateral-bar {
    display: none; /* Hide vertical sidebars on smaller screens */
  }
  .sim-floating-badge {
    display: none; /* Hide floating badges on simulator */
  }
  .badge-pos-1 { left: 100px; }
  .badge-pos-2 { right: 90px; }
}

@media (max-width: 768px) {
  .hero-title-centered {
    font-size: 2.6rem;
  }
  .hero-visual-centered {
    min-height: 380px;
    max-width: 100%;
  }
  .orbit-glow-container {
    width: 380px;
    height: 380px;
  }
  .badge-pos-1, .badge-pos-2 {
    display: none;
  }
  .hero-actions-centered {
    flex-direction: column;
    width: 90%;
    gap: 1rem;
  }
}

/* License Plate SIV Form Styles */
.plate-input-wrapper {
  display: flex;
  gap: 0.8rem;
}

.plate-input-wrapper input {
  flex: 1;
}

.btn-plate-search {
  background-color: var(--accent-yellow);
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 0 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
  white-space: nowrap;
}

.btn-plate-search:hover {
  background-color: var(--accent-yellow-hover);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
  transform: translateY(-1px);
}

.plate-spinner {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner-icon {
  display: inline-block;
  animation: spin 1.2s linear infinite;
}

.plate-error-msg {
  font-size: 0.85rem;
  color: #ef4444;
  margin-top: 0.5rem;
  font-weight: 600;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


