/* -------------------------------------------------------------
   DESIGN SYSTEM & VARIABLES - THEME BLEU MARINE CHIC
   ------------------------------------------------------------- */
:root {
  /* Color Palette - Point Vision Inspired (Clinical & Luminous) */
  --primary: #3399ff; /* Bleu dynamique Point Vision */
  --primary-hover: #1e75d8;
  --primary-light: #e3f1fb; /* Bleu pâle Point Vision (Backgrounds) */
  --primary-dark: #153153; /* Bleu nuit Point Vision (Textes forts) */
  
  --secondary: #ffffff; /* Blanc pur pour les cartes et boutons */
  --secondary-light: #f9fafb; /* Gris très clair pour sections/cartes */
  --secondary-muted: #64748b; /* Gris secondaire pour textes */
  
  --text-main: #475569; /* Gris foncé lisible */
  --text-dark: #153153; /* Bleu très sombre (Titre Point Vision) */
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --bg-body: #ffffff; /* Fond blanc pur */
  --bg-card: #ffffff; /* Fond carte blanc pur */
  
  --success: #8cc14c; /* Vert Point Vision */
  --success-light: rgba(140, 193, 76, 0.15);
  --warning: #faa732; /* Orange Point Vision */
  --warning-light: rgba(250, 167, 50, 0.15);
  --danger: #da4d31; /* Rouge Point Vision */
  --danger-light: rgba(218, 77, 49, 0.15);
  --info: #6bb2e3; /* Bleu clair Point Vision */
  --info-light: #e3f1fb;
  
  /* Fonts & Shadows */
  --font-family: 'Open Sans', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(21, 49, 83, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(21, 49, 83, 0.1), 0 2px 4px -2px rgba(21, 49, 83, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(21, 49, 83, 0.1);
  --shadow-xl: 0 15px 35px -10px rgba(21, 49, 83, 0.15);
  --shadow-glow: 0 0 15px rgba(51, 153, 255, 0.2);
  
  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* -------------------------------------------------------------
   BASE RESET & LAYOUT
   ------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

a:hover {
  color: var(--primary-hover);
}

ul {
  list-style: none;
}

/* -------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* -------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: var(--font-family);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-light);
  color: var(--text-dark);
  border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.btn-warning {
  background-color: var(--warning);
  color: var(--secondary);
}

.btn-warning:hover {
  background-color: #fbbf24;
  transform: translateY(-2px);
}

.btn-danger {
  background-color: var(--danger);
  color: var(--text-white);
}

.btn-danger:hover {
  background-color: #f87171;
  transform: translateY(-2px);
}

.btn-success {
  background-color: var(--success);
  color: var(--secondary);
}

.btn-success:hover {
  background-color: #34d399;
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* -------------------------------------------------------------
   HEADER & NAVIGATION
   ------------------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 44px;
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--primary); /* Met en avant la couleur de marque */
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu ul {
  display: flex;
  gap: 24px;
}

.nav-link {
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 4px;
  position: relative;
}

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

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  position: relative;
  transition: var(--transition-fast);
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  left: 0;
  transition: var(--transition-fast);
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* Hamburger Open States */
.nav-toggle.open .hamburger {
  background-color: transparent;
}
.nav-toggle.open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.open .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* -------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------- */
.hero-section {
  padding: 160px 0 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-body) 0%, var(--primary-light) 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 16px;
  background-color: rgba(56, 189, 248, 0.1);
  color: var(--primary);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title span {
  color: var(--primary);
  position: relative;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-main);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 32px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-muted);
}

.feature-item i {
  color: var(--primary);
  font-size: 1.15rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-backdrop {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 60%);
  z-index: 1;
}

.hero-image-wrapper .hero-img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(56, 189, 248, 0.1);
  border: 4px solid var(--secondary-light);
  position: relative;
  z-index: 2;
  transition: var(--transition-slow);
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.02);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(56, 189, 248, 0.2);
}

.hero-floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid #e2e8f0;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

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

.hero-floating-card .card-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.hero-floating-card h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.hero-floating-card p {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* -------------------------------------------------------------
   SERVICES SECTION
   ------------------------------------------------------------- */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-body);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition-normal);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
  opacity: 0;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: rgba(56, 189, 248, 0.1);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition-normal);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--primary);
  color: var(--secondary);
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary-muted);
}

.service-list li i {
  color: var(--primary);
  font-size: 0.95rem;
}

/* -------------------------------------------------------------
   INTERACTIVE DECISION TREE SECTION
   ------------------------------------------------------------- */
.orientation-section {
  padding: 100px 0;
  background-color: var(--secondary-light);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.decision-tree-container {
  max-width: 800px;
  margin: 0 auto;
  perspective: 1000px;
}

.dt-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid #e2e8f0;
  display: none;
  flex-direction: column;
  gap: 32px;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dt-card.active {
  display: flex;
}

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

.dt-progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dt-progress .step-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dt-progress .bar {
  width: 100%;
  height: 6px;
  background-color: var(--secondary-light);
  border-radius: 10px;
  overflow: hidden;
}

.dt-progress .fill {
  height: 100%;
  background-color: var(--primary);
  border-radius: 10px;
  transition: width 0.4s ease;
}

.dt-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.dt-icon {
  font-size: 3rem;
  color: var(--primary);
  background-color: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 8px;
}

.dt-header h3 {
  font-size: 1.65rem;
  color: var(--text-dark);
}

.dt-instructions {
  color: var(--text-main);
  font-size: 1rem;
  max-width: 580px;
}

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

.option-btn {
  background-color: var(--bg-card);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  font-family: var(--font-family);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.option-btn:hover {
  border-color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.option-icon {
  font-size: 2.25rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

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

.option-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.option-text strong {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.option-text span {
  font-size: 0.85rem;
  color: var(--text-main);
}

.dt-pathologies-list, .dt-symptoms-list {
  background-color: var(--secondary-light);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dt-pathologies-list p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.dt-symptoms-list ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dt-symptoms-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.dt-symptoms-list li i {
  color: var(--danger);
  font-size: 1.15rem;
}

.dt-info-box {
  background-color: var(--info-light);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: #22d3ee;
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dt-options-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.dt-choices {
  display: flex;
  gap: 16px;
}

/* Results Formatting */
.result-card {
  text-align: center;
  align-items: center;
}

.result-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 8px;
}

.result-icon.success {
  background-color: var(--success-light);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.result-icon.warning {
  background-color: var(--warning-light);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.result-icon.danger {
  background-color: var(--danger-light);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.result-message {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  max-width: 600px;
}

.result-submessage {
  color: var(--text-main);
  font-size: 0.95rem;
  max-width: 580px;
}

.result-details {
  background-color: var(--secondary-light);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  text-align: left;
  width: 100%;
  max-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.result-details p {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.result-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-details li {
  font-size: 0.9rem;
  display: flex;
  gap: 8px;
  color: var(--text-main);
}

.result-details li i {
  color: var(--primary);
  margin-top: 4px;
}

.result-actions {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

/* -------------------------------------------------------------
   ABOUT SECTION (LE CABINET)
   ------------------------------------------------------------- */
.cabinet-section {
  padding: 100px 0;
  background-color: var(--bg-body);
}

.cabinet-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.cabinet-image-gallery .gallery-large {
  position: relative;
}

.cabinet-image-gallery .cabinet-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 0, 0, 0.5);
  border: 6px solid var(--secondary-light);
}

.cabinet-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cabinet-text .lead-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.cabinet-text p {
  color: var(--text-main);
  font-size: 1rem;
}

.partnership-badge {
  display: flex;
  gap: 20px;
  background-color: rgba(56, 189, 248, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 16px;
  border: 1px solid rgba(56, 189, 248, 0.15);
}

.partnership-badge .badge-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.partnership-badge .badge-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.partnership-badge h4 {
  font-size: 1.05rem;
  color: var(--primary);
}

.partnership-badge p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-main);
}

.partner-link {
  font-size: 0.9rem;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 4px;
}

/* -------------------------------------------------------------
   CONTACT & HOURS SECTION
   ------------------------------------------------------------- */
.contact-section {
  padding: 100px 0;
  background-color: var(--primary-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-info-card, .hours-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

.contact-info-card h3, .hours-card h3 {
  margin-bottom: 24px;
  font-size: 1.45rem;
  color: var(--text-dark);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 12px;
}

.info-item-row {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.info-item-row:last-of-type {
  margin-bottom: 0;
}

.info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--secondary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-desc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-desc h4 {
  font-size: 1rem;
  color: var(--text-dark);
}

.info-desc p {
  color: var(--text-main);
  font-size: 0.95rem;
}

.phone-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.map-directions-link {
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.info-subtext {
  font-size: 0.8rem;
  color: var(--text-light);
}

.contact-booking-btn {
  margin-top: 32px;
}

/* Hours Card */
.hours-notice {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-style: italic;
}

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.hours-row .day {
  color: var(--text-dark);
  font-weight: 600;
}

.hours-row .time {
  color: var(--text-main);
}

.hours-row.closed {
  color: var(--text-light);
}

.hours-row.closed .time {
  color: var(--danger);
  font-weight: 600;
}

/* Map Container Placeholder */
.map-container-wrapper {
  width: 100%;
}

.map-placeholder {
  position: relative;
  height: 360px;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

.map-bg-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-light);
  background-image: radial-gradient(var(--primary) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.1;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 12px;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.map-placeholder-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.map-overlay h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
}

.map-overlay p {
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */
.main-footer {
  background-color: var(--primary-dark); /* Très sombre Point Vision */
  color: #cbd5e1;
  padding: 80px 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h4, .footer-legal h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul, .footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-main);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-legal li {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  font-size: 0.8rem;
  background-color: #0d1e33;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-meta {
  color: var(--text-light);
}

/* -------------------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ------------------------------------------------------------- */
@media (max-width: 992px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.85rem; }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cabinet-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cabinet-image-gallery {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 70px;
  }
  
  .nav-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-card);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 32px 40px 32px;
    gap: 40px;
    transition: var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.1rem;
    display: block;
    width: 100%;
  }
  
  .nav-cta {
    width: 100%;
  }
  
  .dt-card {
    padding: 32px 20px;
    gap: 24px;
  }
  
  .dt-options-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .dt-options-row {
    flex-direction: column-reverse;
    gap: 16px;
    align-items: stretch;
  }
  
  .dt-choices {
    flex-direction: column;
    gap: 10px;
  }
  
  .result-actions {
    flex-direction: column-reverse;
    gap: 10px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

/* Card Scroll Animations */
.animate-card.animation-ready {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-card.animation-ready.visible {
  opacity: 1;
  transform: translateY(0);
}
