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

:root {
  --bg: #030303;
  --bg-soft: #0a0a0a;
  --text: #ffffff;
  --muted: #a0a0a0;
  --gold: #c59a52;
  --gold-glow: rgba(197, 154, 82, 0.4);
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(12px);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Light Mode ── */
[data-theme="light"] {
  --bg: #f5f3ee;
  --bg-soft: #ede9e0;
  --text: #1a1208;
  --muted: #6b5e45;
  --gold: #a07830;
  --gold-glow: rgba(160, 120, 48, 0.3);
  --line: rgba(0, 0, 0, 0.1);
  --glass: rgba(0, 0, 0, 0.03);
  --glass-border: rgba(0, 0, 0, 0.08);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] body {
  background-image: radial-gradient(circle at 10% -10%, rgba(160, 120, 48, 0.07), transparent 40%);
}

[data-theme="light"] .navbar {
  background: rgba(245, 243, 238, 0.85);
  border-bottom-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(245, 243, 238, 0.97);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero {
  background: radial-gradient(circle at top right, #ede9e0, #f5f3ee 60%);
  border-bottom-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .hero::after {
  background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}

[data-theme="light"] .canvas-loader[slot="poster"] {
  background: #f5f3ee;
}

[data-theme="light"] .card,
[data-theme="light"] .service-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .promo-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .map-card,
[data-theme="light"] .hours-card,
[data-theme="light"] .contact-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .section-soft {
  background: #ede9e0;
}

[data-theme="light"] .mobile-menu {
  background: #f5f3ee;
}

[data-theme="light"] .modal-content {
  background: #f5f3ee;
}

[data-theme="light"] .gallery-item {
  background: #ede9e0;
}

[data-theme="light"] .tech-spec-panel {
  background: rgba(245, 243, 238, 0.85);
  border-color: rgba(0,0,0,0.12);
}

[data-theme="light"] .tech-spec-panel p {
  color: var(--muted);
}

[data-theme="light"] .map-wrap iframe {
  filter: grayscale(0.2) contrast(1.05);
}

[data-theme="light"] h1, [data-theme="light"] h2, [data-theme="light"] h3 {
  color: var(--text);
}

[data-theme="light"] .contact-item p {
  color: var(--text);
}

[data-theme="light"] .phone-link {
  color: var(--text);
}

/* ── Theme Toggle Button ── */
.theme-toggle {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  width: 44px;
  height: 24px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 3px;
}

.theme-toggle::after {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  transition: var(--transition);
  transform: translateX(0);
  flex-shrink: 0;
}

[data-theme="light"] .theme-toggle::after {
  transform: translateX(20px);
}

.theme-toggle:hover {
  border-color: var(--gold);
  background: rgba(197, 154, 82, 0.1);
}

.theme-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.theme-toggle-wrap .icon-moon,
.theme-toggle-wrap .icon-sun {
  font-size: 1rem;
  line-height: 1;
  transition: var(--transition);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(circle at 10% -10%, rgba(197, 154, 82, 0.08), transparent 40%);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  background: radial-gradient(circle at top right, #0f0f0f, #030303 60%);
  border-bottom: 1px solid var(--line);
  position: relative;
  isolation: isolate;
  padding-top: 80px; /* Offset for sticky navbar */
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -15%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 154, 82, 0.2), rgba(197, 154, 82, 0));
  filter: blur(8px);
  animation: floatGlow 7s ease-in-out infinite;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.2;
  pointer-events: none;
  z-index: -2;
}

/* Model Viewer v3 - HUD Style */
#phone-viewer {
  width: 100%;
  height: 600px;
  background-color: transparent;
  --poster-color: transparent;
}


.canvas-loader[slot="poster"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #030303;
}

.loader-circle {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(197, 154, 82, 0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

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

.tech-spec-panel {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 280px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 20px;
  transform: translateX(40px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.tech-spec-panel.is-active {
  opacity: 1;
  transform: translateX(0);
}

.spec-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 700;
}

.tech-spec-panel h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.tech-spec-panel p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.spec-footer {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.spec-pill {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.interactive-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(0,0,0,0.4);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  pointer-events: none;
  animation: pulseHint 3s infinite;
}

@keyframes pulseHint {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 2px solid var(--line);
  transition: var(--transition);
  padding: 0.75rem 0;
}

.navbar.scrolled {
  background: rgba(3, 3, 3, 0.9);
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feedback-success {
  padding: 1rem;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid #4caf50;
  color: #4caf50;
  border-radius: 8px;
  margin: 1rem 0;
}

.feedback-error {
  padding: 1rem;
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid #f44336;
  color: #f44336;
  border-radius: 8px;
  margin: 1rem 0;
}

@media (max-width: 650px) {
  .nav-cta-hidden-mobile {
    display: none;
  }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: flex;
  }
}

.mobile-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Overlay & Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.active .mobile-menu {
  transform: translateX(-320px);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.menu-close {
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

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

.mobile-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-link:hover, .mobile-link.active {
  color: var(--gold);
  padding-left: 10px;
}

.mobile-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.mobile-footer p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(95deg, #fff, #d9b176);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content {
  padding: 0;
  width: 100%;
  max-width: 720px;
  text-align: center;
  animation: fadeUp 0.9s ease;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 154, 82, 0.08);
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 154, 82, 0.25);
}

/* ── Hero Diagnostic Card ── */
.hero-diagnostic-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(197, 154, 82, 0.22);
  border-radius: 28px;
  padding: 2rem 1.75rem;
  overflow: hidden;
  animation: fadeUp 0.9s ease 0.15s both;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  text-align: center;
}

.hero-diagnostic-card:hover {
  border-color: rgba(197, 154, 82, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45),
              0 0 40px rgba(197, 154, 82, 0.08);
}

.hero-diag-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(197, 154, 82, 0.22), transparent 70%);
  pointer-events: none;
}

.hero-diag-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  background: rgba(197, 154, 82, 0.12);
  border: 1px solid rgba(197, 154, 82, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero-diag-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(197, 154, 82, 0.2), rgba(197, 154, 82, 0.05));
  border: 1px solid rgba(197, 154, 82, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 1rem;
}

.hero-diag-icon svg {
  width: 26px;
  height: 26px;
}

.hero-diag-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-diag-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 1.1rem;
}

.hero-diag-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  justify-content: center;
}

.hero-diag-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  color: var(--muted);
}

.btn-diagnostic {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  background: linear-gradient(135deg, #e0bc7a, var(--gold));
  color: #0a0a0a;
  box-shadow: 0 8px 28px rgba(197, 154, 82, 0.35);
}

.btn-diagnostic svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.btn-diagnostic:hover svg {
  transform: translateX(4px);
}

[data-theme="light"] .hero-diagnostic-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(160, 120, 48, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero-diag-tags span {
  background: rgba(0, 0, 0, 0.03);
}

@media (max-width: 960px) {
  .hero-layout {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .hero-diagnostic-card {
    padding: 1.5rem 1.35rem;
  }

  .hero-diag-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .cta-row {
    flex-direction: column;
    width: 100%;
  }

  .cta-row .btn {
    width: 100%;
  }
}

.badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  margin: 1.2rem 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto;
  color: var(--muted);
}

.hero-bg-ornament {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 154, 82, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  animation: floatOrb 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes floatOrb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-30px, 40px) scale(1.1); }
}

h2 {
  font-size: 1.6rem;
  margin: 0 0 1rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 55%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

p {
  color: var(--muted);
}

.section {
  padding: 3.2rem 0;
}

.section-soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-top: 0.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--glass);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card:hover {
  border-color: var(--gold);
  background: rgba(197, 154, 82, 0.05);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 154, 82, 0.1);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(197, 154, 82, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .card-icon {
  background: var(--gold);
  color: #000;
  transform: scale(1.1);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card-arrow {
  margin-top: auto;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.service-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 1100px) {
  .gallery-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* 3D Phone Scene */
.phone-3d-scene {
  height: 500px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(197, 154, 82, 0.1), transparent);
  border-radius: 24px;
}

.phone-3d-model {
  width: 200px;
  height: 400px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotatePhone 12s linear infinite;
}

@keyframes rotatePhone {
  0% { transform: rotateY(0deg) rotateX(10deg); }
  100% { transform: rotateY(360deg) rotateX(10deg); }
}

.phone-face {
  position: absolute;
  background: #111;
  border: 2px solid #222;
}

.phone-front {
  width: 200px;
  height: 400px;
  transform: translateZ(10px);
  border-radius: 30px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--gold);
}

.phone-screen {
  width: 92%;
  height: 96%;
  background: #080808;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 0 20px rgba(197, 154, 82, 0.2);
}

.screen-logo {
  width: 60px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px var(--gold));
}

.screen-content {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  text-align: center;
}

.phone-back {
  width: 200px;
  height: 400px;
  transform: rotateY(180deg) translateZ(10px);
  border-radius: 30px;
  background: linear-gradient(135deg, #111, #000);
  border: 1px solid var(--gold);
}

.phone-left, .phone-right {
  width: 20px;
  height: 400px;
  left: 90px;
  background: #1a1a1a;
}

.phone-left { transform: rotateY(-90deg) translateZ(100px); }
.phone-right { transform: rotateY(90deg) translateZ(100px); }

.phone-top, .phone-bottom {
  width: 200px;
  height: 20px;
  top: 190px;
  background: #1a1a1a;
}

.phone-top { transform: rotateX(90deg) translateZ(200px); }
.phone-bottom { transform: rotateX(-90deg) translateZ(200px); }

.visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.visual-caption h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.visual-caption p {
  font-size: 1rem;
  margin: 0;
  color: var(--muted);
  max-width: 400px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  background: var(--bg-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.premium-shadow {
  box-shadow: var(--shadow-premium), 0 0 30px rgba(197, 154, 82, 0.05);
}

.promo-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem;
  overflow: hidden;
}

@media (max-width: 900px) {
  .promo-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

.promo-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.promo-content .badge {
  background: var(--gold);
  color: #000;
  border: none;
  font-weight: 600;
  margin-bottom: 1rem;
}

.map-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-soft);
  padding: 1.5rem;
  overflow: hidden;
}

.map-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 650px) {
  .map-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}

.map-info h3 {
  margin: 0;
  font-size: 1.4rem;
}

.map-info p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(1.1);
}

.hours-card, .contact-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.5rem;
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.hours li:last-child {
  border-bottom: none;
}

.hours li span:last-child {
  color: var(--gold);
  font-weight: 500;
}

.hours li.closed span:last-child {
  color: #ff5f5f;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item .label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-item p {
  margin: 0;
  font-size: 1.15rem;
  color: #fff;
}

.phone-link {
  text-decoration: none;
  font-weight: 700;
  color: #fff;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #d2ad72, var(--gold));
  color: #000;
  text-decoration: none;
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  cursor: pointer;
}

/* Ticket Form Layout */
.card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 2.5rem;
  border-radius: 28px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(197, 154, 82, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
              0 0 20px rgba(197, 154, 82, 0.1);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(197, 154, 82, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

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

.ticket-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}

@media (max-width: 800px) {
  .ticket-form {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

.ticket-form label {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.ticket-form input, 
.ticket-form select, 
.ticket-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.ticket-form input:focus, 
.ticket-form select:focus, 
.ticket-form textarea:focus {
  border-color: var(--gold);
  background: rgba(197, 154, 82, 0.05);
  box-shadow: 0 0 15px rgba(197, 154, 82, 0.1);
}

.ticket-full {
  grid-column: span 2;
}

@media (max-width: 800px) {
  .ticket-full {
    grid-column: span 1;
  }
}

.ticket-check {
  grid-column: span 2;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 0.5rem 0;
}

.check-ui {
  width: 20px;
  height: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.ticket-check input:checked + .check-ui {
  background: var(--gold);
  border-color: var(--gold);
}

.ticket-check input:checked + .check-ui::after {
  content: " ";
  width: 10px;
  height: 10px;
  background: #000;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.ticket-form .btn {
  grid-column: span 2;
  margin-top: 1rem;
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
}

@media (max-width: 800px) {
  .ticket-form .btn {
    grid-column: span 1;
  }
}

/* 3D Interactive Fix & Shimmer */
.phone-3d-scene {
  height: 600px;
  perspective: 2000px;
  cursor: crosshair;
}

.phone-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  animation: shimmer 6s infinite linear;
  pointer-events: none;
}

@keyframes shimmer {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.phone-3d-model {
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

/* Custom Cursor */
.cursor-dot, .cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(197, 154, 82, 0.5);
  backdrop-filter: blur(1px);
}

body.cursor-active .cursor-dot, body.cursor-active .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, rgba(197, 154, 82, 0.05), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(197, 154, 82, 0.05), transparent 40%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gold);
  filter: blur(150px);
  opacity: 0.1;
  top: 10%;
  left: 20%;
  border-radius: 50%;
  animation: floatOrb 10s infinite alternate ease-in-out;
  pointer-events: none;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 50px); }
}

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

.modal-content {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.modal-image img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.modal-caption {
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.modal-service {
  padding: 3rem;
}

.modal-service h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.modal-service-body {
  font-size: 1.1rem;
  line-height: 1.7;
}

.modal-service-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

footer {
  padding: 4rem 0 2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ══════════════════════════════════════
   Diagnostic Modal (Wizard)
══════════════════════════════════════ */
.modal-diagnostic {
  padding: 0;
  max-width: 480px;
  overflow: hidden;
  border: 1px solid rgba(197, 154, 82, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.04);
}

.diag-header {
  padding: 2rem 2rem 1.5rem;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--line);
}

.diag-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.diag-progress {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}

.diag-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 25%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.diag-body {
  padding: 2rem;
  position: relative;
  min-height: 250px;
}

.diag-step {
  display: none;
  animation: slideInRight 0.4s ease;
}

.diag-step.active {
  display: block;
}

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

.diag-step h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

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

.diag-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.2rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.diag-btn:hover {
  background: rgba(197, 154, 82, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.diag-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.diag-list::-webkit-scrollbar { width: 6px; }
.diag-list::-webkit-scrollbar-track { background: rgba(0,0,0,0.1); border-radius: 4px; }
.diag-list::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

.diag-variant-price {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 800;
  margin-left: auto;
}

.diag-list-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
}

.diag-issue-hint {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

.diag-list-btn:hover {
  background: rgba(197, 154, 82, 0.1);
  border-color: var(--gold);
}

.diag-result-card {
  background: rgba(197, 154, 82, 0.05);
  border: 1px solid rgba(197, 154, 82, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.diag-result-details {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.diag-result-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.diag-custom-model {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.diag-custom-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.diag-custom-input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ══════════════════════════════════════
   Réservation créneaux
══════════════════════════════════════ */
.booking-widget {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.25rem;
}

.booking-dates {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  scrollbar-width: thin;
}

.booking-date-btn {
  flex-shrink: 0;
  min-width: 72px;
  padding: 0.65rem 0.5rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-family: inherit;
}

.booking-date-btn .day-name {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.booking-date-btn .day-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 2px;
}

.booking-date-btn:hover:not(:disabled) {
  border-color: var(--gold);
}

.booking-date-btn.active {
  background: rgba(197, 154, 82, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.booking-date-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.booking-slots-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.5rem;
}

.booking-slot-btn {
  padding: 0.55rem 0.25rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.booking-slot-btn:hover:not(:disabled) {
  border-color: var(--gold);
}

.booking-slot-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.booking-slot-btn.taken,
.booking-slot-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-selected {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  min-height: 1.2em;
}

.booking-selected.empty {
  color: var(--muted);
  font-weight: 400;
}

.diag-prefill-banner {
  background: rgba(197, 154, 82, 0.08);
  border: 1px solid rgba(197, 154, 82, 0.35);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.diag-prefill-banner strong {
  color: var(--gold);
}

/* ══════════════════════════════════════
   Suivi live (lookup)
══════════════════════════════════════ */
.track-lookup-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}

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

.track-lookup-header h3 {
  margin: 0;
  font-size: 1.15rem;
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.track-lookup-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.track-lookup-form input {
  flex: 1;
  min-width: 200px;
}

.track-result {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.track-result-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.track-live-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4ade80;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
}

.status-nouveau { background: #333; color: #fff; }
.status-encours { background: rgba(91, 156, 246, 0.2); color: #5b9cf6; }
.status-termine { background: rgba(197, 154, 82, 0.2); color: var(--gold); }

@media (max-width: 650px) {
  .footer-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cursor-dot, .cursor-ring {
    display: none;
  }
}

/* ══════════════════════════════════════
   WhatsApp Floating Button
══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.65), 0 6px 18px rgba(0,0,0,0.3);
  animation: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.25s ease;
  pointer-events: none;
}

@keyframes waPulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    transform: scale(1.04);
  }
}

/* ══════════════════════════════════════
   Section Avis Clients
══════════════════════════════════════ */
.reviews-section {
  padding: 3.5rem 0;
  overflow: hidden;
}

.reviews-track-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 2.5rem;
}

.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.reviews-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  animation: reviewsScroll 35s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.6rem;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: """;
  position: absolute;
  top: 0.5rem;
  right: 1.2rem;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover {
  border-color: rgba(197, 154, 82, 0.4);
  background: rgba(197, 154, 82, 0.04);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.85rem;
}

.review-stars span {
  font-size: 1rem;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.2rem;
}

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8b5a2b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
}

.review-date {
  font-size: 0.78rem;
  color: var(--muted);
}

.review-source {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: auto;
}

.review-google-icon {
  width: 14px;
  height: 14px;
}

/* Light mode adaptations */
[data-theme="light"] .review-card {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .reviews-track-wrapper::before {
  background: linear-gradient(to right, var(--bg), transparent);
}

[data-theme="light"] .reviews-track-wrapper::after {
  background: linear-gradient(to left, var(--bg), transparent);
}

/* ══════════════════════════════════════
   Tracking Steps (Live Suivi)
══════════════════════════════════════ */
.tracking-steps {
  width: 100%;
  margin-top: 1.5rem;
}

.t-step {
  display: flex;
  gap: 15px;
  padding-bottom: 25px;
  position: relative;
  text-align: left;
}

.t-step::before {
  content: "";
  position: absolute;
  left: 17px; top: 34px;
  width: 2px; height: calc(100% - 34px);
  background: var(--glass-border);
}
.t-step:last-child::before { display: none; }

.t-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--glass-border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: 0.5s;
  color: var(--muted);
  font-weight: bold;
}

.t-step.done::before {
  background: var(--gold);
}

.t-step.active .t-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201,168,76,0.3);
  color: #000;
}

.t-step.done .t-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.t-info h4 { margin: 0; font-size: 1rem; color: var(--text); }
.t-info p { margin: 4px 0 0; font-size: 0.85rem; color: var(--muted); }
