/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
  --color-primary: #4FB6B3;
  --color-primary-dark: #3a9996;
  --color-primary-light: #e6f4f3;
  --color-dark: #151410;
  --color-dark-soft: #1e1b16;
  --color-cream: #F4F6F8;
  --color-white: #FFFFFF;
  --color-text: #181712;
  --color-text-light: #5a5a5a;
  --color-border: #e5e5e5;
  --color-glass: rgba(255, 255, 255, 0.75);
  --color-input-bg: #f7fafc;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 2px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --transition-fast: 0.25s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: #2D3748;
  background-color: var(--color-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: #1A202C;
  line-height: 1.2;
}

p, a, span, label, input, button, select {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
}

.img-illustration {
  filter: contrast(1.05) saturate(1.1) brightness(1.03);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: filter var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.img-illustration:hover {
  filter: contrast(1.08) saturate(1.15) brightness(1.05);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   ARRIERE-PLAN FILIGRANE DENTAIRE
   ========================================= */
.bg-pattern-logo {
    background-color: #F4F6F8;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 25 C30 10, 45 10, 50 25 C55 10, 70 10, 70 25 C70 45, 60 55, 60 75 C60 85, 50 90, 50 90 C50 90, 40 85, 40 75 C40 55, 30 45, 30 25 Z' stroke='%230f172a' stroke-width='1' fill='none' stroke-opacity='0.03'/%3E%3C/svg%3E");
    background-size: 250px;
}

.bg-pattern-dentaire {
    background-color: #F4F6F8;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg' stroke='%234FB6B3' stroke-width='0.8' fill='none' stroke-linecap='round' stroke-linejoin='round' stroke-opacity='0.04'%3E%3C!-- Dent --%3E%3Cpath d='M40,50 C20,50 30,80 50,90 C70,80 80,50 60,50 C50,50 50,60 50,60 C50,60 50,50 40,50 Z' /%3E%3C!-- Miroir --%3E%3Ccircle cx='280' cy='120' r='12'/%3E%3Cline x1='280' y1='132' x2='280' y2='170'/%3E%3C!-- Outil --%3E%3Crect x='150' y='280' width='12' height='26' rx='3'/%3E%3Cline x1='156' y1='280' x2='156' y2='260'/%3E%3Cline x1='148' y1='270' x2='164' y2='270'/%3E%3C!-- Sourire --%3E%3Cpath d='M280,320 Q320,360 360,320' /%3E%3C/svg%3E");
    background-size: 350px;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.15s;
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* =========================================
   HEADER & NAVBAR (LUXE)
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--transition-base), border-color var(--transition-base), backdrop-filter var(--transition-base), padding var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  width: 100%;
  transition: padding var(--transition-base);
}

.site-header.scrolled .navbar {
  padding: 10px 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4FB6B3;
  margin-top: 4px;
  font-weight: 600;
}

.site-header.scrolled .brand-name {
  color: var(--color-text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--color-white);
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  box-shadow: var(--shadow-md);
  transform-origin: top;
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}

.nav-links.is-open {
  display: flex;
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
}

.nav-links:not(.is-open) {
  opacity: 0;
  transform: scaleY(0);
  visibility: hidden;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  height: 18px;
  justify-content: center;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

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

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

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

.btn-rdv {
  display: none;
  padding: 9px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  font-weight: 400;
  font-size: 0.85rem;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-rdv:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(79, 182, 179, 0.3);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  z-index: 1;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-color: var(--color-dark);
  z-index: 0;
  transform: scale(1);
  will-change: transform;
  filter: contrast(1.02) brightness(1.02);
  overflow: hidden;
}

.hero-slider .slide img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(15, 30, 60, 0.35) 0%, rgba(255, 255, 255, 0) 55%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0;
  color: var(--color-white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 0;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

@media (min-width: 1024px) {
  .hero-slider .slide {
    transform: none;
  }
}

.hero-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content strong {
  font-weight: 600;
  color: var(--color-white);
}

.hero-cta {
  display: inline-block;
  padding: 14px 32px;
  background: rgba(79, 182, 179, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-white);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero-cta:hover {
  background: rgba(79, 182, 179, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 182, 179, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* =========================================
   SECTIONS GLOBAL
   ========================================= */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.2;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* =========================================
   LE CABINET
   ========================================= */
.section-cabinet {
  padding: 80px 0;
  background: var(--color-white);
}

.cabinet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.cabinet-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cabinet-text p {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.cabinet-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cabinet-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  filter: saturate(0.88);
  max-height: 450px;
  object-fit: cover;
}

.cabinet-image:hover img {
  transform: scale(1.04);
}

/* =========================================
   ESPACE DE SOINS
   ========================================= */
.section-soins {
  padding: 80px 0;
  background: var(--color-white);
}

.soins-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.soins-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.soins-text p {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.soins-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.soins-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  filter: saturate(0.88);
  max-height: 450px;
  object-fit: cover;
}

.soins-image:hover img {
  transform: scale(1.04);
}

/* =========================================
   A PROPOS
   ========================================= */
.section-apropos {
  padding: 80px 0;
  background: var(--color-cream);
}

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.apropos-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.apropos-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  filter: saturate(0.88);
  max-height: 450px;
  object-fit: cover;
}

.apropos-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.apropos-text p {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =========================================
   SERVICES
   ========================================= */
.section-services {
  padding: 80px 0;
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.section-services .section-title {
  color: var(--color-white);
}

.section-services .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.services-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 32px;
}

.services-title-group {
  flex: 1 1 auto;
}

.services-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.services-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.services-arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 182, 179, 0.25);
}

.services-arrow:active {
  transform: translateY(0);
}

.services-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 24px;
  max-width: 1440px;
  margin: 0 auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

.services-grid:active {
  cursor: grabbing;
}

.service-card {
  flex: 0 0 85vw;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--color-dark);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.service-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,20,16,0.95) 0%, rgba(21,20,16,0.55) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.service-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-white);
  line-height: 1.25;
}

.service-overlay p {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .service-card {
    flex: 0 0 75vw;
  }
}

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

  .service-card {
    flex: 0 0 520px;
  }

  .service-overlay h3 {
    font-size: 1.6rem;
  }

  .service-overlay p {
    font-size: 1rem;
  }
}

/* =========================================
   TÉMOIGNAGES
   ========================================= */
.section-temoignages {
  padding: 50px 0;
  background: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234FB6B3' fill-opacity='0.04'%3E%3Cpath d='M40 30c0-5.523 4.477-10 10-10 5.523 0 10 4.477 10 10 0 5.523-4.477 10-10 10-5.523 0-10-4.477-10-10zm-20 0c0-5.523 4.477-10 10-10 5.523 0 10 4.477 10 10 0 5.523-4.477 10-10 10-5.523 0-10-4.477-10-10zM20 50c0-5.523 4.477-10 10-10 5.523 0 10 4.477 10 10 0 5.523-4.477 10-10 10-5.523 0-10-4.477-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  overflow: hidden;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.tab-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.tab-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(79, 182, 179, 0.25);
}

.tabs-content {
  position: relative;
}

.tab-panel {
  display: none;
}

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

.temoignages-grid,
.cases-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 24px;
  max-width: 1440px;
  margin: 0 auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.temoignages-grid::-webkit-scrollbar,
.cases-grid::-webkit-scrollbar {
  display: none;
}

.temoignages-grid:active,
.cases-grid:active {
  cursor: grabbing;
}

.testimonial-card {
  flex: 0 0 78vw;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(79, 182, 179, 0.12);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.video-trigger {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.video-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.testimonial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.video-trigger:hover .play-btn {
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%) scale(1.08);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.testimonial-quote {
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  padding: 20px 20px 24px;
  background: var(--color-cream);
  position: relative;
  width: 100%;
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.6rem;
  font-style: normal;
  color: var(--color-primary);
  opacity: 0.4;
  line-height: 1;
  font-family: var(--font-heading);
}

.case-card {
  flex: 0 0 78vw;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case-photos-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
}

.photo-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.88);
}

@media (max-width: 639px) {
  .tabs-nav {
    gap: 6px;
    margin-top: 16px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .temoignages-grid,
  .cases-grid {
    gap: 16px;
    padding: 16px;
  }

  .testimonial-card {
    flex: 0 0 82vw;
  }

  .case-card {
    flex: 0 0 82vw;
  }

  .photo-badge {
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    font-size: 0.65rem;
  }

  .video-trigger {
    max-width: 100%;
    aspect-ratio: 3 / 4;
  }

  .play-btn {
    width: 44px;
    height: 44px;
  }

  .play-btn svg {
    width: 16px;
    height: 16px;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }
}

@media (min-width: 640px) {
  .temoignages-grid,
  .cases-grid {
    gap: 24px;
    padding: 24px;
  }

  .testimonial-card {
    flex: 0 0 70vw;
  }

  .case-card {
    flex: 0 0 70vw;
  }
}

@media (min-width: 1024px) {
  .temoignages-grid,
  .cases-grid {
    gap: 24px;
    padding: 24px;
  }

  .testimonial-card {
    flex: 0 0 400px;
  }

  .case-card {
    flex: 0 0 400px;
  }
}

/* =========================================
   LIGHTBOX VIDEO
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  z-index: 1001;
}

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

.lightbox-content {
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content video,
.lightbox-content iframe {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 0;
}

/* =========================================
   CONTACT
   ========================================= */
.section-contact {
  padding: 50px 0;
  background: var(--color-cream);
}

.section-contact .container {
  max-width: none;
  padding: 0;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
  margin: 0;
}

.contact-info {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  height: 100%;
  min-height: 0;
}

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

.contact-info .section-subtitle {
  text-align: left;
  margin: 0 0 28px;
}

.map-wrapper {
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 28px;
  background: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.btn-avis {
  display: inline-block;
  padding: 14px 28px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  font-weight: 400;
  font-size: 0.95rem;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-avis:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 182, 179, 0.3);
}

.contact-details {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.contact-details p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-form-wrapper {
  padding: 40px 24px;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: 100%;
  min-height: 0;
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--color-text);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-bottom: 2px solid var(--color-border);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-input-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-bottom-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(79, 182, 179, 0.1);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: 50px;
  font-weight: 400;
  font-size: 1rem;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 30, 47, 0.25);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 640px) {
  .contact-split {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .contact-info {
    padding: 40px 32px;
  }

  .contact-form-wrapper {
    padding: 40px 32px;
  }

  .map-wrapper {
    margin-bottom: 0;
    border-radius: 0;
  }

  .contact-card {
    border-radius: 0;
  }
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background-color: #111418;
  color: #E2E8F0;
  padding: 80px 0 20px 0;
  font-family: 'Manrope', sans-serif;
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-desc {
  color: #A0AEC0;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 300px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: #4FB6B3;
  border-color: #4FB6B3;
}

.footer-subtitle {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 700;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #A0AEC0;
  font-size: 14.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4FB6B3;
}

.footer-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 25px 40px 0;
  text-align: center;
  color: #718096;
  font-size: 13px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Une seule colonne */
        gap: 45px; /* Espace respirant entre les sections */
        padding: 0 25px; /* Réduction des marges latérales */
        text-align: center; /* Centre tout le texte pour un effet premium */
    }
    
    .footer-col {
        align-items: center; /* Centre les éléments comme l'icône Instagram */
    }
    
    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-bottom {
        padding: 30px 25px;
        /* Ajout d'un espace de sécurité pour la barre de navigation des smartphones (iPhone, etc.) */
        padding-bottom: calc(30px + env(safe-area-inset-bottom));
        text-align: center;
    }
}

/* =========================================
    FLOATING CALL BUTTON
    ========================================= */
.call-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  background: #20bd5a;
}

.call-float svg {
  width: 30px;
  height: 30px;
}

/* =========================================
    SERVICE PAGE HERO
    ========================================= */
.service-page-hero {
  padding: 120px 24px 80px;
  background: var(--color-dark);
  text-align: center;
  color: var(--color-white);
}

.service-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.service-meta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.service-page-hero h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  margin: 16px 0 0;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   SERVICE CONTENT
   ========================================= */
.service-content {
  padding: 120px 0;
}

/* =========================================
   ZIG-ZAG SERVICES (REFONTE)
   ========================================= */
.zig-zag-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.zig-zag-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* FORCE L'IMAGE À GAUCHE UNE FOIS SUR DEUX */
.zig-zag-row:nth-child(even) {
    flex-direction: row-reverse;
}

.zig-zag-row > div, .zig-zag-row > img {
    flex: 1; /* Chaque moitié prend 50% de l'espace */
    width: 50%;
}

.zig-zag-row img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    object-fit: cover;
}

.zig-zag-row .content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 6px;
    line-height: 1.25;
}

.zig-zag-row .content p {
    font-size: 1.05rem;
    font-weight: 400;
    color: #1a202c;
    line-height: 1.8;
    margin-bottom: 16px;
}

.zig-zag-row .content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.zig-zag-row .content li {
    font-size: 1rem;
    font-weight: 400;
    color: #1a202c;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.zig-zag-row .content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 1px;
    background: var(--color-primary);
}

@media (max-width: 768px) {
    .zig-zag-row,
    .zig-zag-row:nth-child(even) {
        flex-direction: column;
    }

    .zig-zag-row > div,
    .zig-zag-row > img {
        width: 100%;
    }
}

/* =========================================
   SERVICE NAVIGATION (LARGE & VISUAL)
   ========================================= */
.service-navigation {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 320px;
}

.service-nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  color: var(--color-white);
  text-decoration: none;
  overflow: hidden;
  min-height: 320px;
}

.service-nav-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  opacity: 0.65;
  z-index: 1;
  transition: opacity var(--transition-base);
}

.service-nav-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-nav-item.prev::after {
  background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=1200&auto=format&fit=crop');
}

.service-nav-item.next::after {
  background-image: url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?q=80&w=1200&auto=format&fit=crop');
}

.service-nav-item:hover::before {
  opacity: 0.45;
}

.service-nav-item:hover::after {
  transform: scale(1.08);
}

.service-nav-item > * {
  position: relative;
  z-index: 2;
}

.service-nav-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  opacity: 0.9;
}

.service-nav-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.2;
}

.service-nav-arrow {
  display: inline-block;
  margin-top: 16px;
  font-size: 1.5rem;
  opacity: 0.8;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

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

.service-nav-item.prev:hover .service-nav-arrow {
  transform: translateX(-6px);
}

.service-nav-item.next:hover .service-nav-arrow {
  transform: translateX(6px);
}

@media (min-width: 640px) {
  .service-navigation {
    grid-template-columns: 1fr 1fr;
  }

  .service-nav-item {
    min-height: 400px;
  }
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (min-width: 640px) {
  .services-arrow {
    display: flex;
  }

  .cabinet-grid,
  .apropos-grid {
    grid-template-columns: 3fr 2fr;
    gap: 72px;
  }

  .soins-grid {
    grid-template-columns: 2fr 3fr;
    gap: 72px;
  }

  .contact-split {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .contact-info {
    padding: 56px;
  }

  .contact-form-wrapper {
    padding: 56px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    gap: 40px;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    border-bottom: none;
    margin: 0 auto;
  }

  .nav-link {
    border-bottom: none;
    padding: 0;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: #1a202c;
    position: relative;
    text-decoration: none;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-fast);
  }

  .nav-link:hover {
    color: var(--color-primary);
  }

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

  .hamburger {
    display: none;
  }

  .btn-rdv {
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .navbar {
    padding: 24px 24px 24px 24px;
  }

  .site-header.scrolled .navbar {
    padding: 18px 24px;
  }

  .brand-name {
    font-size: 24px;
  }

  .logo-img {
    height: 56px;
  }

  .service-card {
    flex: 0 0 520px;
  }

  .lightbox-content {
    max-width: 1000px;
  }
}

@media (max-width: 859px) {
  .navbar {
    padding: 10px 16px;
  }

  .site-header.scrolled .navbar {
    padding: 8px 16px;
  }

  .brand {
    gap: 8px;
  }

  .logo-img {
    height: 38px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-subtitle {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .header-actions {
    gap: 8px;
  }

  .btn-rdv {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .hero-content h1 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .hero-content h3 {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .section-cabinet,
  .section-apropos,
  .section-services,
  .section-temoignages,
  .section-contact {
    padding: 50px 0;
  }
  .cabinet-grid,
  .apropos-grid,
  .soins-grid {
    gap: 36px;
  }

  .services-grid {
    gap: 16px;
    padding: 0 16px;
  }

  .service-card {
    flex: 0 0 82vw;
  }

  .service-overlay h3 {
    font-size: 1.15rem;
  }

  .service-overlay p {
    font-size: 0.85rem;
  }

  .contact-info {
    padding: 28px 20px;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .contact-form-wrapper h3 {
    font-size: 1.3rem;
  }

  .form-group input,
  .form-group select {
    padding: 12px;
    font-size: 1rem;
  }

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

  .contact-details {
    margin-top: 16px;
    padding-top: 16px;
  }

  .contact-details p {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .map-wrapper {
    height: 220px;
    margin-bottom: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .footer-brand,
  .footer-cta,
  .footer-legal {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 40px;
    box-shadow: none;
    z-index: 999;
    opacity: 0;
    transform: scaleY(0.95);
    visibility: hidden;
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  }

  .nav-links.is-open {
    display: flex;
    opacity: 1;
    transform: scaleY(1);
    visibility: visible;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: none;
  }

  .hamburger {
    display: flex;
  }

  .btn-rdv {
    display: none;
  }
}

@media (min-width: 640px) and (max-width: 859px) {
  .services-grid {
    gap: 20px;
    padding: 0 20px;
  }

  .service-card {
    flex: 0 0 70vw;
  }

  .container {
    padding: 0 48px;
  }

  .navbar {
    padding: 28px 48px 28px 32px;
  }

  .site-header.scrolled .navbar {
    padding: 20px 48px 20px 32px;
  }

  .logo-img {
    height: 64px;
  }

  .services-track {
    gap: 32px;
  }

  .service-card {
    flex: 0 0 520px;
  }
}

@media (max-width: 768px) {
  .section-cabinet,
  .section-apropos,
  .section-services,
  .section-temoignages,
  .section-contact {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 28px;
  }
  .cabinet-grid,
  .apropos-grid,
  .soins-grid {
    gap: 24px;
  }

  .cabinet-image img,
  .apropos-image img,
  .soins-image img {
    max-height: 45vh;
    object-fit: cover;
  }
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 85vw;
    scroll-snap-align: start;
  }

  .map-wrapper {
    height: 200px;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 20px 16px;
  }

  .footer-container {
    gap: 32px;
    padding: 0 16px;
  }
}
