/* ============================================================
   ÉGLISE ÉVANGÉLIQUE LA LUMIÈRE DU MONDE — GLOBAL STYLES
   Thème : Céleste · Lumineux · Joyeux · Professionnel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito:wght@400;600;700;800;900&family=Dancing+Script:wght@700&display=swap');

:root {
  --sky:        #EAF4FB;
  --sky-mid:    #D0E9F7;
  --sky-deep:   #A8D4EF;
  --blue:       #1A6BA0;
  --blue-light: #2E86C1;
  --blue-dark:  #0D4F80;
  --gold:       #D4A017;
  --gold-light: #F0C040;
  --gold-pale:  #FFF8E1;
  --white:      #FFFFFF;
  --soft:       #F7FBFF;
  --text:       #1C3A52;
  --text-mid:   #3A6080;
  --text-light: #6A90A8;
  --green:      #2E7D5A;
  --orange:     #E8700A;
  --rose:       #C94070;
  --shadow:     0 8px 40px rgba(26,107,160,0.12);
  --shadow-lg:  0 20px 60px rgba(26,107,160,0.18);
  --radius:     16px;
  --radius-sm:  10px;
  --font-head:  'Cormorant Garamond', serif;
  --font-body:  'Nunito', sans-serif;
  --font-script:'Dancing Script', cursive;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

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

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

.section-tag {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}
.section-title { color: var(--text); }
.section-title .accent { color: var(--blue-light); }
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  margin: 1rem 0;
}
.divider.center { margin: 1rem auto; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26,107,160,0.10);
  transition: all 0.4s ease;
  padding: 0;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none;
}
.nav-logo {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(26,107,160,0.3);
  flex-shrink: 0;
}
.nav-brand-text { line-height: 1.1; }
.nav-brand-text .name {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 700;
  color: var(--blue-dark);
  display: block;
}
.nav-brand-text .sub {
  font-size: 0.7rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 1.5px;
}
.nav-menu {
  display: flex; align-items: center; gap: 0.2rem;
  list-style: none;
}
.nav-menu a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
  display: block;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--blue-light);
  background: rgba(46,134,193,0.08);
}
.nav-menu a.active::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
}
.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-light)) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 0.5rem 1.4rem !important;
  box-shadow: 0 4px 15px rgba(26,107,160,0.3);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,107,160,0.4) !important;
  background: var(--blue-dark) !important;
}
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--blue);
  padding: 0.3rem;
}

/* ===== PAGE HERO (général) ===== */
.page-hero {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--sky) 0%, #DCEEFB 40%, #C5E3F5 100%);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(234,244,251,0.92) 0%, rgba(208,233,247,0.85) 100%);
  z-index: 1;
}
/* Nuages décoratifs */
.cloud {
  position: absolute; z-index: 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  filter: blur(20px);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-breadcrumb {
  font-size: 0.82rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
}
.page-hero-breadcrumb a { color: var(--blue-light); text-decoration: none; }
.page-hero-breadcrumb a:hover { text-decoration: underline; }

/* ===== BUTTONS ===== */
.btn-primary-ciel {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white; border: none;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 800; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: 50px;
  text-decoration: none; display: inline-block;
  transition: all 0.35s;
  box-shadow: 0 6px 25px rgba(26,107,160,0.3);
}
.btn-primary-ciel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(26,107,160,0.45);
  color: white;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.btn-outline-ciel {
  background: transparent;
  color: var(--blue-light);
  border: 2px solid var(--blue-light);
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 800; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: 50px;
  text-decoration: none; display: inline-block;
  transition: all 0.35s;
}
.btn-outline-ciel:hover {
  background: var(--blue-light);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(46,134,193,0.35);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text); border: none;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 800; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: 50px;
  text-decoration: none; display: inline-block;
  transition: all 0.35s;
  box-shadow: 0 6px 20px rgba(212,160,23,0.35);
}
.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212,160,23,0.5);
  color: var(--text);
}
.btn-white {
  background: white;
  color: var(--blue-dark); border: none;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 800; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: 50px;
  text-decoration: none; display: inline-block;
  transition: all 0.35s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-4px);
  color: var(--blue-dark);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ===== CARDS GÉNÉRIQUES ===== */
.card-ciel {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(168,212,239,0.3);
  transition: all 0.4s ease;
  overflow: hidden;
  height: 100%;
}
.card-ciel:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,134,193,0.25);
}
.card-ciel-img { width: 100%; object-fit: cover; }

/* ===== SECTIONS ===== */
.section-light { background: var(--white); padding: 5rem 0; }
.section-sky { background: var(--sky); padding: 5rem 0; }
.section-sky-mid { background: linear-gradient(180deg, var(--sky) 0%, #f0f8ff 100%); padding: 5rem 0; }
.section-wave-top {
  position: relative;
}
.section-wave-top::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23EAF4FB' d='M0,40 C360,80 1080,0 1440,40 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat center top / cover;
  z-index: 1;
}

/* ===== BADGE ===== */
.badge-ciel {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(46,134,193,0.1);
  color: var(--blue-light);
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(46,134,193,0.2);
}
.badge-gold {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(212,160,23,0.1);
  color: var(--gold);
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(212,160,23,0.25);
}

/* ===== FOOTER ===== */
#footer {
  background: linear-gradient(170deg, var(--blue-dark) 0%, #082840 100%);
  color: rgba(255,255,255,0.85);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
#footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.8rem; font-weight: 700;
  color: white;
}
.footer-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem; line-height: 1.8;
  margin: 1rem 0 1.5rem;
}
.footer-title {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links a::before { content: '›'; color: var(--gold-light); }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-right: 0.4rem;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3.5rem; padding: 1.5rem 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-verse {
  background: rgba(255,255,255,0.07);
  border-left: 3px solid var(--gold-light);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.2rem;
  margin: 1rem 0;
}
.footer-verse p {
  font-style: italic; font-size: 0.88rem;
  color: rgba(255,255,255,0.8); margin: 0;
}
.footer-verse cite { font-size: 0.78rem; color: var(--gold-light); }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white; border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer; z-index: 900;
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(26,107,160,0.4);
  text-decoration: none;
  display: flex; align-items: center; justify-content: center;
}
#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26,107,160,0.5);
}

/* ===== LIVE BADGE ===== */
.live-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(231,76,60,0.1);
  border: 1px solid rgba(231,76,60,0.3);
  color: #e74c3c;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
}
.live-dot {
  width: 8px; height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.anim-up   { opacity: 0; animation: fadeUp 0.8s forwards; }
.anim-d1   { animation-delay: 0.1s; }
.anim-d2   { animation-delay: 0.25s; }
.anim-d3   { animation-delay: 0.4s; }
.anim-d4   { animation-delay: 0.55s; }
.anim-d5   { animation-delay: 0.7s; }

/* ===== SCHEDULE TABLE ===== */
.schedule-row {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(168,212,239,0.4);
  margin-bottom: 0.8rem;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(26,107,160,0.06);
}
.schedule-row:hover {
  border-color: var(--blue-light);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(26,107,160,0.12);
}
.schedule-day-box {
  min-width: 64px; text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white; border-radius: 10px;
  padding: 0.6rem 0.5rem;
  font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
}
.schedule-row h6 { font-weight: 800; color: var(--text); margin: 0 0 0.2rem; }
.schedule-row p { color: var(--text-light); font-size: 0.85rem; margin: 0; }
.schedule-time {
  margin-left: auto;
  color: var(--blue-light);
  font-weight: 800; font-size: 0.9rem;
  white-space: nowrap;
  display: flex; align-items: center; gap: 0.3rem;
}

/* ===== TESTIMONIAL ===== */
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(168,212,239,0.3);
  height: 100%;
  transition: all 0.4s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-head);
  font-size: 5rem; line-height: 1;
  color: rgba(46,134,193,0.1);
  font-weight: 700;
}
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text { color: var(--text-mid); line-height: 1.85; font-size: 0.95rem; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--sky-mid); }
.testimonial-author .name { font-weight: 800; color: var(--text); font-size: 0.95rem; }
.testimonial-author .role { color: var(--text-light); font-size: 0.8rem; }

/* ===== SERMON CARD ===== */
.sermon-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(168,212,239,0.3);
  transition: all 0.4s;
  height: 100%;
  cursor: pointer;
}
.sermon-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.sermon-thumb {
  position: relative; overflow: hidden;
  height: 200px;
}
.sermon-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.sermon-card:hover .sermon-thumb img { transform: scale(1.06); }
.sermon-play-overlay {
  position: absolute; inset: 0;
  background: rgba(26,107,160,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.sermon-card:hover .sermon-play-overlay { opacity: 1; }
.play-circle {
  width: 64px; height: 64px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.sermon-cat {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  background: var(--blue-light); color: white;
  padding: 0.3rem 0.9rem; border-radius: 50px;
}
.sermon-body { padding: 1.4rem; }
.sermon-body h5 {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.6rem;
  line-height: 1.3;
}
.sermon-meta { font-size: 0.8rem; color: var(--text-light); }
.sermon-meta i { color: var(--blue-light); margin-right: 0.3rem; }

/* ===== EVENT CARD ===== */
.event-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: white;
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  border: 1px solid rgba(168,212,239,0.35);
  box-shadow: 0 3px 15px rgba(26,107,160,0.07);
  transition: all 0.3s;
}
.event-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 8px 30px rgba(26,107,160,0.15);
  transform: translateX(5px);
}
.event-date-box {
  min-width: 64px; text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white; border-radius: 10px;
  padding: 0.8rem 0.5rem;
  flex-shrink: 0;
  font-family: var(--font-head);
}
.event-date-box .month { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; }
.event-date-box .day { font-size: 2rem; font-weight: 700; line-height: 1; }
.event-info h5 { font-weight: 800; color: var(--text); margin-bottom: 0.3rem; font-size: 1rem; }
.event-info p { color: var(--text-light); font-size: 0.85rem; margin-bottom: 0.5rem; }
.event-tag {
  display: inline-block;
  background: rgba(46,134,193,0.1);
  color: var(--blue-light);
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 0.2rem 0.7rem; border-radius: 50px;
  border: 1px solid rgba(46,134,193,0.2);
}

/* ===== HERO HOME SPECIFIC ===== */
#hero-home {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--white) 0%, var(--sky) 40%, #C8E6F8 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  margin-top: 70px;
}
/* Cercles décoratifs */
.deco-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,134,193,0.12) 0%, transparent 70%);
  pointer-events: none;
}
/* Sun rays */
.sun-rays {
  position: absolute;
  pointer-events: none;
  opacity: 0.3;
}

/* ===== GALERIE ===== */
.gallery-item {
  overflow: hidden; border-radius: var(--radius-sm);
  position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
  min-height: 200px;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,107,160,0.6), rgba(46,134,193,0.4));
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== FEATURE ICON BOXES ===== */
.icon-box {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}
.icon-box-blue { background: rgba(46,134,193,0.12); color: var(--blue-light); }
.icon-box-gold { background: rgba(212,160,23,0.12); color: var(--gold); }
.icon-box-green { background: rgba(46,125,90,0.12); color: var(--green); }
.icon-box-orange { background: rgba(232,112,10,0.12); color: var(--orange); }

/* ===== COUNTER BOXES ===== */
.counter-box {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(168,212,239,0.3);
  transition: all 0.3s;
}
.counter-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.counter-num {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 700;
  color: var(--blue-light);
  line-height: 1;
  display: block;
}
.counter-label {
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ===== CONTACT FORM ===== */
.form-ciel .form-control,
.form-ciel .form-select {
  border: 2px solid rgba(168,212,239,0.5);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--sky);
  transition: all 0.3s;
}
.form-ciel .form-control:focus,
.form-ciel .form-select:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(46,134,193,0.12);
  background: white;
  outline: none;
}
.form-ciel .form-control::placeholder { color: var(--text-light); }
.form-ciel label { font-weight: 700; color: var(--text); margin-bottom: 0.4rem; font-size: 0.9rem; }

/* ===== MODAL ===== */
.modal-content {
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 30px 80px rgba(26,107,160,0.2);
}
.modal-header {
  background: linear-gradient(135deg, var(--sky), white);
  border-bottom: 2px solid rgba(168,212,239,0.4);
  border-radius: var(--radius) var(--radius) 0 0;
}
.modal-title {
  font-family: var(--font-head);
  font-size: 1.4rem; color: var(--blue-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 1rem; box-shadow: 0 10px 30px rgba(26,107,160,0.1); border-top: 1px solid var(--sky-mid); }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-menu a { padding: 0.8rem 1rem; width: 100%; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  .section-light, .section-sky, .section-sky-mid { padding: 3.5rem 0; }
  .schedule-row { flex-wrap: wrap; }
  .schedule-time { margin-left: 0; }
}
