/* =====================================================
   ISOLATION EXTÉRIEURE FRANCE — ANNUAIRE PRO
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@700;800;900&display=swap');

/* ---- RESET & VARIABLES ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0077B6;
  --primary-dark: #005A8E;
  --primary-light: #0096D6;
  --secondary: #90E0EF;
  --secondary-light: #CAF0F8;
  --accent: #F4A261;
  --green: #2ECC71;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --bg: #F8FAFF;
  --bg-card: #FFFFFF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --shadow-sm: 0 1px 3px rgba(0,119,182,0.08);
  --shadow: 0 4px 16px rgba(0,119,182,0.12);
  --shadow-lg: 0 12px 40px rgba(0,119,182,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --max-w: 1280px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { line-height: 1.7; color: var(--text-muted); }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-6); }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--space-20) 0; }
.section-sm { padding: var(--space-12) 0; }

/* ---- HEADER ---- */
.header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--space-8);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text) !important;
  white-space: nowrap;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo span { color: var(--primary); }
.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav a:hover { color: var(--primary); background: var(--secondary-light); }
.nav a.active { color: var(--primary); background: var(--secondary-light); }
.btn-cta-nav {
  background: var(--primary) !important;
  color: white !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-full) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
}
.btn-cta-nav:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; cursor: pointer; padding: var(--space-2); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #003B5C 0%, #0077B6 50%, #00A8CC 100%);
  color: white;
  overflow: hidden;
  padding: var(--space-24) 0 var(--space-20);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/32115995/pexels-photo-32115995.jpeg?auto=compress&cs=tinysrgb&h=650&w=940') center/cover no-repeat;
  opacity: 0.12;
}
.hero-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(144,224,239,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero h1 { color: white; margin-bottom: var(--space-5); }
.hero h1 span { color: var(--secondary); }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: var(--space-10);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ---- VITEUNDEVIS FORM ---- */
.vud-quote-panel {
  width: min(100%, 720px);
  margin: var(--space-8) auto var(--space-10);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px rgba(0,32,64,0.28);
  color: var(--text);
  padding: var(--space-5);
  text-align: left;
}
.vud-quote-head {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.vud-quote-kicker {
  width: max-content;
  background: var(--accent);
  color: var(--text);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: var(--space-2) var(--space-3);
  text-transform: uppercase;
}
.vud-quote-panel h2 {
  color: var(--primary-dark);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin: 0;
}
.vud-quote-panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: none;
}
.vud-quote-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 180px;
  overflow: hidden;
  padding: var(--space-3);
}

/* ---- SEARCH BOX ---- */
.search-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  margin: 0 auto;
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
  background: var(--bg);
}
.search-box input::placeholder { color: var(--text-light); }
.search-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: all 0.2s;
  white-space: nowrap;
}
.search-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ---- SEARCH RESULTS ---- */
.search-results-dropdown {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 360px;
  overflow-y: auto;
  z-index: 200;
  width: 100%;
  left: 0;
  top: calc(100% + 8px);
  border: 1px solid var(--border);
}
.search-results-dropdown a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--text);
  font-size: 0.9rem;
  transition: background 0.15s;
  border-bottom: 1px solid var(--border-light);
}
.search-results-dropdown a:hover { background: var(--bg); }
.search-wrapper { position: relative; max-width: 680px; margin: 0 auto; }

/* ---- CONTACT FORM ---- */
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  color: var(--text);
  font: inherit;
  padding: var(--space-3) var(--space-4);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.12);
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3) 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.breadcrumb-inner a { color: var(--primary); font-weight: 500; }
.breadcrumb-inner span { color: var(--text-light); }
.breadcrumb-inner .current { color: var(--text-muted); }

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: var(--space-12) 0 var(--space-10);
  position: relative;
  overflow: hidden;
}
.page-header > .container {
  position: relative;
  z-index: 1;
}
.page-header::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.page-header h1 { color: white; margin-bottom: var(--space-3); }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 600px; }
.page-header-meta {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}
.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.page-header .vud-quote-panel {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}
.page-header .vud-quote-panel p {
  color: var(--text-muted);
  max-width: none;
}

/* ---- CARDS GRIDS ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.grid-regions { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-5); }
.grid-departments { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-4); }
.grid-cities { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--space-3); }

/* Region Card */
.card-region {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.card-region:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  color: inherit;
}
.card-region-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.card-region h3 { font-size: 1rem; margin: 0; color: var(--text); }
.card-region-meta { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
.card-region-arrow {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: auto;
}

/* Department Card */
.card-dept {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.card-dept:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}
.card-dept-code {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  width: fit-content;
}
.card-dept h3 { font-size: 0.95rem; color: var(--text); margin: 0; }
.card-dept-count { font-size: 0.8rem; color: var(--text-light); }

/* City Card */
.card-city {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.card-city:hover {
  border-color: var(--primary);
  background: var(--secondary-light);
  color: var(--primary);
  transform: translateX(4px);
}
.card-city-zip { font-size: 0.75rem; color: var(--text-light); font-weight: 400; }

/* Company Card */
.card-company {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.card-company:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.card-company-header { display: flex; align-items: flex-start; gap: var(--space-3); }
.company-logo-placeholder {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}
.card-company h3 { font-size: 0.95rem; color: var(--text); margin: 0; line-height: 1.3; }
.card-company-type {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}
.company-info { display: flex; flex-direction: column; gap: var(--space-2); }
.company-info-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.company-info-row svg { flex-shrink: 0; color: var(--primary); }
.badge-rge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-siret {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* ---- INFO BOX ---- */
.info-box {
  background: linear-gradient(135deg, var(--secondary-light), white);
  border: 1px solid var(--secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
}
.info-box-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.info-box h4 { color: var(--text); margin-bottom: var(--space-1); }
.info-box p { font-size: 0.88rem; margin: 0; }

/* ---- BENEFITS SECTION ---- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-5); }
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.benefit-card h3 { font-size: 1rem; }
.benefit-card p { font-size: 0.88rem; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-card);
  transition: background 0.2s;
  user-select: none;
}
.faq-question:hover { background: var(--bg); }
.faq-chevron { transition: transform 0.3s; flex-shrink: 0; color: var(--primary); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 var(--space-6);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { max-height: 500px; padding: var(--space-5) var(--space-6); }

/* ---- SECTION TITLES ---- */
.section-title { margin-bottom: var(--space-8); }
.section-title h2 { margin-bottom: var(--space-3); }
.section-title p { font-size: 1rem; max-width: 560px; }
.section-title.centered { text-align: center; }
.section-title.centered p { margin: 0 auto; }
.title-tag {
  display: inline-block;
  background: var(--secondary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: var(--space-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/36574965/pexels-photo-36574965.jpeg?auto=compress&cs=tinysrgb&h=350') center/cover;
  opacity: 0.06;
}
.cta-band h2 { color: white; margin-bottom: var(--space-4); position: relative; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto var(--space-8); position: relative; }
.cta-band-btns { display: flex; justify-content: center; gap: var(--space-4); flex-wrap: wrap; position: relative; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,119,182,0.4); color: white; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--secondary-light); transform: translateY(-2px); color: var(--primary); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; color: white; }
.btn-sm { padding: var(--space-2) var(--space-4); font-size: 0.85rem; }

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-10);
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); background: var(--secondary-light); }
.pagination .active { background: var(--primary); color: white; border-color: var(--primary); }

/* ---- LOADING SKELETON ---- */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ---- COMPANY LOADER ---- */
.companies-loading {
  text-align: center;
  padding: var(--space-12);
  color: var(--text-muted);
}
.spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto var(--space-4);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- ALERT ---- */
.alert {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.alert-info { background: #EFF6FF; color: #1E40AF; border-left: 4px solid var(--primary); }
.alert-success { background: #ECFDF5; color: #065F46; border-left: 4px solid var(--green); }
.alert-warning { background: #FFFBEB; color: #92400E; border-left: 4px solid var(--accent); }

/* ---- FOOTER ---- */
.footer {
  background: #0A1628;
  color: rgba(255,255,255,0.7);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-10); margin-bottom: var(--space-12); }
.footer-brand h3 { color: white; margin-bottom: var(--space-4); font-size: 1.1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: var(--space-5); }
.footer-col h4 { color: white; font-size: 0.9rem; margin-bottom: var(--space-5); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: var(--space-6); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; flex-wrap: wrap; gap: var(--space-4); }
.footer-bottom-links { display: flex; gap: var(--space-5); }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--secondary); }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(144,224,239,0.1);
  border: 1px solid rgba(144,224,239,0.2);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ---- UTILITY ---- */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-sm { font-size: 0.85rem; }
.font-bold { font-weight: 700; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.hidden { display: none; }
.divider { border: none; border-top: 1px solid var(--border); margin: var(--space-8) 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 68px 0 0 0;
    background: white;
    padding: var(--space-6);
    gap: var(--space-4);
    z-index: 90;
    box-shadow: var(--shadow-lg);
  }
  .nav.mobile-open a { font-size: 1.1rem; }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-regions { grid-template-columns: 1fr; }
  .hero-stats { gap: var(--space-5); }
  .vud-quote-panel { padding: var(--space-4); }
  .vud-quote-box { min-height: 220px; }
  .search-box { flex-direction: column; }
  .search-box input { padding: var(--space-3); }
  .page-header { padding: var(--space-8) 0; }
  .cta-band-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 var(--space-4); }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-cities { grid-template-columns: 1fr; }
  .grid-departments { grid-template-columns: 1fr; }
}

/* === TRUST BLOCK (CRO) === */
.trust-block {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 16px;
  padding: 32px 24px;
  margin: 32px auto;
  max-width: 1200px;
}
.trust-block h2 {
  text-align: center;
  font-size: 1.6rem;
  color: #0c4a6e;
  margin: 0 0 8px;
  font-weight: 700;
}
.trust-header { text-align: center; margin-bottom: 24px; }
.trust-subtitle {
  font-size: 1.05rem;
  color: #0369a1;
  margin: 0;
  font-weight: 500;
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.trust-badge {
  background: #ffffff;
  border: 1px solid #e0f2fe;
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  transition: all 0.2s ease;
}
.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.12);
  border-color: #0ea5e9;
}
.badge-icon { font-size: 2rem; margin-bottom: 6px; }
.badge-title { font-weight: 700; color: #0c4a6e; font-size: 0.95rem; margin-bottom: 4px; }
.badge-desc { font-size: 0.78rem; color: #64748b; line-height: 1.4; }
.testimonials { margin-top: 32px; }
.testimonials h3 {
  text-align: center;
  font-size: 1.3rem;
  color: #0c4a6e;
  margin-bottom: 18px;
  font-weight: 700;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.testimonial {
  background: #ffffff;
  border-left: 4px solid #facc15;
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.testimonial-rating { color: #facc15; font-size: 0.95rem; margin-bottom: 8px; }
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #334155;
  margin: 0 0 12px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-author strong { color: #0c4a6e; font-weight: 700; }
.live-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 18px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #92400e;
  font-weight: 500;
}
.counter-pulse {
  width: 10px;
  height: 10px;
  background: #dc2626;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  display: inline-block;
}
@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}
@media (max-width: 700px) {
  .trust-block { padding: 22px 16px; margin: 22px 12px; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}
