/* ============================
   Cabinet Infirmier Ondres
   styles.css
   ============================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* ============================
   CSS Variables
   ============================ */
:root {
  --primary: #0077B6;
  --primary-dark: #005f8e;
  --primary-light: #CAF0F8;
  --secondary: #90E0EF;
  --accent: #00B4D8;
  --green: #2D9B6F;
  --green-light: #E6F7F2;
  --white: #FFFFFF;
  --off-white: #F8FBFD;
  --gray-50: #F7F9FC;
  --gray-100: #EEF2F7;
  --gray-200: #DDE3EC;
  --gray-400: #9AA3B2;
  --gray-600: #5A6478;
  --gray-800: #2D3340;
  --text: #1E2535;
  --text-light: #5A6478;
  --shadow-sm: 0 2px 8px rgba(0,119,182,0.08);
  --shadow-md: 0 8px 32px rgba(0,119,182,0.12);
  --shadow-lg: 0 20px 60px rgba(0,119,182,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.25s ease;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* ============================
   Reset & Base
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================
   Typography
   ============================ */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { line-height: 1.7; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,119,182,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,119,182,0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}
.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-phone {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(45,155,111,0.35);
  font-size: 1.1rem;
  padding: 16px 32px;
}
.btn-phone:hover {
  background: #24855e;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,155,111,0.45);
}

/* ============================
   Navigation
   ============================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 16px 0;
  transition: all 0.35s ease;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,119,182,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  line-height: 1;
  transition: color var(--transition);
}
.nav-logo-text span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo-text strong { color: var(--text); }
#navbar.scrolled .nav-logo-text span { color: var(--text-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: 50px;
  transition: all var(--transition);
}
.nav-links a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
#navbar.scrolled .nav-links a { color: var(--text); }
#navbar.scrolled .nav-links a:hover { background: var(--primary-light); color: var(--primary); }

.nav-cta {
  background: var(--white) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  box-shadow: 0 2px 12px rgba(255,255,255,0.3);
}
#navbar.scrolled .nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
#navbar.scrolled .nav-hamburger span { background: var(--text); }

/* ============================
   Hero Section
   ============================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/7345474/pexels-photo-7345474.jpeg?auto=compress&cs=tinysrgb&h=1080');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,52,87,0.88) 0%,
    rgba(0,119,182,0.70) 50%,
    rgba(0,180,216,0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-text .badge svg { width: 14px; height: 14px; }

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-text h1 span { color: var(--secondary); }

.hero-text .subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}
.stat-item {
  text-align: left;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Hero Card */
.hero-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-family: var(--font-heading);
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.hero-card .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.hero-card .contact-item:last-of-type { border-bottom: none; }
.hero-card .contact-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card .contact-icon svg { color: var(--primary); }
.hero-card .contact-info strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.hero-card .contact-info span {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.hero-card .contact-info a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
}
.hero-card .contact-info a:hover { color: var(--primary-dark); }
.hero-card .urgency {
  margin-top: 16px;
  background: #FFF4E6;
  border: 1px solid #FFD7A0;
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #B8620A;
  font-weight: 500;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  cursor: pointer;
  z-index: 2;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   Urgence Banner
   ============================ */
.urgence-banner {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 16px 24px;
  text-align: center;
}
.urgence-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.urgence-banner strong { font-size: 1rem; }
.urgence-banner a {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: underline;
}

/* ============================
   Section Wrapper
   ============================ */
.section {
  padding: 96px 24px;
}
.section-alt { background: var(--gray-50); }
.section-blue { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }

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

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header .section-label { justify-content: center; }
.section-header h2 { color: var(--text); margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }
.section-blue .section-header h2 { color: var(--white); }
.section-blue .section-header p { color: rgba(255,255,255,0.8); }
.section-blue .section-label { color: var(--secondary); }
.section-blue .section-label::before { background: var(--secondary); }

/* ============================
   À Propos
   ============================ */
#apropos .apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.apropos-image-wrap {
  position: relative;
}
.apropos-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.apropos-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 200px;
}
.apropos-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.apropos-badge strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1;
}
.apropos-badge span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.apropos-content .section-label { justify-content: flex-start; }
.apropos-content h2 { margin-bottom: 20px; }
.apropos-content p { color: var(--text-light); margin-bottom: 16px; }

.apropos-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.value-item:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.value-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.value-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.value-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================
   Équipe
   ============================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.team-card:hover .team-image img {
  transform: scale(1.08);
}
.team-card-body {
  padding: 24px;
  text-align: center;
  flex-grow: 1;
}
.team-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--text);
}
.team-card-body .role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.team-card-body p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================
   Services
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}
.service-tag {
  display: inline-block;
  margin-top: 14px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================
   Zone d'Intervention
   ============================ */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.zone-intro p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 16px;
}
.zone-map-visual {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.2);
}
.zone-map-visual h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-align: center;
}
.communes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.commune-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--white);
  transition: all var(--transition);
}
.commune-item:hover {
  background: rgba(255,255,255,0.25);
  transform: translateX(4px);
}
.commune-item svg { width: 14px; height: 14px; color: var(--secondary); flex-shrink: 0; }
.commune-item.highlight {
  background: rgba(144,224,239,0.25);
  border: 1px solid rgba(144,224,239,0.5);
  font-weight: 600;
}

.zone-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.zone-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}
.zone-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}
.zone-feature-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.zone-feature-text span {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}

/* ============================
   Infos Pratiques
   ============================ */
.infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.info-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.info-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.info-card-header h3 {
  font-size: 1.05rem;
  color: var(--text);
}
.hours-list { display: flex; flex-direction: column; gap: 10px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-light); }
.hours-row .time { font-weight: 600; color: var(--text); }
.hours-row .closed { color: #E74C3C; font-weight: 500; }

.address-block { display: flex; flex-direction: column; gap: 16px; }
.address-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}
.address-line svg { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.address-line strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); margin-bottom: 2px; }

.contact-buttons { display: flex; flex-direction: column; gap: 12px; }
.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  transition: all var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
}
.contact-btn-phone {
  background: var(--green);
  color: var(--white);
}
.contact-btn-phone:hover { background: #24855e; transform: translateX(4px); }
.contact-btn-map {
  background: var(--primary-light);
  color: var(--primary);
}
.contact-btn-map:hover { background: var(--primary); color: var(--white); transform: translateX(4px); }
.contact-btn svg { flex-shrink: 0; }

/* ============================
   Map Section
   ============================ */
.map-section {
  height: 400px;
  position: relative;
  overflow: hidden;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(1.1);
}
.map-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  max-width: 280px;
}
.map-overlay h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}
.map-overlay p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================
   FAQ
   ============================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  gap: 12px;
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--primary);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

/* ============================
   CTA Section
   ============================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 36px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================
   Footer
   ============================ */
footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.8);
  padding: 60px 24px 24px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0;
  color: rgba(255,255,255,0.65);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-text strong {
  font-family: var(--font-heading);
  display: block;
  color: var(--white);
}
.footer-logo-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '→';
  color: var(--secondary);
  font-size: 0.75rem;
}
.footer-links a:hover { color: var(--secondary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--secondary); font-weight: 600; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--secondary); }

/* ============================
   Scroll Animations
   ============================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================
   Floating Phone Button
   ============================ */
.float-phone {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(45,155,111,0.45);
  transition: all var(--transition);
  text-decoration: none;
}
.float-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(45,155,111,0.55);
}
.float-phone svg { width: 20px; height: 20px; }
@media (min-width: 769px) {
  .float-phone .float-text { display: block; }
}

/* Pulse animation */
.float-phone::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid var(--green);
  opacity: 0;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  #apropos .apropos-grid { grid-template-columns: 1fr; gap: 40px; }
  .apropos-badge { bottom: -16px; right: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .infos-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open a { color: var(--text); padding: 12px 16px; }

  .hero-content { padding: 100px 24px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .zone-grid { grid-template-columns: 1fr; }
  .communes-grid { grid-template-columns: repeat(2, 1fr); }
  .infos-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .apropos-values { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .section { padding: 64px 20px; }
  .float-phone .float-text { display: none; }
  .float-phone { border-radius: 50%; width: 56px; height: 56px; padding: 0; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}