/* ==========================================================================
   DESIGN SYSTEM & RESPONSIVE STYLES - JESSICA MACCHI LATREILLE
   Optimisé pour mobile, tablette et desktop (Mobile-First Polish)
   ========================================================================== */
:root {
  --primary: #c97a63;          /* Terracotta poudré chaleureux */
  --primary-hover: #b36650;
  --primary-light: #fbeee8;
  --primary-dark: #8c4330;
  
  --secondary: #607d72;        /* Vert sauge apaisant */
  --secondary-light: #eef4f1;
  --secondary-hover: #4e675d;
  
  --accent: #d4a373;           /* Beige doré doux */
  --accent-light: #fefae0;
  
  --bg-main: #fdfbf9;          /* Blanc cassé lin naturel */
  --bg-card: #ffffff;
  --bg-subtle: #f7f3ee;
  
  --text-main: #2d3748;        /* Gris ardoise profond */
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --border-color: #ebdcd3;
  --border-light: #f3eae4;
  
  --shadow-sm: 0 2px 8px rgba(201, 122, 99, 0.08);
  --shadow-md: 0 8px 24px rgba(45, 55, 72, 0.07);
  --shadow-lg: 0 16px 36px rgba(45, 55, 72, 0.1);
  --shadow-hover: 0 12px 28px rgba(201, 122, 99, 0.18);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

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

ul {
  list-style: none;
}

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

/* Typography Responsive Clamped */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.22;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.55rem);
}

.lead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Badges & Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
  border: 1px solid var(--border-color);
}

.pill-sage {
  background-color: var(--secondary-light);
  color: var(--secondary-hover);
  border-color: #d1ded7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  min-height: 46px; /* Touch target optimal */
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(201, 122, 99, 0.35);
}

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

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

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--bg-subtle);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.86rem;
  min-height: 38px;
}

/* ==========================================================================
   NAVIGATION BAR & MOBILE DRAWER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(253, 251, 249, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.98);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 6px 0;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: clamp(40px, 8vw, 70px) 0 clamp(50px, 9vw, 80px);
  background: radial-gradient(circle at 85% 20%, #fef5f0 0%, var(--bg-main) 70%);
  position: relative;
  overflow: hidden;
}

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

.hero-content h1 {
  margin-bottom: 16px;
}

.hero-location-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 22px;
  padding: 10px 16px;
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--secondary-hover);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.hero-location-bar i {
  color: var(--primary);
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  margin-top: 6px;
  margin-bottom: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-main);
}

.trust-item i {
  color: var(--secondary);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.hero-floating-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 310px;
  animation: float 4s ease-in-out infinite;
}

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

.floating-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-main);
}

.floating-text span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

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

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
.section {
  padding: clamp(50px, 8vw, 85px) 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 6vw, 50px);
}

.section-sub {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  margin-top: 8px;
}

.bg-subtle {
  background-color: var(--bg-subtle);
}

/* ==========================================================================
   SERVICES / DANS QUELS CAS
   ========================================================================== */
.service-featured-wrap {
  max-width: 600px;
  margin: 0 auto 36px auto;
}

.service-card-featured {
  border: 2px solid rgba(201, 122, 99, 0.35);
  background: linear-gradient(145deg, #ffffff 0%, #fffaf7 100%);
  box-shadow: 0 10px 30px rgba(201, 122, 99, 0.12);
  text-align: center;
  align-items: center;
}

.service-card-featured .service-icon {
  margin: 0 auto 16px auto;
  width: 56px;
  height: 56px;
  font-size: 1.55rem;
  background-color: var(--primary);
  color: #ffffff;
}

.service-card-featured .service-benefits {
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  margin: 0 auto 18px auto;
}

.service-card-featured .service-footer {
  width: 100%;
}

.service-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary-dark);
  margin: 0 auto 14px auto;
}

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

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

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

.service-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin: 0 auto 18px auto; /* Centré dans toutes les tuiles */
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-benefits {
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-light);
}

.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-main);
  margin-bottom: 7px;
}

.service-benefits li i {
  color: var(--secondary);
  font-size: 0.78rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

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

.service-price span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: normal;
}

/* ==========================================================================
   ABOUT / PARCOURS SOIGNANT
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background-color: var(--secondary);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.exp-years {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-heading);
}

.exp-text {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content h2 {
  margin-bottom: 16px;
}

.about-content p {
  margin-bottom: 14px;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.points-list {
  margin: 20px 0 28px;
}

.point-item {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.point-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.point-text strong {
  display: block;
  color: var(--text-main);
  font-size: 0.94rem;
}

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

/* ==========================================================================
   LE CENTRE PÉRINATAL DE BLAUSASC / LIEU
   ========================================================================== */
.location-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.location-info {
  padding: clamp(24px, 5vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-details {
  margin: 20px 0 28px;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.loc-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.location-map-wrap {
  min-height: 380px;
  width: 100%;
  position: relative;
  background: #f1f5f9;
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ==========================================================================
   INSTAGRAM FEED DYNAMIQUE
   ========================================================================== */
.instagram-section {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.insta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 14px;
}

.insta-profile-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.insta-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  flex-shrink: 0;
}

.insta-avatar img {
  border-radius: 50%;
  border: 2px solid #ffffff;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-handle {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

.insta-status {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.insta-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.insta-media {
  position: relative;
  aspect-ratio: 1/1;
  background: #f1f5f9;
  overflow: hidden;
}

.insta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.insta-card:hover .insta-media img {
  transform: scale(1.05);
}

.insta-tag-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.insta-overlay-hover {
  position: absolute;
  inset: 0;
  background: rgba(45, 55, 72, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #ffffff;
  opacity: 0;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
}

.insta-card:hover .insta-overlay-hover {
  opacity: 1;
}

.insta-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.insta-caption {
  font-size: 0.82rem;
  color: var(--text-main);
  line-height: 1.45;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insta-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ==========================================================================
   BOOKING SECTION (CAL.COM EMBED)
   ========================================================================== */
.booking-section {
  background: linear-gradient(180deg, #fdf8f5 0%, var(--bg-main) 100%);
  padding: clamp(40px, 6vw, 75px) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.booking-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.booking-header {
  padding: clamp(20px, 4vw, 30px);
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.booking-title-group h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  margin-bottom: 4px;
}

.booking-title-group p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.booking-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary-light);
  color: var(--secondary-hover);
  border: 1px solid #d1ded7;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
}

/* ==========================================================================
   FAQ ACCORDION (SEO RICH SNIPPETS)
   ========================================================================== */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  border-color: rgba(201, 122, 99, 0.4);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 20px;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   FOOTER (ÉPURÉ & LÉGER)
   ========================================================================== */
.site-footer {
  background-color: #1e293b;
  color: #cbd5e1;
  padding: 50px 0 24px;
  border-top: 4px solid var(--primary);
}

.footer-simple-wrap {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.footer-brand h4 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.footer-brand .footer-subtitle {
  color: #94a3b8;
  font-size: 0.92rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer-consultation-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 122, 99, 0.15);
  color: #fbcfe8;
  border: 1px solid rgba(201, 122, 99, 0.35);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.footer-consultation-pill i {
  color: var(--primary);
}

.footer-consultation-pill strong {
  color: #ffffff;
}

.footer-contact-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-contact-link {
  color: #cbd5e1;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

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

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (MOBILE & TABLET POLISH)
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .location-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
  
  /* En-tête Mobile & Navigation */
  .nav-wrap {
    height: 64px;
    gap: 8px;
    justify-content: space-between;
  }
  
  .brand-logo {
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
  }

  .brand-name {
    font-size: 1.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.15;
  }

  .brand-sub {
    font-size: 0.65rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.02em;
  }

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

  .nav-phone-text {
    display: none;
  }

  .btn-phone-header {
    width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
  }

  .nav-actions .btn-primary {
    padding: 6px 12px;
    font-size: 0.82rem;
    min-height: 36px;
    border-radius: var(--radius-sm);
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0;
    font-size: 1.25rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #ffffff;
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-link {
    font-size: 1.12rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    padding: 12px 0;
  }
  
  /* Section Accompagnements sur Mobile */
  .service-featured-wrap {
    margin-bottom: 20px;
    width: 100%;
  }
  .service-card-featured {
    padding: 24px 18px;
    text-align: center;
    align-items: center;
  }
  .service-card-featured .service-benefits {
    margin: 0 auto 18px auto;
    width: 100%;
    text-align: left;
  }
  .services-grid { 
    grid-template-columns: 1fr; 
    gap: 16px; 
  }
  .service-card {
    padding: 22px 18px;
  }

  /* Section Cabinet & Google Maps sur Mobile */
  .location-card { grid-template-columns: 1fr; }
  .location-info { padding: 24px 18px; }
  .location-map-wrap { min-height: 280px; height: 280px; }
  .location-map-wrap iframe { min-height: 280px; height: 280px; }

  /* Section RDV sur Mobile */
  .consult-selector {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .consult-card {
    padding: 20px 16px;
  }
  .booking-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  #cal-booking-iframe {
    min-height: 560px;
  }

  .trust-badges { grid-template-columns: 1fr; gap: 10px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .hero-floating-card {
    left: 10px;
    bottom: -10px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .nav-wrap {
    height: 60px;
    gap: 6px;
  }
  .brand-name {
    font-size: 1.05rem;
  }
  .brand-sub {
    font-size: 0.58rem;
  }
  .nav-actions {
    gap: 6px;
  }
  .btn-phone-header {
    width: 34px;
    height: 34px;
    min-height: 34px;
  }
  .nav-actions .btn-primary {
    padding: 5px 10px;
    font-size: 0.78rem;
    min-height: 34px;
  }
  .mobile-toggle {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    font-size: 1.18rem;
  }
  .nav-links {
    top: 60px;
    height: calc(100vh - 60px);
  }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .consult-card-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .consult-btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   CONSULTATION SELECTOR CARDS (HIGH CONTRAST & INTUITIVE UX)
   ========================================================================== */
.consult-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .consult-selector {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.consult-card {
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  box-shadow: var(--shadow-sm);
  outline: none;
}

.consult-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(201, 122, 99, 0.15);
}

.consult-card.active {
  border-color: var(--primary);
  background: #fffcfb;
  box-shadow: 0 10px 28px rgba(201, 122, 99, 0.22);
}

.consult-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  color: var(--secondary-hover);
  margin-bottom: 14px;
  align-self: flex-start;
  transition: all 0.2s ease;
}

.consult-card.active .consult-card-badge {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.consult-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 8px;
}

.consult-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.consult-card-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--text-main);
}

.consult-card-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.consult-card-benefits li i {
  color: #16a34a;
  font-size: 0.85rem;
}

.consult-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.consult-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.consult-price-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  font-family: var(--font-heading);
}

.consult-price-unit {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
  pointer-events: none; /* Card handles the click */
}

.consult-card.active .consult-btn {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(201, 122, 99, 0.3);
}
