@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  --gold: #d4af57;
  --gold-glow: rgba(212, 175, 87, 0.42);
  --green-neon: #7fcb74;
  --green-neon-glow: rgba(127, 203, 116, 0.22);
  --blue-pro: #0066cc;
  --blue-sky: #00aaff;
  --blue-sky-glow: rgba(0, 170, 255, 0.3);
  --whatsapp: #25d366;
  --dark-bg: #0c0c0c;
  --dark-gradient: linear-gradient(180deg, #0e0e0e 0%, #090909 100%);
  --dark-card: #131313;
  --dark-card-hover: #1c1c1c;
  --light-bg: #ffffff;
  --light-card: #f5f7fa;
  --light-card-hover: #eef1f5;
  --neutral-bg: #fafafa;
  --neutral-card: #ffffff;
  --text-dark: #f0f0f0;
  --text-dark-muted: #999999;
  --text-light: #1a1a1a;
  --text-light-muted: #666666;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-glow-gold: 0 0 20px rgba(201, 168, 76, 0.3);
  --shadow-glow-green: 0 0 20px rgba(74, 255, 74, 0.3);
  --shadow-glow-blue: 0 0 20px rgba(0, 170, 255, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --header-height: 70px;
}

body.theme-dark {
  background: var(--dark-bg);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #090909;
  color: var(--text-dark);
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(ellipse 65% 50% at 80% 12%, rgba(212, 175, 87, 0.10), transparent 70%),
    radial-gradient(ellipse 40% 35% at 14% 72%, rgba(127, 203, 116, 0.08), transparent 72%),
    radial-gradient(ellipse 35% 32% at 52% 88%, rgba(212, 175, 87, 0.08), transparent 70%),
    #090909;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(212, 175, 87, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 87, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0, transparent 78%);
}

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

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

ul,
ol {
  list-style: none;
}

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

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  transition: background var(--transition-base), backdrop-filter var(--transition-base);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header.scrolled .hamburger-btn span {
  background-color: var(--green-neon);
  box-shadow: 0 0 8px var(--green-neon-glow);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.header-logo img,
.header-logo svg {
  width: 56px;
  height: 56px;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.header-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
}

.header-brand-lb {
  background: linear-gradient(135deg, #9dd58f, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 4px;
}



.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--green-neon);
  transition: all var(--transition-base);
  border-radius: 3px;
  box-shadow: 0 0 8px var(--green-neon-glow);
}

.theme-light .hamburger-btn span,
.theme-neutral .hamburger-btn span {
  background: var(--green-neon);
  box-shadow: 0 0 8px var(--green-neon-glow);
}

.hamburger-btn span+span {
  margin-top: 6px;
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========== MENU OVERLAY ========== */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.menu-overlay .menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.menu-overlay .menu-link {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  padding: 12px 0;
  position: relative;
  transition: color var(--transition-base);
  display: inline-block;
}

.menu-overlay .menu-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.menu-overlay .menu-link:hover {
  color: var(--gold);
}

.menu-overlay .menu-link:hover::after {
  width: 100%;
}

.menu-overlay .menu-link.current {
  color: var(--gold);
}

.menu-overlay .menu-link.current::after {
  width: 100%;
}

/* ========== FLOATING BUTTONS ========== */
.floating-btns {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 998;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  animation: pulse-float 4s ease-in-out infinite;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn--phone {
  background: var(--gold);
  box-shadow: var(--shadow-glow-gold);
}

.floating-btn--phone svg {
  width: 24px;
  height: 24px;
  fill: var(--dark-bg);
}

.floating-btn--whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.floating-btn--whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes pulse-float {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.floating-btn:hover {
  animation: none;
  transform: scale(1.12);
}

/* ========== CTA RESERVE BUTTON ========== */
.cta-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: none;
}

.cta-reserve--neon {
  background: linear-gradient(135deg, #6dbb68 0%, #8ed481 100%);
  color: #071205;
  box-shadow: 0 10px 30px rgba(127, 203, 116, 0.24);
}

.cta-reserve--neon:hover {
  box-shadow: 0 0 34px rgba(127, 203, 116, 0.35);
  transform: translateY(-2px);
}

.cta-reserve--gold {
  background: var(--gold);
  color: var(--dark-bg);
  box-shadow: var(--shadow-glow-gold);
}

.cta-reserve--gold:hover {
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

.cta-reserve--blue {
  background: var(--blue-pro);
  color: #fff;
  box-shadow: var(--shadow-glow-blue);
}

.cta-reserve--blue:hover {
  box-shadow: 0 0 40px rgba(0, 102, 204, 0.4);
  transform: translateY(-2px);
}

.cta-reserve--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.cta-reserve--outline:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.cta-reserve--outline-blue {
  background: transparent;
  border: 2px solid var(--blue-pro);
  color: var(--blue-pro);
}

.cta-reserve--outline-blue:hover {
  background: var(--blue-pro);
  color: #fff;
}

.cta-reserve svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 80px 24px;
}

.section-dark {
  background: var(--dark-gradient);
  color: var(--text-dark);
}

.section-light {
  background: var(--light-bg);
  color: var(--text-light);
}

.section-neutral {
  background: var(--neutral-bg);
  color: var(--text-light);
}

.home-page {
  background: transparent;
  color: var(--text-dark);
}

.home-page .section-neutral {
  background: transparent;
  color: var(--text-dark);
}

.home-page .section-neutral .section-title {
  color: var(--gold);
}

.home-page .section-neutral .section-subtitle {
  color: rgba(255, 255, 255, 0.76);
}

.home-page .arg-card--light,
.home-page .review-card--light {
  background: #111111;
  border: 1px solid rgba(201, 168, 76, 0.24);
}

.home-page .arg-card-title,
.home-page .review-author {
  color: #ffffff;
}

.home-page .arg-card-text,
.home-page .review-text {
  color: rgba(255, 255, 255, 0.86);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1;
}

.section-subtitle {
  font-size: 1.05rem;
  margin-bottom: 48px;
  opacity: 0.8;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 0 5vw 8vh;
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100svh - 62px);
    padding: 0 24px 56px;
    align-items: center;
  }
}

.hero--dark {
  background: var(--dark-bg);
  color: var(--text-dark);
}

.hero--light {
  background: var(--light-bg);
  color: var(--text-light);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 55% 50% at 75% 35%, rgba(127, 203, 116, 0.08) 0, transparent 65%),
    radial-gradient(ellipse 40% 45% at 15% 65%, rgba(212, 175, 87, 0.12) 0, transparent 60%),
    radial-gradient(ellipse 30% 35% at 55% 80%, rgba(212, 175, 87, 0.06) 0, transparent 55%),
    var(--dark-bg);
  opacity: 1;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(212, 175, 87, 0.035) 1px, transparent 0),
    linear-gradient(90deg, rgba(212, 175, 87, 0.035) 1px, transparent 0);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0, transparent 70%);
  mask-image: radial-gradient(ellipse at center, #000 0, transparent 70%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.hero--dark::after {
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
}

.hero--light::after {
  background: radial-gradient(ellipse at center, transparent 0%, rgba(255, 255, 255, 0.6) 100%);
}

.hero--light .hero-bg {
  background: radial-gradient(ellipse 55% 50% at 75% 35%, rgba(0, 170, 255, 0.10) 0, transparent 65%),
    radial-gradient(ellipse 40% 45% at 15% 65%, rgba(0, 102, 204, 0.08) 0, transparent 60%),
    radial-gradient(ellipse 30% 35% at 55% 80%, rgba(0, 170, 255, 0.05) 0, transparent 55%),
    var(--light-bg);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 24px;
  text-align: left;
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
}

.hero-logo {
  display: none;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #9dd58f;
}

.hero-tag::before {
  content: '';
  height: 1px;
  width: 36px;
  background: linear-gradient(90deg, #9dd58f, var(--gold));
}

.hero--light .hero-tag {
  color: var(--blue-pro);
}

.hero--light .hero-tag::before {
  background: linear-gradient(90deg, var(--blue-pro), var(--blue-sky));
}

.hero-slogan {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 14vw, 8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.88;
  margin: 0 0 1.5rem;
}

.hero--dark .hero-slogan .highlight {
  background: linear-gradient(135deg, #9dd58f, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(74, 255, 74, 0.5));
}

.hero--light .hero-slogan .highlight {
  background: linear-gradient(135deg, var(--blue-pro), var(--blue-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 170, 255, 0.4));
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 300;
  opacity: 0.65;
  max-width: 360px;
  margin: 0 0 28px;
  line-height: 1.7;
  text-align: left;
}

@media (max-width: 768px) {
  .hero-subtitle {
    max-width: 100%;
    text-align: center;
  }
}

.hero-cta-wrap {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

@media (min-width: 768px) {
  .hero-cta-wrap {
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-cta-wrap {
    align-items: center;
    width: 100%;
  }
}

.hero-cta-wrap .cta-reserve--outline {
  border: 2px solid var(--green-neon);
  color: var(--green-neon);
  background: transparent;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.3px;
  padding: 0.9rem 2.4rem;
  font-size: 1rem;
  white-space: nowrap;
  border-radius: 50px;
  opacity: 0.9;
  transition: all var(--transition-base);
}

.hero-cta-wrap .cta-reserve--outline:hover {
  background: rgba(74, 255, 74, 0.1);
  color: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}

.hero-cta-wrap .cta-reserve--neon {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.9rem 2.4rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .hero-cta-wrap .cta-reserve {
    justify-content: center;
    width: 100%;
  }
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--dark-card);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.08);
  transition: background 0.3s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(74, 255, 74, 0.03);
}

.stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--green-neon), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
}

@media (max-width: 600px) {
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }
}

/* ========== SCROLL HINT ========== */
.scroll-hint {
  position: absolute;
  bottom: 5vh;
  right: 5vw;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.35;
  z-index: 3;
}

.scroll-line {
  width: 36px;
  height: 1px;
  background: var(--text-dark);
  animation: scrollAnim 2s 1.5s infinite;
}

@keyframes scrollAnim {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }

  51% {
    transform: scaleX(1);
    transform-origin: right;
  }

  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

@media (max-width: 768px) {
  .scroll-hint {
    display: none;
  }
}

/* ========== BEFORE/AFTER SLIDER ========== */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: ew-resize;
  user-select: none;
}

.ba-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider .ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ba-slider .ba-after img {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--slider-width, 100%);
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.ba-slider .ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--handle-pos, 50%);
  width: 4px;
  background: #fff;
  cursor: ew-resize;
  z-index: 5;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.ba-slider .ba-handle::before,
.ba-slider .ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.ba-slider .ba-handle::before {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M18 8l4 4-4 4M6 8l-4 4 4 4'/%3E%3C/svg%3E") center/20px no-repeat;
}

.ba-slider .ba-label {
  position: absolute;
  top: 16px;
  padding: 4px 12px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 4px;
  z-index: 4;
  pointer-events: none;
}

.ba-slider .ba-label--before {
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.ba-slider .ba-label--after {
  right: 16px;
  background: var(--green-neon);
  color: var(--dark-bg);
}

/* Showcase cards style (Vistaclean-inspired) */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.showcase-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

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

.showcase-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.showcase-card-body {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.showcase-card-body--dark {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-top: none;
}

.showcase-card-body--light {
  background: var(--light-card);
  border: 1px solid #e0e0e0;
  border-top: none;
}

.showcase-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.showcase-card-icon--green {
  background: rgba(74, 255, 74, 0.15);
}

.showcase-card-icon--blue {
  background: rgba(0, 102, 204, 0.1);
}

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

.showcase-card-info {
  flex: 1;
}

.showcase-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.showcase-card-sub {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ========== CARDS ========== */
.card {
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: scale(1.02);
}

.card--dark {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.card--dark:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-glow-gold);
}

.card--light {
  background: var(--light-card);
  border: 1px solid #e0e0e0;
}

.card--light:hover {
  border-color: var(--blue-pro);
  box-shadow: var(--shadow-glow-blue);
}

.card--neutral {
  background: var(--neutral-card);
  border: 1px solid #e0e0e0;
  box-shadow: var(--shadow-sm);
}

.card--neutral:hover {
  box-shadow: var(--shadow-md);
}

/* ========== DUAL CARDS (ACCUEIL) ========== */
.dual-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .dual-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.dual-card {
  border-radius: 38px;
  padding: 56px 34px 44px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.dual-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 30px;
  pointer-events: none;
}

.dual-card--auto {
  background: linear-gradient(145deg, #070707 0%, #111111 60%, #0c0c0c 100%);
  color: var(--text-dark);
  border: 1px solid rgba(212, 175, 87, 0.32);
  box-shadow: inset 0 0 55px rgba(212, 175, 87, 0.06), 0 22px 36px rgba(0, 0, 0, 0.36);
}

.dual-card--auto:hover {
  border-color: rgba(234, 199, 111, 0.92);
  box-shadow: inset 0 0 72px rgba(212, 175, 87, 0.1), 0 26px 42px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 87, 0.23);
  transform: translateY(-4px);
}

.dual-card--auto::before {
  border: 1px solid rgba(212, 175, 87, 0.18);
}

.dual-card--auto .dual-card-icon {
  color: var(--gold);
}

.dual-card--auto .dual-card-title {
  color: var(--gold);
}

.dual-card--auto .dual-card-price {
  color: var(--green-neon);
  text-shadow: 0 0 14px rgba(127, 203, 116, 0.22);
}

.dual-card--vitres {
  background: linear-gradient(152deg, #ffffff 0%, #f2f5fb 42%, #eceff6 100%);
  color: #23304b;
  border: 1px solid rgba(0, 102, 204, 0.28);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.85), 0 20px 34px rgba(31, 52, 84, 0.17);
}

.dual-card--vitres:hover {
  border-color: rgba(0, 102, 204, 0.55);
  box-shadow: inset 0 0 44px rgba(255, 255, 255, 0.95), 0 24px 38px rgba(31, 52, 84, 0.24), 0 0 24px rgba(0, 102, 204, 0.2);
  transform: translateY(-4px);
}

.dual-card--vitres::before {
  border: 1px solid rgba(0, 102, 204, 0.2);
}

.dual-card--vitres .dual-card-icon {
  color: var(--blue-pro);
}

.dual-card--vitres .dual-card-title {
  color: var(--blue-pro);
}

.dual-card--vitres .dual-card-price {
  color: var(--blue-pro);
}

.dual-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
}

.dual-card-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
}

.dual-card-desc {
  font-size: 1.02rem;
  opacity: 0.9;
}

.dual-card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.55rem;
}

.dual-card-cta {
  margin-top: 6px;
  min-width: 240px;
  padding: 16px 34px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dual-card-cta--gold {
  background: linear-gradient(145deg, #f0d186 0%, #d1a447 46%, #f3d98f 100%);
  color: #181105;
  border: 1px solid rgba(247, 227, 167, 0.7);
  box-shadow: inset 0 2px 10px rgba(255, 245, 209, 0.5), 0 10px 28px rgba(212, 175, 87, 0.36);
}

.dual-card-cta--blue {
  background: linear-gradient(145deg, #1775e4 0%, #0e4db6 52%, #1f80ea 100%);
  color: #ffffff;
  border: 1px solid rgba(180, 214, 255, 0.55);
  box-shadow: inset 0 2px 8px rgba(206, 228, 255, 0.36), 0 12px 28px rgba(0, 102, 204, 0.36);
}

/* ========== ARGUMENTS GRID ========== */
.args-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.arg-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.arg-card:hover {
  transform: translateY(-4px);
}

.arg-card--dark {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.arg-card--dark:hover {
  border-color: var(--gold);
}

.arg-card--light {
  background: var(--light-card);
  border: 1px solid #e0e0e0;
}

.arg-card--light:hover {
  border-color: var(--blue-pro);
}

.arg-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.arg-card-icon svg {
  width: 100%;
  height: 100%;
}

.arg-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.arg-card-text {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* ========== REVIEWS ========== */
.reviews-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 300px;
  max-width: 380px;
  scroll-snap-align: start;
  padding: 28px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.review-card--dark {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.review-card--light {
  background: var(--light-card);
  border: 1px solid #e0e0e0;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-note-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
}

.review-note-bar--dark {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.review-note-bar--light {
  background: var(--light-card);
  border: 1px solid #e0e0e0;
  color: var(--blue-pro);
}

.review-note-bar .note-number {
  font-size: 1.4rem;
}

.review-note-bar .note-text {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ========== MAP ========== */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 350px;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-villes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}

.map-ville {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.map-ville--dark {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.map-ville--light {
  background: rgba(0, 102, 204, 0.08);
  color: var(--blue-pro);
  border: 1px solid rgba(0, 102, 204, 0.2);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  text-align: center;
  padding: 64px 24px;
}

.cta-banner--dark {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #111 100%);
}

.cta-banner--light {
  background: linear-gradient(135deg, var(--light-bg) 0%, #f0f4ff 100%);
}

.cta-banner .cta-banner-text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== PRICING CARDS ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pricing-category-title-wrap {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.pricing-category-title {
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

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

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  transform: scale(1.02);
}

.pricing-card--dark {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.pricing-card--dark:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-glow-gold);
}

.pricing-card--light {
  background: var(--light-card);
  border: 1px solid #e0e0e0;
}

.pricing-card--light:hover {
  border-color: var(--blue-pro);
  box-shadow: var(--shadow-glow-blue);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pricing-card-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card-badge--dark {
  background: linear-gradient(135deg, rgba(212, 175, 87, 0.28), rgba(212, 175, 87, 0.14));
  color: #f4d98f;
  border: 1px solid rgba(212, 175, 87, 0.55);
  box-shadow: 0 0 16px rgba(212, 175, 87, 0.26), inset 0 1px 0 rgba(255, 245, 210, 0.4);
}

.pricing-card-badge--light {
  background: rgba(0, 102, 204, 0.1);
  color: var(--blue-pro);
}

.pricing-card-badge svg {
  width: 14px;
  height: 14px;
}

.pricing-card-includes {
  margin: 20px 0;
}

.pricing-card-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-card-includes li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.pricing-card-prices {
  margin: 24px 0 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card-prices--light {
  border-top-color: #e0e0e0;
}

.price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px;
}

.price-normal {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
  opacity: 1;
}

.price-normal--soft {
  color: #c9a84c;
  text-shadow: none;
}

.price-abonne {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.price-abonne--neon {
  color: #ffffff;
  text-shadow: none;
}

.price-abonne--blue {
  color: var(--blue-pro);
}

.price-save {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.price-save--neon {
  background: rgba(74, 255, 74, 0.15);
  color: var(--green-neon);
}

.price-save--blue {
  background: rgba(0, 102, 204, 0.1);
  color: var(--blue-pro);
}

.price-suv {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 4px;
}

.pricing-card .cta-reserve {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

/* ========== OPTIONS GRID ========== */
.pack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.pack-card {
  display: block;
  cursor: pointer;
  height: 100%;
}

.pack-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pack-content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 18px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(201, 168, 76, 0.34);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(201, 168, 76, 0.2) 0%, rgba(24, 20, 10, 0) 52%),
    linear-gradient(180deg, rgba(14, 14, 28, 0.94), rgba(9, 9, 20, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 28px rgba(4, 4, 12, 0.45);
  backdrop-filter: blur(4px);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  min-height: 280px;
  height: 100%;
}

.pack-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0;
  position: absolute;
  top: 8px;
  left: 12px;
  right: auto;
  transform: none;
  background: linear-gradient(135deg, rgba(212, 175, 87, 0.3), rgba(212, 175, 87, 0.14));
  color: #f4d98f;
  border: 1px solid rgba(212, 175, 87, 0.55);
  box-shadow: 0 0 14px rgba(212, 175, 87, 0.22), inset 0 1px 0 rgba(255, 245, 210, 0.35);
}

.pack-card--popular .pack-content {
  padding-top: 18px;
}

.pack-card--popular .pack-title {
  margin-top: 22px;
}

@media (min-width: 1024px) {
  .pack-card--popular {
    order: -1;
  }
}

.pack-title {
  display: block;
  font-family: 'Bebas Neue', var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pack-price {
  display: block;
  font-family: 'Bebas Neue', var(--font-heading);
  font-size: 2.4rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #d8b04c;
  margin-bottom: 4px;
}

.pack-meta {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(230, 215, 175, 0.7);
  margin-bottom: 12px;
}

.pack-list {
  font-family: 'Inter', var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  padding-left: 20px;
  color: rgba(238, 238, 238, 0.92);
  line-height: 1.62;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.pack-list li {
  margin-bottom: 4px;
}

.pack-list li::marker {
  color: #d8b04c;
}

.pack-input:checked + .pack-content {
  transform: translateY(-2px);
  border-color: #e2be66;
  box-shadow: 0 0 0 2px rgba(226, 190, 102, 0.24), 0 20px 38px rgba(62, 44, 8, 0.48);
}

.pack-card:hover .pack-content {
  transform: translateY(-2px);
  border-color: rgba(226, 190, 102, 0.6);
}

@media (min-width: 1024px) {
  .pack-grid {
    gap: 18px;
  }

  .pack-content {
    min-height: 290px;
    padding: 18px 18px 14px;
  }

  .pack-title {
    font-size: 1.72rem;
    margin-bottom: 8px;
  }

  .pack-price {
    font-size: 2.2rem;
    margin-bottom: 4px;
  }

  .pack-list {
    font-size: 0.92rem;
    line-height: 1.4;
  }
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.option-card {
  display: block;
  position: relative;
  padding: 16px 16px 16px 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.option-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-1px);
}

.option-card input {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.option-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.option-card-title {
  font-size: 0.95rem;
  line-height: 1.35;
  color: #ffffff;
  font-weight: 600;
}

.option-card-note {
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.option-card--wide {
  grid-column: 1 / -1;
}

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

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

.option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.supplements-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.supplement-item {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.option-item--dark {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.option-item--dark:hover {
  border-color: var(--gold);
}

.option-item--light {
  background: var(--light-card);
  border: 1px solid #e0e0e0;
}

.option-item--light:hover {
  border-color: var(--blue-pro);
}

.option-name {
  font-size: 0.9rem;
}

.option-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.option-check:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.option-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-neon);
  cursor: pointer;
  flex-shrink: 0;
}

.option-check--with-note {
  align-items: flex-start;
}

.option-check--with-note input[type="checkbox"] {
  margin-top: 1px;
}

.option-check span {
  line-height: 1.3;
}

.option-main-text {
  display: block;
}

.option-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.78rem;
  opacity: 0.62;
}

.option-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.option-check input[type="checkbox"]:checked+span {
  color: var(--green-neon);
}

.option-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ========== GALLERY ========== */
.gallery-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.gallery-tab {
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.gallery-tab--auto {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-tab--auto.active,
.gallery-tab--auto:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.gallery-tab--vitres {
  background: transparent;
  border-color: var(--blue-pro);
  color: var(--blue-pro);
}

.gallery-tab--vitres.active,
.gallery-tab--vitres:hover {
  background: var(--blue-pro);
  color: #fff;
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  font-size: 0.8rem;
  color: #fff;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

/* ========== COUNTERS ========== */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.counter-item {
  padding: 24px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.counter-number--gold {
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow);
}

.counter-number--blue {
  color: var(--blue-pro);
}

.counter-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* ========== FORM ========== */
.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-activity-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.form-activity-btn {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.form-activity-btn--auto {
  background: var(--dark-bg);
  color: var(--gold);
  border-color: var(--gold);
}

.form-activity-btn--auto.active {
  background: var(--gold);
  color: var(--dark-bg);
  box-shadow: var(--shadow-glow-gold);
}

.form-activity-btn--vitres {
  background: var(--light-bg);
  color: var(--blue-pro);
  border-color: var(--blue-pro);
}

.form-activity-btn--vitres.active {
  background: var(--blue-pro);
  color: #fff;
  box-shadow: var(--shadow-glow-blue);
}

.form-activity-btn svg {
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  display: block;
}

.form-activity-btn span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
}

.form-input--dark,
.form-select--dark,
.form-textarea--dark {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dark);
}

.form-input--dark:focus,
.form-select--dark:focus,
.form-textarea--dark:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.form-input--light,
.form-select--light,
.form-textarea--light {
  background: var(--light-card);
  border: 1px solid #ddd;
  color: var(--text-light);
}

.form-input--light:focus,
.form-select--light:focus,
.form-textarea--light:focus {
  border-color: var(--blue-pro);
  box-shadow: 0 0 10px var(--blue-sky-glow);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.form-select--dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
}

.form-select--dark.price-adjusted {
  color: #c5c5c5;
}

.form-select--light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.photo-upload {
  border: 2px dashed rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.photo-upload--light {
  border-color: rgba(0, 102, 204, 0.3);
}

.photo-upload:hover {
  border-color: var(--gold);
}

.photo-upload--light:hover {
  border-color: var(--blue-pro);
}

.photo-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.photo-upload-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  opacity: 0.5;
}

.photo-upload-text {
  font-size: 0.9rem;
  opacity: 0.7;
}

.photo-upload-text strong {
  display: block;
  margin-bottom: 4px;
  opacity: 1;
}

.photo-previews {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.photo-preview {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

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

.photo-preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.photo-preview-remove svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
}

.form-error {
  color: #ff4444;
  font-size: 0.85rem;
  margin-top: 8px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-required::after {
  content: ' *';
  color: #ff4444;
}

.form-mention {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 12px;
  text-align: center;
}

.form-submit {
  margin-top: 24px;
}

.form-submit .cta-reserve {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1rem;
}

/* ========== FORM CONFIRMATION ========== */
.confirmation {
  text-align: center;
  padding: 60px 24px;
  display: none;
}

.confirmation.visible {
  display: block;
}

.confirmation-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}

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

.confirmation-text {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== SUBSCRIPTION CARDS ========== */
.sub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.sub-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.sub-card:hover {
  transform: scale(1.02);
}

.sub-card--dark {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--text-dark);
}

.sub-card--dark .sub-card-features li {
  color: var(--text-dark);
}

.sub-card--dark:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-glow-gold);
}

.sub-card--light {
  background: var(--light-card);
  border: 1px solid #e0e0e0;
}

.sub-card--light:hover {
  border-color: var(--blue-pro);
  box-shadow: var(--shadow-glow-blue);
}

.sub-card-type {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.sub-card-type--gold {
  color: var(--gold);
}

.sub-card-type--blue {
  color: var(--blue-pro);
}

.sub-card-name {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.sub-card-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.sub-card-price--gold {
  color: var(--gold);
}

.sub-card-price--blue {
  color: var(--blue-pro);
}

.sub-card-period {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 20px;
}

.sub-card-features {
  text-align: left;
  margin-bottom: 20px;
}

.sub-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.85rem;
}

.sub-card-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ========== FAMILY PLAN ========== */
.family-plan {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}

.family-plan--dark {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, rgba(74, 255, 74, 0.05) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.family-plan--light {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 170, 255, 0.05) 100%);
  border: 1px solid rgba(0, 102, 204, 0.15);
}

.family-plan-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.family-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.family-plan-item {
  padding: 16px;
  border-radius: var(--radius-sm);
}

.family-plan-item--dark {
  background: rgba(201, 168, 76, 0.08);
}

.family-plan-item--light {
  background: rgba(0, 102, 204, 0.05);
}

.family-plan-vehicle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.family-plan-discount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
}

.family-plan-mention {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 12px;
}

/* ========== ADVANTAGES LIST ========== */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.advantage-card--dark {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dark);
}

.advantage-card--dark .advantage-card-content h4,
.advantage-card--dark .advantage-card-content p {
  color: var(--text-dark);
}

.advantage-card--dark:hover {
  border-color: var(--gold);
}

.advantage-card--light {
  background: var(--light-card);
  border: 1px solid #eee;
}

.advantage-card--light:hover {
  border-color: var(--blue-pro);
}

.advantage-card svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.advantage-card-content h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.advantage-card-content p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* ========== ABOUT PAGE ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark-card);
}

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

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 16px;
}

.equipment-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

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

.equipment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
}

.equipment-item--dark {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.equipment-item--light {
  background: var(--light-card);
  border: 1px solid #eee;
}

.equipment-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.equipment-item span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ========== BLOG ========== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card--dark {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card--light {
  background: var(--light-card);
  border: 1px solid #eee;
  box-shadow: var(--shadow-sm);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark-card);
  overflow: hidden;
}

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

.blog-card-body {
  padding: 20px;
}

.blog-card-date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.95rem;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.contact-social-btn {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  transition: all var(--transition-base);
}

.contact-social-btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.contact-social-btn--facebook {
  background: #1877f2;
}

.contact-social-btn--whatsapp {
  background: var(--whatsapp);
}

.contact-social-btn--tiktok {
  background: linear-gradient(145deg, #111 0%, #1b1b1b 100%);
}

.contact-social-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.contact-social-btn--facebook svg {
  width: 22px;
  height: 22px;
}

.contact-social-btn--whatsapp svg {
  width: 23px;
  height: 23px;
}

.contact-social-btn--tiktok svg {
  width: 22px;
  height: 22px;
}

/* ========== HORAIRES ========== */
.horaires-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.horaires-table td {
  padding: 8px 0;
  font-size: 0.9rem;
}

.horaires-table td:first-child {
  font-weight: 600;
  width: 140px;
}

/* ========== MENTIONS ========== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 48px 24px 24px;
}

.site-footer--dark {
  background: #050505;
  color: var(--text-dark-muted);
}

.site-footer--light {
  background: #f0f0f0;
  color: var(--text-light-muted);
}

.site-footer--neutral {
  background: #0a0a0a;
  color: var(--text-dark-muted);
}

.site-footer--neutral .footer-col ul li a,
.site-footer--neutral .footer-copyright,
.site-footer--neutral .footer-legal-links a,
.site-footer--neutral .footer-zone,
.site-footer--neutral .footer-slogan {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

.site-footer--neutral .footer-col h4,
.site-footer--neutral .footer-logo-text {
  color: #ffffff;
}

.site-footer--neutral .footer-bottom {
  background: #0a0a0a;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 16px;
}

.site-footer--neutral .footer-col ul li a:hover,
.site-footer--neutral .footer-legal-links a:hover {
  opacity: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand .footer-logo svg {
  width: 36px;
  height: 36px;
}

.footer-brand .footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-brand .footer-slogan {
  font-size: 0.85rem;
  opacity: 0.7;
  max-width: 400px;
  line-height: 1.4;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.footer-col ul li a:hover {
  opacity: 1;
}

.footer-col .footer-zone {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: all var(--transition-fast);
  opacity: 0.7;
}

.footer-social-link:hover {
  opacity: 1;
  transform: translateY(-1px) scale(1.05);
}

.footer-social-link--facebook {
  background: #1877f2;
}

.footer-social-link--whatsapp {
  background: var(--whatsapp);
}

.footer-social-link--tiktok {
  background: linear-gradient(145deg, #111 0%, #1b1b1b 100%);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

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

.footer-copyright {
  font-size: 0.75rem;
  opacity: 0.5;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a {
  font-size: 0.75rem;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.footer-legal-links a:hover {
  opacity: 1;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ========== PAGE-SPECIFIC: VITRES CLIENT ICONS ========== */
.client-types {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.client-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(0, 102, 204, 0.08);
  color: var(--blue-pro);
}

.client-type-badge svg {
  width: 14px;
  height: 14px;
}

/* ========== AUTO-PAGE MENTIONS ========== */
.auto-mentions {
  margin-top: 48px;
  padding: 24px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  line-height: 1.6;
}

.auto-mentions--dark {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.auto-mentions--light {
  background: rgba(0, 102, 204, 0.03);
  border: 1px solid rgba(0, 102, 204, 0.1);
}

.auto-mentions li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.auto-mentions li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ========== RESERVATION PAGE ========== */
.resa-page {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 40px;
  min-height: 100vh;
  transition: background 0.5s ease, color 0.5s ease;
}

.resa-page--auto {
  background: var(--dark-bg);
  color: var(--text-dark);
}

.resa-page--vitres {
  background: var(--light-bg);
  color: var(--text-light);
}

/* ========== BOOKING CALENDAR ========== */
.booking-calendar {
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
}

.booking-calendar--dark {
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.booking-calendar--light {
  background: var(--light-card);
  border: 1px solid #ddd;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.booking-calendar--dark .calendar-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-calendar--light .calendar-header {
  border-bottom: 1px solid #e0e0e0;
}

.cal-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  border: none;
}

.booking-calendar--dark .cal-nav {
  color: var(--text-dark);
}

.booking-calendar--dark .cal-nav:hover {
  background: rgba(201, 168, 76, 0.15);
}

.booking-calendar--light .cal-nav {
  color: var(--text-light);
}

.booking-calendar--light .cal-nav:hover {
  background: rgba(0, 102, 204, 0.08);
}

.cal-month-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-calendar--dark .cal-month-label {
  color: var(--text-dark);
}

.booking-calendar--light .cal-month-label {
  color: var(--text-light);
}

.cal-day-names {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px 12px;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-calendar--dark .cal-day-names {
  color: var(--text-dark-muted);
}

.booking-calendar--light .cal-day-names {
  color: var(--text-light-muted);
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 4px 12px 16px;
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  border: none;
  background: none;
  width: 100%;
}

.booking-calendar--dark .cal-day {
  color: var(--text-dark);
}

.booking-calendar--dark .cal-day:hover:not(.cal-day--disabled):not(.cal-day--other) {
  background: rgba(201, 168, 76, 0.15);
}

.booking-calendar--light .cal-day {
  color: var(--text-light);
}

.booking-calendar--light .cal-day:hover:not(.cal-day--disabled):not(.cal-day--other) {
  background: rgba(0, 102, 204, 0.08);
}

.cal-day--other {
  opacity: 0.2;
  pointer-events: none;
}

.cal-day--disabled {
  opacity: 0.2;
  pointer-events: none;
  text-decoration: line-through;
}

.cal-day--with-label {
  border-radius: 10px;
  aspect-ratio: auto;
  min-height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  opacity: 0.62;
}

.cal-day-status {
  display: block;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.booking-calendar--dark .cal-day--reserved .cal-day-status {
  color: #d2b26a;
}

.booking-calendar--dark .cal-day--closed .cal-day-status {
  color: #8fc2ff;
}

.booking-calendar--light .cal-day--reserved .cal-day-status {
  color: #8a6c27;
}

.booking-calendar--light .cal-day--closed .cal-day-status {
  color: #3b6ca6;
}

.cal-day--today {
  font-weight: 700;
}

.booking-calendar--dark .cal-day--today {
  box-shadow: 0 0 0 1px var(--gold);
}

.booking-calendar--light .cal-day--today {
  box-shadow: 0 0 0 1px var(--blue-pro);
}

.cal-day--selected {
  font-weight: 700;
}

.booking-calendar--dark .cal-day--selected {
  background: var(--gold);
  color: var(--dark-bg);
  box-shadow: 0 0 12px var(--gold-glow);
}

.booking-calendar--light .cal-day--selected {
  background: var(--blue-pro);
  color: #fff;
  box-shadow: 0 0 12px var(--blue-sky-glow);
}

.cal-day--has-slots::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.booking-calendar--dark .cal-day--has-slots::after {
  background: var(--green-neon);
}

.booking-calendar--light .cal-day--has-slots::after {
  background: var(--blue-pro);
}

/* TIME SLOTS */
.time-slots {
  margin-top: 0;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.slot-btn {
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1.5px solid transparent;
  background: none;
  font-family: var(--font-body);
}

.slot-btn--available {
  cursor: pointer;
}

.booking-calendar--dark .slot-btn--available {
  border-color: rgba(74, 255, 74, 0.25);
  color: #ffffff;
}

.booking-calendar--dark .slot-btn--available:hover {
  border-color: var(--green-neon);
  background: rgba(74, 255, 74, 0.08);
  color: #ffffff;
}

.booking-calendar--dark .slot-btn--available.selected {
  border-color: var(--green-neon);
  background: rgba(74, 255, 74, 0.2);
  color: #ffffff;
  box-shadow: 0 0 20px var(--green-neon-glow), inset 0 0 20px rgba(74, 255, 74, 0.05);
  position: relative;
}

.booking-calendar--dark .slot-btn--available.selected::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-neon);
  box-shadow: 0 0 8px var(--green-neon-glow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.booking-calendar--light .slot-btn--available {
  border-color: rgba(0, 102, 204, 0.2);
  color: var(--text-light);
}

.booking-calendar--light .slot-btn--available:hover {
  border-color: var(--blue-pro);
  background: rgba(0, 102, 204, 0.06);
}

.booking-calendar--light .slot-btn--available.selected {
  border-color: var(--blue-pro);
  background: rgba(0, 102, 204, 0.15);
  color: var(--blue-pro);
  box-shadow: 0 0 20px var(--blue-sky-glow), inset 0 0 20px rgba(0, 102, 204, 0.05);
  position: relative;
}

.booking-calendar--light .slot-btn--available.selected::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-pro);
  box-shadow: 0 0 8px var(--blue-sky-glow);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.slot-btn--booked {
  border-color: transparent;
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
  position: relative;
}

.booking-calendar--dark .slot-btn--booked {
  color: var(--text-dark-muted);
}

.booking-calendar--light .slot-btn--booked {
  color: var(--text-light-muted);
}

.slot-btn--booked::after {
  content: 'Réservé';
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 0.55rem;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 700;
}

.booking-calendar--dark .slot-btn--booked::after {
  background: rgba(255, 68, 68, 0.2);
  color: #ff6666;
}

.booking-calendar--light .slot-btn--booked::after {
  background: rgba(255, 68, 68, 0.1);
  color: #cc3333;
}

.cal-no-slots {
  font-size: 0.85rem;
  opacity: 0.5;
  padding: 16px 0;
  text-align: center;
}

/* ========== BOOKING SELECTION BADGE ========== */
.booking-selection {
  margin-top: 12px;
  animation: slideDown 0.35s ease;
}

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

.selection-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.booking-selection .selection-badge {
  background: rgba(74, 255, 74, 0.1);
  border: 1px solid rgba(74, 255, 74, 0.25);
  color: var(--green-neon);
}

.resa-page--vitres .booking-selection .selection-badge {
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.2);
  color: var(--blue-pro);
}

.selection-text {
  line-height: 1.3;
}

/* Smooth month transition */
.cal-days {
  transition: opacity 0.25s ease;
}

.cal-days.fading {
  opacity: 0;
}

/* Slot availability indicator on calendar days */
.cal-day--full {
  position: relative;
}

.cal-day--full::after {
  background: #ff4444 !important;
}
.multi-step {
  position: relative;
}

.step-indicators {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 36px;
  position: relative;
}

.step-indicators::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(212, 175, 87, 0.35);
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  text-align: center;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  transition: all var(--transition-base);
  position: relative;
  background: #101010;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-dot.active {
  background: var(--gold);
  color: #121212;
  box-shadow: 0 0 10px var(--gold-glow);
}

.step-dot.done {
  background: var(--green-neon);
  border-color: var(--green-neon);
  color: #12200f;
  box-shadow: 0 0 10px var(--green-neon-glow);
}

.step-dot.done {
  color: transparent;
}

.step-dot.done::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f1c0c;
  font-weight: 900;
  font-size: 0.88rem;
}

.step-dot.progress {
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.step-label {
  margin-top: 8px;
  font-size: 0.72rem;
  line-height: 1.3;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.step-dot.active + .step-label,
.step-dot.done + .step-label {
  color: var(--text-dark);
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 var(--gold-glow);
  }

  50% {
    box-shadow: 0 0 0 6px var(--gold-glow);
  }
}

.step-content {
  display: none;
  animation: stepFadeIn 0.4s ease;
  padding-bottom: 20px;
}

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

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.form-submit {
  margin-top: 24px;
  margin-bottom: 60px;
}

.vehicle-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.vehicle-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  border: 2px solid transparent;
}

.vehicle-type-card--dark {
  background: var(--dark-card);
  border-color: rgba(201, 168, 76, 0.15);
  color: var(--text-dark);
}

.vehicle-type-card--dark:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.vehicle-type-card--dark.selected {
  border-color: var(--green-neon);
  background: rgba(74, 255, 74, 0.08);
  box-shadow: 0 0 20px var(--green-neon-glow);
}

.vehicle-type-card--light {
  background: var(--light-card);
  border-color: #e0e0e0;
  color: var(--text-light);
}

.vehicle-type-card--light:hover {
  border-color: var(--blue-pro);
  transform: translateY(-3px);
}

.vehicle-type-card--light.selected {
  border-color: var(--blue-pro);
  background: rgba(0, 102, 204, 0.08);
  box-shadow: 0 0 20px var(--blue-sky-glow);
}

.vehicle-type-card svg {
  width: 36px;
  height: 36px;
}

.vehicle-type-card span {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

.price-surcharge {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 8px;
  display: none;
}

.price-surcharge.visible {
  display: inline-block;
}

.price-surcharge--dark {
  background: rgba(255, 68, 68, 0.15);
  color: #ff6666;
  border: 1px solid rgba(255, 68, 68, 0.3);
}

.price-surcharge--light {
  background: rgba(255, 68, 68, 0.08);
  color: #cc3333;
  border: 1px solid rgba(255, 68, 68, 0.15);
}

.form-alert {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-alert--warning {
  background: rgba(212, 175, 87, 0.14);
  border: 1px solid rgba(212, 175, 87, 0.45);
  color: #f2ddb0;
}

/* ========== BA AUTO-SCROLL ========== */
.ba-autoscroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.ba-autoscroll::-webkit-scrollbar {
  display: none;
}

.ba-autoscroll .ba-slider {
  min-width: 300px;
  max-width: 380px;
  scroll-snap-align: start;
  flex-shrink: 0;
  aspect-ratio: 4/3;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 767px) {
  .section {
    padding: 60px 20px;
  }

  .floating-btns {
    bottom: 16px;
    padding: 0 16px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }

  .dual-card {
    padding: 42px 22px 32px;
    min-height: 360px;
    border-radius: 30px;
  }

  .dual-card::before {
    inset: 10px;
    border-radius: 22px;
  }

  .dual-card-title {
    font-size: 2.35rem;
  }

  .dual-card-price {
    font-size: 2rem;
  }

  .dual-card-cta {
    min-width: 210px;
    font-size: 1.65rem;
    padding: 14px 26px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .hero-logo {
    width: 280px;
    height: 280px;
    margin: 0 auto -130px;
  }

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

  .step-indicators {
    gap: 6px;
    margin-bottom: 28px;
  }

  .step-indicators::before {
    left: 10%;
    right: 10%;
  }

  .step-dot {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }

  .step-label {
    font-size: 0.62rem;
  }
}

@media (max-width: 480px) {
  .sub-grid {
    grid-template-columns: 1fr;
  }

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

  .counters-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

/* ========== UTILITY ========== */
.text-gold {
  color: var(--gold);
}

.text-neon {
  color: var(--green-neon);
}

.text-blue {
  color: var(--blue-pro);
}

.text-sky {
  color: var(--blue-sky);
}

.text-muted {
  opacity: 0.6;
}

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

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.gap-16 {
  gap: 16px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
