/* ==============================================
   RANEPH - Feuille de style complète
   Couleurs: #002776 | #0078BE | #DC143C | #FFD700
   ============================================== */

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

:root {
  --blue-dark: #002776;
  --blue-light: #0078BE;
  --red: #DC143C;
  --gold: #FFD700;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,39,118,0.10);
  --shadow-lg: 0 8px 40px rgba(0,39,118,0.16);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-700); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 3px; }

/* ── PAGE LAYOUT ── */
#app { min-height: 100vh; display: flex; flex-direction: column; }
#page-content { flex: 1; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,39,118,0.12);
  backdrop-filter: blur(10px);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.25rem; color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .navbar-brand { color: var(--blue-dark); }
.navbar-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; }
.navbar-logo-placeholder {
  width: 44px; height: 44px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 0.75rem; letter-spacing: 0.05em;
}

/* Desktop nav */
.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link, .nav-btn {
  padding: 0.5rem 0.75rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: all var(--transition);
  display: flex; align-items: center; gap: 0.25rem;
  background: none; border: none;
  white-space: nowrap;
}
.navbar.scrolled .nav-link, .navbar.scrolled .nav-btn { color: var(--gray-700); }
.nav-link:hover, .nav-btn:hover { background: rgba(255,255,255,0.15); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-btn:hover { background: var(--gray-100); color: var(--blue-dark); }
.nav-chevron { transition: transform var(--transition); width: 14px; height: 14px; }
.nav-item.open .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 220px; z-index: 200;
  padding: 0.5rem 0; display: none;
  border: 1px solid var(--gray-200);
  animation: fadeDown 0.2s ease;
}
.nav-item.open .dropdown-menu { display: block; }
.dropdown-link {
  display: block; padding: 0.625rem 1.25rem;
  font-size: 0.875rem; color: var(--gray-700);
  transition: all var(--transition);
}
.dropdown-link:hover { background: var(--blue-dark); color: white; }

/* Language switcher */
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  padding: 0.3rem 0.6rem; border-radius: 6px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.navbar.scrolled .lang-btn { color: var(--gray-500); }
.lang-btn.active, .lang-btn:hover { background: rgba(255,255,255,0.2); color: white; }
.navbar.scrolled .lang-btn.active, .navbar.scrolled .lang-btn:hover { background: var(--blue-dark); color: white; }

/* Donate btn */
.btn-donate-nav {
  padding: 0.5rem 1.25rem; border-radius: 50px;
  background: linear-gradient(135deg, var(--red), #b01030);
  color: white; font-weight: 700; font-size: 0.875rem;
  transition: all var(--transition); box-shadow: 0 4px 12px rgba(220,20,60,0.3);
}
.btn-donate-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(220,20,60,0.4); }

/* Mobile menu button */
.nav-mobile-toggle {
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  color: white; transition: all var(--transition);
}
.navbar.scrolled .nav-mobile-toggle { color: var(--gray-700); }
.nav-mobile-toggle:hover { background: rgba(255,255,255,0.15); }
.hamburger { width: 22px; height: 16px; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: all var(--transition); }

/* Mobile menu */
.nav-mobile {
  display: none; position: absolute; top: 70px; left: 0; right: 0;
  background: white; box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 1rem;
}
.nav-mobile.open { display: block; }
.mobile-nav-link {
  display: block; padding: 0.75rem 1rem; border-radius: 8px;
  color: var(--gray-700); font-weight: 500; font-size: 0.9rem;
  transition: all var(--transition);
}
.mobile-nav-link:hover { background: var(--gray-100); color: var(--blue-dark); }
.mobile-dropdown-toggle {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 1rem; border-radius: 8px;
  color: var(--gray-700); font-weight: 500; font-size: 0.9rem;
  transition: all var(--transition);
}
.mobile-dropdown-toggle:hover { background: var(--gray-100); }
.mobile-sub { padding-left: 1rem; display: none; }
.mobile-sub.open { display: block; }
.mobile-sub-link {
  display: block; padding: 0.5rem 1rem; border-radius: 8px;
  color: var(--gray-500); font-size: 0.85rem;
  transition: all var(--transition);
}
.mobile-sub-link:hover { background: var(--gray-100); color: var(--blue-dark); }
.mobile-lang { display: flex; gap: 0.5rem; padding: 0.75rem 1rem; border-top: 1px solid var(--gray-200); margin-top: 0.5rem; }
.mobile-lang-btn {
  padding: 0.4rem 0.9rem; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700;
  background: var(--gray-100); color: var(--gray-600);
  transition: all var(--transition);
}
.mobile-lang-btn.active { background: var(--blue-dark); color: white; }

/* ── HERO CAROUSEL ── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; background: var(--blue-dark);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img, .hero-slide .hero-img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-light) 50%, #001a4d 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,39,118,0.55) 100%);
}
.hero-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 2rem; padding-top: 80px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; color: white; line-height: 1.15;
  margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.88); max-width: 650px;
  margin-bottom: 2rem; font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); transition: all var(--transition);
}
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-arrow:hover { background: var(--gold); color: var(--blue-dark); }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem; transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--blue-dark); color: white; }
.btn-primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--gold); color: var(--blue-dark); }
.btn-gold:hover { background: #e6c200; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255,215,0,0.4); }
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: #b01030; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(220,20,60,0.3); }
.btn-outline { background: transparent; border-color: white; color: white; }
.btn-outline:hover { background: white; color: var(--blue-dark); }
.btn-outline-dark { background: transparent; border-color: var(--blue-dark); color: var(--blue-dark); }
.btn-outline-dark:hover { background: var(--blue-dark); color: white; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.825rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ── SECTIONS ── */
.section { padding: 5rem 1.5rem; }
.section-sm { padding: 3rem 1.5rem; }
.container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 1rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(0,120,190,0.1); color: var(--blue-light);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900; color: var(--blue-dark); line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title span { color: var(--blue-light); }
.section-subtitle { color: var(--gray-500); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ── IMPACT STATS ── */
.stats-section { background: linear-gradient(135deg, var(--blue-dark) 0%, #001a5e 100%); padding: 4rem 1.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.stat-card { text-align: center; color: white; }
.stat-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(255,255,255,0.1); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
}
.stat-value {
  font-size: 2.75rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold), #fff8dc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 0.5rem; }

/* ── PROGRAMS GRID ── */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; }
.program-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition);
  background: white; border: 1px solid var(--gray-200);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-img { height: 200px; overflow: hidden; background: var(--gray-100); position: relative; }
.program-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.program-card:hover .program-img img { transform: scale(1.05); }
.program-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
}
.program-body { padding: 1.5rem; }
.program-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.25rem;
}
.program-title { font-size: 1.1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 0.5rem; }
.program-desc { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; }
.program-stats { display: flex; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.program-stat { text-align: center; flex: 1; }
.program-stat-val { font-size: 1.1rem; font-weight: 800; color: var(--blue-dark); }
.program-stat-lbl { font-size: 0.7rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }
.program-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--blue-light); font-weight: 600; font-size: 0.875rem;
  margin-top: 1rem; transition: gap var(--transition);
}
.program-link:hover { gap: 0.75rem; }

/* ── VALUES GRID ── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.value-card {
  padding: 1.75rem; border-radius: var(--radius);
  background: white; border: 1px solid var(--gray-200);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-light));
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.value-title { font-weight: 700; color: var(--blue-dark); margin-bottom: 0.5rem; }
.value-desc { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; }

/* ── TEAM CARDS ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.75rem; }
.team-card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-top { height: 4px; }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 1.5rem auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 900; color: white;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card-body { padding: 0 1.5rem 1.5rem; text-align: center; }
.team-name { font-weight: 800; color: var(--blue-dark); font-size: 1rem; margin-bottom: 0.25rem; }
.team-role {
  display: inline-block; padding: 0.25rem 0.75rem; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; color: white;
  margin-bottom: 0.75rem;
}

/* ── NEWS GRID ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; }
.news-card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: all var(--transition); border: 1px solid var(--gray-200);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-img { height: 200px; overflow: hidden; background: var(--gray-100); }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.news-body { padding: 1.5rem; }
.news-cat {
  display: inline-block; padding: 0.2rem 0.6rem;
  background: rgba(0,120,190,0.1); color: var(--blue-light);
  border-radius: 20px; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.news-title { font-weight: 700; color: var(--blue-dark); margin-bottom: 0.5rem; line-height: 1.4; }
.news-excerpt { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.news-meta { display: flex; align-items: center; gap: 1rem; color: var(--gray-400); font-size: 0.775rem; }

/* ── PARTNERS ── */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.partner-card {
  background: white; border-radius: var(--radius);
  padding: 2rem; text-align: center;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow);
  transition: all var(--transition);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.partner-logo { height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.partner-logo img { max-height: 60px; max-width: 100%; object-fit: contain; }
.partner-logo-placeholder {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 0.875rem; margin: 0 auto;
}
.partner-name { font-weight: 700; color: var(--blue-dark); font-size: 0.9rem; margin-bottom: 0.25rem; }
.partner-type {
  font-size: 0.7rem; color: var(--gray-400); text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── FAQ ACCORDION ── */
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  margin-bottom: 0.75rem; overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(0,120,190,0.08); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; text-align: left;
  font-weight: 600; color: var(--blue-dark); font-size: 0.95rem;
  background: none;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-item.open .faq-question { background: var(--gray-50); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--blue-light); transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; color: var(--gray-500); font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── ZONES ── */
.zones-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.zone-card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: all var(--transition);
}
.zone-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.zone-img { height: 180px; background: var(--gray-100); overflow: hidden; }
.zone-img img { width: 100%; height: 100%; object-fit: cover; }
.zone-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.zone-body { padding: 1.25rem; }
.zone-name { font-weight: 800; color: var(--blue-dark); font-size: 1.1rem; margin-bottom: 0.25rem; }
.zone-dept { color: var(--gray-400); font-size: 0.8rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.25rem; }
.zone-stats { display: flex; gap: 1rem; }
.zone-stat span { font-size: 0.75rem; color: var(--gray-500); }
.zone-stat strong { display: block; color: var(--blue-dark); font-size: 1rem; }

/* ── DONATION METHODS ── */
.donation-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.donation-card {
  background: white; border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); border: 2px solid var(--gray-200);
  transition: all var(--transition); text-align: center;
}
.donation-card:hover { border-color: var(--blue-light); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.donation-logo {
  height: 60px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.donation-logo-placeholder {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #b01030);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 0.8rem; margin: 0 auto;
}
.donation-name { font-weight: 800; color: var(--blue-dark); font-size: 1.1rem; margin-bottom: 0.75rem; }
.donation-info { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.donation-number {
  display: inline-block; padding: 0.4rem 1rem; border-radius: 20px;
  background: var(--gray-100); font-weight: 700; font-size: 0.9rem; color: var(--blue-dark);
}

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 2rem; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.contact-label { font-weight: 700; color: var(--blue-dark); margin-bottom: 0.25rem; }
.contact-value { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; color: var(--gray-700); font-size: 0.875rem; margin-bottom: 0.4rem; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.75rem 1rem; border-radius: 8px;
  border: 1.5px solid var(--gray-200); font-family: var(--font);
  font-size: 0.9rem; color: var(--gray-700);
  transition: border-color var(--transition);
  background: white;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(0,120,190,0.1);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0.5rem; top: 0; bottom: 0; width: 2px; background: var(--gray-200); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot {
  position: absolute; left: -1.75rem; top: 0.25rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue-dark); border: 3px solid var(--blue-light);
  box-shadow: 0 0 0 4px rgba(0,120,190,0.15);
}
.timeline-year {
  font-size: 0.75rem; font-weight: 700; color: var(--blue-light);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem;
}
.timeline-title { font-weight: 700; color: var(--blue-dark); margin-bottom: 0.4rem; }
.timeline-desc { color: var(--gray-500); font-size: 0.875rem; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 5rem; color: var(--gray-200); font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text { color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; font-size: 0.9rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.875rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--blue-dark); font-size: 0.9rem; }
.testimonial-role { color: var(--gray-400); font-size: 0.775rem; }
.testimonial-location { color: var(--gray-400); font-size: 0.75rem; display: flex; align-items: center; gap: 0.25rem; margin-top: 0.1rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #001a5e 100%);
  padding: 5rem 1.5rem;
}
.cta-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.cta-card {
  background: rgba(255,255,255,0.07); border-radius: var(--radius);
  padding: 2rem; text-align: center; color: white;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
}
.cta-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.cta-card-icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin: 0 auto 1.25rem;
}
.cta-card-title { font-weight: 800; font-size: 1.1rem; margin-bottom: 0.75rem; }
.cta-card-desc { color: rgba(255,255,255,0.75); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }

/* ── POLICIES ── */
.policies-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.policy-card {
  background: white; border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  transition: all var(--transition); display: flex; gap: 1rem; align-items: flex-start;
}
.policy-card:hover { border-color: var(--blue-light); transform: translateY(-2px); }
.policy-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.25rem;
}
.policy-title { font-weight: 700; color: var(--blue-dark); font-size: 0.9rem; margin-bottom: 0.25rem; }
.policy-desc { color: var(--gray-500); font-size: 0.8rem; line-height: 1.5; }

/* ── HERO PAGE (interior pages) ── */
.page-hero {
  min-height: 340px; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #001a5e 100%);
  padding: 6rem 1.5rem 3rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,215,0,0.05); pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -30%; left: -5%;
  width: 350px; height: 350px; border-radius: 50%;
  background: rgba(220,20,60,0.06); pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 1rem; border-radius: 50px;
  background: rgba(255,215,0,0.15); color: var(--gold);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero-title {
  font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900;
  color: white; line-height: 1.2; margin-bottom: 0.75rem;
}
.page-hero-title span { color: var(--gold); }
.page-hero-subtitle { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.breadcrumb a, .breadcrumb span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ── FOOTER ── */
.footer { background: var(--gray-900); padding: 4rem 1.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.footer-brand-logo {
  width: 44px; height: 44px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 0.65rem;
}
.footer-brand-name { color: white; font-weight: 800; font-size: 1.1rem; }
.footer-about { color: var(--gray-400); font-size: 0.825rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-size: 1rem;
}
.footer-social-link:hover { background: var(--blue-light); color: white; }
.footer-col-title { color: white; font-weight: 700; font-size: 0.875rem; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-link { display: block; color: var(--gray-400); font-size: 0.825rem; padding: 0.3rem 0; transition: color var(--transition); }
.footer-link:hover { color: var(--gold); }
.footer-contact { padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 3rem; }
.footer-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.footer-contact-item { display: flex; gap: 0.75rem; }
.footer-contact-icon { font-size: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
.footer-contact-label { color: white; font-weight: 600; font-size: 0.825rem; margin-bottom: 0.2rem; }
.footer-contact-value { color: var(--gray-400); font-size: 0.8rem; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { color: var(--gray-500); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--gray-500); font-size: 0.8rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin: 1.5rem 0; }
.trust-badge {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.9rem; border-radius: 20px;
  background: rgba(255,255,255,0.05); color: var(--gray-400);
  font-size: 0.775rem;
}
.trust-badge span:first-child { color: var(--gold); font-weight: 700; }

/* ── FLOATING BUTTONS ── */
.floating-btns {
  position: fixed; bottom: 2rem; right: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem; z-index: 900;
}
.floating-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}
.floating-btn:hover { transform: scale(1.1); }
.floating-btn-top { background: var(--blue-dark); color: white; }
.floating-btn-wa { background: #25D366; color: white; }
.floating-btn-top.hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }

/* ── WELCOME SCREEN ── */
.welcome-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, var(--blue-dark), #001a5e);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  transition: opacity 0.5s ease;
}
.welcome-screen.exit { opacity: 0; pointer-events: none; }
.welcome-logo {
  width: 90px; height: 90px; border-radius: 20px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 900; color: var(--gold);
  animation: pulse 2s infinite;
}
.welcome-title { color: white; font-size: 1.5rem; font-weight: 900; text-align: center; }
.welcome-subtitle { color: rgba(255,255,255,0.6); font-size: 0.875rem; text-align: center; }
.welcome-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden; }
.welcome-bar-fill { height: 100%; background: var(--gold); border-radius: 2px; animation: loading 3s ease forwards; }

/* ── UTILITY ── */
.bg-gray { background: var(--gray-50); }
.bg-white { background: white; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.text-blue { color: var(--blue-dark); }
.text-gold { color: var(--gold); }
.text-red { color: var(--red); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; }
.gap-1 { gap: 0.5rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.card { background: white; border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); border: 1px solid var(--gray-200); }
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 2rem 0; }
.tag {
  display: inline-block; padding: 0.2rem 0.65rem; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; background: var(--gray-100); color: var(--gray-500);
}
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); font-size: 0.9rem; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.hidden { display: none !important; }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes loading { from { width: 0; } to { width: 100%; } }
@keyframes spin { to { transform: rotate(360deg); } }
.animate-in { animation: fadeIn 0.6s ease forwards; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-mobile-toggle { display: flex; }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.85rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 1rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
