/* ============================================
   LIVE LAC DU BONNET - Economic Development Website
   Core Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Primary Palette - Lake & Sky inspired */
  --primary-900: #0D2137;
  --primary-800: #132E4D;
  --primary-700: #1B3A5C;
  --primary-600: #234B73;
  --primary-500: #2C5D8A;
  --primary-400: #4A7DB0;
  --primary-300: #6E9DCB;
  --primary-200: #A3C4E0;
  --primary-100: #D1E2F0;
  --primary-50: #EBF2F9;

  /* Secondary Palette - Forest & Growth */
  --secondary-900: #0A3D33;
  --secondary-800: #0F5244;
  --secondary-700: #156755;
  --secondary-600: #1C7D67;
  --secondary-500: #239379;
  --secondary-400: #3DAE94;
  --secondary-300: #63C5AD;
  --secondary-200: #96DACC;
  --secondary-100: #C8EDE5;
  --secondary-50: #E8F7F3;

  /* Accent Palette - Sunrise/Gold */
  --accent-900: #5C3A0A;
  --accent-800: #7A4E0E;
  --accent-700: #986213;
  --accent-600: #B67718;
  --accent-500: #D4A843;
  --accent-400: #E0BC65;
  --accent-300: #EACD87;
  --accent-200: #F2DFB0;
  --accent-100: #F8EFD7;
  --accent-50: #FDF8ED;

  /* Neutrals */
  --neutral-950: #0F1114;
  --neutral-900: #1A1D23;
  --neutral-800: #2D3139;
  --neutral-700: #3F454F;
  --neutral-600: #545B67;
  --neutral-500: #6B7280;
  --neutral-400: #8B919C;
  --neutral-300: #AEB3BC;
  --neutral-200: #D1D5DB;
  --neutral-100: #E8EAED;
  --neutral-50: #F5F6F7;
  --white: #FFFFFF;

  /* Semantic Colors */
  --success: #16A34A;
  --warning: #EAB308;
  --error: #DC2626;
  --info: #2563EB;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Font Sizes - Fluid Typography */
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --text-lg: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --text-xl: clamp(1.15rem, 1.05rem + 0.5vw, 1.25rem);
  --text-2xl: clamp(1.35rem, 1.15rem + 1vw, 1.5rem);
  --text-3xl: clamp(1.6rem, 1.3rem + 1.5vw, 1.875rem);
  --text-4xl: clamp(1.9rem, 1.4rem + 2.5vw, 2.25rem);
  --text-5xl: clamp(2.2rem, 1.5rem + 3.5vw, 3rem);
  --text-6xl: clamp(2.5rem, 1.5rem + 5vw, 3.75rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --container-2xl: 1400px;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 20px rgba(44, 93, 138, 0.15);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--neutral-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-600); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--primary-800); }
a:focus-visible { outline: 3px solid var(--primary-400); outline-offset: 2px; border-radius: var(--radius-sm); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-900);
  letter-spacing: -0.02em;
}

/* --- Skip to Content (Accessibility) --- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--primary-700);
  color: var(--white);
  padding: var(--space-3) var(--space-6);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 10000;
  font-weight: 600;
  transition: top var(--transition-fast);
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--accent-500);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.container--narrow { max-width: var(--container-lg); }
.container--wide { max-width: var(--container-2xl); }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-base);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-md);
}

.header-top-bar {
  background: var(--primary-800);
  color: var(--primary-100);
  font-size: var(--text-xs);
  padding: var(--space-2) 0;
}
.header-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top-bar a {
  color: var(--primary-200);
  transition: color var(--transition-fast);
}
.header-top-bar a:hover { color: var(--white); }
.header-top-bar .top-links {
  display: flex;
  gap: var(--space-4);
  list-style: none;
}

.header-main {
  padding: var(--space-4) 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo .logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-600), var(--secondary-500));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.site-logo .logo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--primary-800);
  letter-spacing: -0.02em;
}
.site-logo .logo-subtitle {
  font-size: var(--text-xs);
  color: var(--neutral-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Main Navigation */
.main-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-1);
  align-items: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neutral-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--primary-700);
  background: var(--primary-50);
}

/* Dropdown Menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--neutral-100);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 100;
  list-style: none;
}
.nav-list > li:hover .nav-dropdown,
.nav-list > li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--neutral-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.nav-dropdown a:hover {
  background: var(--primary-50);
  color: var(--primary-700);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-2);
  cursor: pointer;
  color: var(--neutral-700);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.5;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--primary-400);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--primary-700);
  color: var(--white);
  border-color: var(--primary-700);
}
.btn--primary:hover {
  background: var(--primary-800);
  border-color: var(--primary-800);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: var(--secondary-600);
  color: var(--white);
  border-color: var(--secondary-600);
}
.btn--secondary:hover {
  background: var(--secondary-700);
  border-color: var(--secondary-700);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--accent {
  background: var(--accent-500);
  color: var(--primary-900);
  border-color: var(--accent-500);
}
.btn--accent:hover {
  background: var(--accent-600);
  border-color: var(--accent-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--primary-700);
  border-color: var(--primary-300);
}
.btn--outline:hover {
  background: var(--primary-50);
  border-color: var(--primary-500);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--primary-700);
  border-color: transparent;
}
.btn--ghost:hover {
  background: var(--primary-50);
}

.btn--white {
  background: var(--white);
  color: var(--primary-800);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--neutral-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}
.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}
.btn--icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-md);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}
.hero--short { min-height: 50vh; }
.hero--medium { min-height: 65vh; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 33, 55, 0.88) 0%,
    rgba(27, 58, 92, 0.75) 40%,
    rgba(35, 147, 121, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: var(--space-24) 0 var(--space-16);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  color: var(--accent-300);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}
.hero__title {
  font-size: var(--text-6xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.hero__title span {
  background: linear-gradient(135deg, var(--accent-400), var(--accent-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-10);
  line-height: 1.6;
  max-width: 580px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero__stats {
  display: flex;
  gap: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat { text-align: left; }
.hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--white);
}
.hero__stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-top: var(--space-1);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--space-24) 0;
}
.section--sm { padding: var(--space-16) 0; }
.section--lg { padding: calc(var(--space-24) * 1.5) 0; }
.section--gray { background: var(--neutral-50); }
.section--dark {
  background: var(--primary-900);
  color: var(--primary-100);
}
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--gradient {
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-50) 100%);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-16);
}
.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-600);
  margin-bottom: var(--space-4);
}
.section__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}
.section__subtitle {
  font-size: var(--text-lg);
  color: var(--neutral-600);
  line-height: 1.7;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-100);
  overflow: hidden;
  transition: all var(--transition-base);
}
.card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card__body {
  padding: var(--space-6);
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-5);
}
.card__icon--primary { background: var(--primary-50); color: var(--primary-600); }
.card__icon--secondary { background: var(--secondary-50); color: var(--secondary-600); }
.card__icon--accent { background: var(--accent-50); color: var(--accent-700); }
.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.card__text {
  color: var(--neutral-600);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary-600);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-fast);
}
.card__link:hover { gap: var(--space-3); color: var(--primary-800); }

/* Feature Card (icon on left) */
.feature-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-100);
  transition: all var(--transition-base);
}
.feature-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-lg);
}

/* Stat Card */
.stat-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-100);
}
.stat-card__value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--primary-700);
  margin-bottom: var(--space-2);
}
.stat-card__label {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  font-weight: 500;
}
.stat-card__sublabel {
  font-size: var(--text-xs);
  color: var(--neutral-400);
  margin-top: var(--space-1);
}

/* ============================================
   GRIDS
   ============================================ */
.grid { display: grid; gap: var(--space-8); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

/* ============================================
   DATA DASHBOARD / AT A GLANCE
   ============================================ */
.data-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-100);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}
.data-panel__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.progress-bar {
  height: 8px;
  background: var(--neutral-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-bar__fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--neutral-100);
}
.comparison-table th {
  background: var(--primary-800);
  color: var(--white);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: left;
}
.comparison-table td {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--neutral-100);
}
.comparison-table tr:nth-child(even) td {
  background: var(--neutral-50);
}
.comparison-table .highlight {
  background: var(--primary-50) !important;
  font-weight: 600;
  color: var(--primary-800);
}

/* ============================================
   INTERACTIVE MAP PLACEHOLDER
   ============================================ */
.map-container {
  position: relative;
  background: var(--primary-50);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 500px;
  border: 1px solid var(--neutral-200);
}
.map-container__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(27,58,92,0.05), rgba(35,147,121,0.05));
}
.map-filters {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.map-filter-btn {
  padding: var(--space-2) var(--space-4);
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neutral-600);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.map-filter-btn:hover,
.map-filter-btn.active {
  background: var(--primary-700);
  color: var(--white);
  border-color: var(--primary-700);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--neutral-100);
  position: relative;
}
.testimonial__quote {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--neutral-700);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}
.testimonial__quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--primary-200);
  font-family: Georgia, serif;
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  line-height: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-300), var(--secondary-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-lg);
}
.testimonial__name {
  font-weight: 700;
  color: var(--primary-900);
}
.testimonial__role {
  font-size: var(--text-sm);
  color: var(--neutral-500);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-5);
}
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: var(--space-2);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--neutral-800);
  background: var(--white);
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px rgba(44, 93, 138, 0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--primary-900);
  color: var(--primary-200);
  padding: var(--space-16) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { max-width: 320px; }
.footer-brand .logo-title { color: var(--white); }
.footer-brand p {
  color: var(--primary-300);
  font-size: var(--text-sm);
  margin-top: var(--space-4);
  line-height: 1.7;
}
.footer-nav h4 {
  color: var(--white);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-nav a {
  color: var(--primary-300);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  padding: var(--space-6) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--primary-400);
}

/* ============================================
   AI CHATBOT WIDGET
   ============================================ */
.chatbot-toggle {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-700), var(--secondary-600));
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
}
.chatbot-toggle:hover {
  transform: scale(1.08);
  box-shadow: var(--shadow-2xl);
}
.chatbot-toggle .pulse {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary-400);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

.chatbot-window {
  position: fixed;
  bottom: calc(var(--space-6) + 70px);
  right: var(--space-6);
  width: 400px;
  max-height: 550px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  z-index: 998;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--neutral-100);
}
.chatbot-window.open { display: flex; }

.chatbot-header {
  background: linear-gradient(135deg, var(--primary-700), var(--secondary-600));
  color: var(--white);
  padding: var(--space-5) var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatbot-header h4 { color: var(--white); font-size: var(--text-base); }
.chatbot-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1.2rem;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.chat-message {
  max-width: 85%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.chat-message--bot {
  background: var(--neutral-50);
  color: var(--neutral-800);
  align-self: flex-start;
  border-bottom-left-radius: var(--radius-sm);
}
.chat-message--user {
  background: var(--primary-700);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: var(--radius-sm);
}

.chatbot-input {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-4);
  border-top: 1px solid var(--neutral-100);
}
.chatbot-input input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  outline: none;
}
.chatbot-input input:focus {
  border-color: var(--primary-400);
}
.chatbot-input button {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--primary-700);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.chatbot-input button:hover {
  background: var(--primary-800);
}

/* ============================================
   INVESTOR JOURNEY BREADCRUMB
   ============================================ */
.investor-journey {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-100);
  padding: var(--space-3) 0;
  position: sticky;
  top: 90px;
  z-index: 50;
}
.journey-steps {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  overflow-x: auto;
  padding: var(--space-1) 0;
}
.journey-step {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
}
.journey-step a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--neutral-500);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.journey-step a:hover,
.journey-step.active a {
  background: var(--primary-50);
  color: var(--primary-700);
}
.journey-step.active a { font-weight: 700; }
.journey-step .step-number {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--neutral-200);
  color: var(--neutral-600);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-step.active .step-number {
  background: var(--primary-700);
  color: var(--white);
}
.journey-step .step-arrow {
  color: var(--neutral-300);
  font-size: var(--text-xs);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 50%, var(--secondary-600) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-12) var(--space-10);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 {
  color: var(--white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* EDO Sidebar */
.edo-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  writing-mode: vertical-rl;
}
.edo-sidebar a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--accent-500);
  color: var(--primary-900);
  padding: var(--space-4) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.edo-sidebar a:hover {
  padding-right: var(--space-5);
  background: var(--accent-400);
}

/* ============================================
   ACCESSIBILITY TOOLBAR
   ============================================ */
.a11y-toolbar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.a11y-toolbar button {
  width: 42px;
  height: 42px;
  background: var(--primary-800);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}
.a11y-toolbar button:first-child { border-radius: 0 var(--radius-md) 0 0; }
.a11y-toolbar button:last-child { border-radius: 0 0 var(--radius-md) 0; }
.a11y-toolbar button:hover {
  background: var(--primary-600);
  width: 48px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

@media (max-width: 768px) {
  .header-top-bar { display: none; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-cta .btn { display: none; }

  .hero__content { padding: calc(var(--space-20) + 20px) 0 var(--space-12); }
  .hero__title { font-size: var(--text-4xl); }
  .hero__stats { flex-direction: column; gap: var(--space-4); }

  .grid--2,
  .grid--3,
  .grid--4 { grid-template-columns: 1fr; }

  .section { padding: var(--space-16) 0; }

  .footer-grid { grid-template-columns: 1fr; }
  .edo-sidebar { display: none; }
  .a11y-toolbar { display: none; }
  .chatbot-window { width: calc(100vw - var(--space-8)); right: var(--space-4); }

  .comparison-table { font-size: var(--text-xs); }
  .comparison-table th, .comparison-table td { padding: var(--space-3); }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}
.tag--primary { background: var(--primary-50); color: var(--primary-700); }
.tag--secondary { background: var(--secondary-50); color: var(--secondary-700); }
.tag--accent { background: var(--accent-50); color: var(--accent-800); }
.tag--success { background: #DCFCE7; color: #166534; }

/* Dividers */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
  border-radius: var(--radius-full);
  margin: var(--space-4) 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

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

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact Section Grid */
.contact-section { padding: var(--space-20) 0; }
.contact-grid {
  gap: var(--space-12);
}
.grid--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Contact Information Column */
.contact-info {
  padding: var(--space-4) 0;
}
.contact-info .section-title {
  margin-bottom: var(--space-8);
  font-size: var(--text-2xl);
}

/* Info Boxes */
.info-box {
  background: var(--primary-50);
  border-left: 4px solid var(--primary-600);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
  transition: all var(--transition-base);
}
.info-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.info-box--secondary {
  background: var(--secondary-50);
  border-left-color: var(--secondary-600);
}
.info-box__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: var(--space-4);
}
.info-box__item {
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.info-box__item:last-child { margin-bottom: 0; }
.info-box__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--neutral-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.info-box__value {
  font-size: var(--text-base);
  color: var(--neutral-800);
  line-height: 1.6;
}
.info-box__value a {
  color: var(--primary-600);
  font-weight: 500;
}
.info-box__value a:hover {
  color: var(--primary-800);
}

/* Response Guarantee */
.response-guarantee {
  background: linear-gradient(135deg, var(--secondary-50), var(--accent-50));
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.guarantee-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.guarantee-text {
  font-size: var(--text-sm);
  color: var(--secondary-900);
  line-height: 1.6;
}
.guarantee-text strong {
  color: var(--secondary-900);
  font-weight: 700;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  padding: var(--space-4) 0;
}
.form-title {
  font-size: var(--text-2xl);
  color: var(--primary-900);
  margin-bottom: var(--space-2);
}
.form-subtitle {
  font-size: var(--text-base);
  color: var(--neutral-600);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 0;
}

/* Form Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary-600);
  flex-shrink: 0;
}
.checkbox-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--neutral-700);
  line-height: 1.6;
  cursor: pointer;
}
.checkbox-label a {
  color: var(--primary-600);
  font-weight: 500;
  text-decoration: underline;
}
.checkbox-label a:hover {
  color: var(--primary-800);
}

/* Full-width button */
.btn--full {
  width: 100%;
}

/* What Happens Next Section */
.what-happens-next {
  background: linear-gradient(135deg, var(--primary-50), var(--secondary-50));
  padding: var(--space-20) 0;
}
.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--neutral-600);
  margin-bottom: var(--space-12);
}

.process-steps {
  display: flex;
  gap: var(--space-8);
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-600), var(--secondary-500));
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 700;
}
.process-step h3 {
  font-size: var(--text-lg);
  color: var(--primary-900);
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--neutral-600);
  line-height: 1.7;
  flex-grow: 1;
}
.process-arrow {
  font-size: var(--text-3xl);
  color: var(--neutral-300);
  display: flex;
  align-items: center;
  margin: 0 var(--space-4);
}

/* FAQ Section */
.faq-section {
  padding: var(--space-20) 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}
.faq-item:hover {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-sm);
}
.faq-item[open] {
  border-color: var(--primary-400);
  box-shadow: var(--shadow-md);
}
.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  user-select: none;
  list-style: none;
  font-weight: 600;
  color: var(--primary-900);
  transition: all var(--transition-fast);
}
.faq-summary:hover {
  background: var(--primary-50);
  color: var(--primary-700);
}
.faq-summary::-webkit-details-marker {
  display: none;
}
.faq-question {
  flex: 1;
  font-size: var(--text-base);
}
.faq-icon {
  font-size: var(--text-xl);
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--primary-600);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-content {
  padding: 0 var(--space-6) var(--space-5) var(--space-6);
  color: var(--neutral-700);
  line-height: 1.7;
  font-size: var(--text-base);
}

/* Newsletter Section */
.newsletter-section {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--accent-50), var(--primary-50));
}
.newsletter-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-100);
}
.newsletter-title {
  font-size: var(--text-2xl);
  color: var(--primary-900);
  margin-bottom: var(--space-3);
}
.newsletter-description {
  font-size: var(--text-base);
  color: var(--neutral-700);
  margin-bottom: var(--space-8);
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  margin-bottom: var(--space-4);
}
.newsletter-input-group {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.newsletter-input {
  flex: 1;
  min-width: 0;
}
.newsletter-input-group .btn {
  flex-shrink: 0;
}
.newsletter-notice {
  font-size: var(--text-xs);
  color: var(--neutral-500);
}

/* Location Section */
.location-section {
  padding: var(--space-20) 0;
}
.location-card {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.location-content {
  max-width: 600px;
  margin: 0 auto;
}
.location-address {
  font-size: var(--text-3xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  line-height: 1.4;
  color: var(--white);
}
.location-directions {
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}
.location-note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.location-note a {
  color: var(--accent-300);
  font-weight: 600;
}
.location-note a:hover {
  color: var(--accent-100);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-700), var(--secondary-600));
  color: var(--white);
  padding: var(--space-16) 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: var(--text-3xl);
  color: var(--white);
  margin-bottom: var(--space-4);
}
.cta-banner > p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}
.cta-banner-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.btn--secondary {
  background: var(--secondary-500);
  color: var(--white);
}
.btn--secondary:hover {
  background: var(--secondary-600);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    gap: var(--space-6);
  }

  .process-step {
    max-width: none;
  }

  .process-arrow {
    display: none;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-input-group .btn {
    width: 100%;
  }

  .cta-banner-buttons {
    flex-direction: column;
  }

  .cta-banner-buttons .btn {
    width: 100%;
  }

  .location-address {
    font-size: var(--text-2xl);
  }

  .faq-summary {
    padding: var(--space-4) var(--space-5);
  }

  .faq-content {
    padding: 0 var(--space-5) var(--space-4) var(--space-5);
  }
}

/* Print */
@media print {
  .site-header,
  .site-footer,
  .chatbot-toggle,
  .chatbot-window,
  .edo-sidebar,
  .a11y-toolbar { display: none !important; }
  .hero { min-height: auto; page-break-after: always; }
  body { font-size: 12pt; color: #000; }
}
