/* ==========================================================================
   VITAL CURE INTERNATIONAL — WARM WHITE INSTITUTIONAL DESIGN SYSTEM
   Aesthetics: Executive Prestige, Warm Ivory & Pure White, Deep Navy & Emerald, Gold Trim
   Typography: Playfair Display (Serif Headlines) & Plus Jakarta Sans (Clean Body)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-white: #FFFFFF;
  --bg-warm-cream: #FDFBF7;
  --bg-warm-ivory: #F7F4EC;
  --bg-warm-sand: #EFEBE0;

  --navy-primary: #0C2340;
  --navy-dark: #071526;
  --navy-light: #16365C;

  --emerald-deep: #084B3E;
  --emerald-accent: #0D5C4B;

  --gold-warm: #B8860B;
  --gold-accent: #C59B27;
  --gold-light: #D4AF37;
  --gold-subtle: rgba(197, 155, 39, 0.12);

  --text-main: #1A2433;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-navy: #0C2340;

  --border-subtle: #E8E3DA;
  --border-accent: rgba(12, 35, 64, 0.12);
  --border-gold: rgba(197, 155, 39, 0.35);

  --shadow-sm: 0 2px 8px rgba(12, 35, 64, 0.04);
  --shadow-md: 0 6px 20px rgba(12, 35, 64, 0.06);
  --shadow-lg: 0 12px 36px rgba(12, 35, 64, 0.1);

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-white);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background: var(--bg-white);
}

a {
  color: var(--navy-primary);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--gold-accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-primary);
  line-height: 1.25;
  font-weight: 700;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background: var(--navy-primary);
  color: #FFFFFF;
  font-size: 0.825rem;
  padding: 0.55rem 0;
  border-bottom: 2px solid var(--gold-accent);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--bg-warm-cream);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-accent);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-contact a {
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-contact a:hover {
  color: var(--gold-light);
}

.top-bar-contact svg {
  width: 14px;
  height: 14px;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy-primary);
  border: 1px solid var(--gold-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  box-shadow: 0 2px 10px rgba(12, 35, 64, 0.15);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--navy-primary);
  display: block;
  line-height: 1;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--gold-warm);
  display: block;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-item {
  font-family: var(--font-body);
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-normal);
}

.nav-item:hover, .nav-item.active {
  color: var(--navy-primary);
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--navy-primary);
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 6px;
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-primary, .btn-emerald {
  background: var(--navy-primary);
  color: #FFFFFF;
  border: 1px solid var(--navy-primary);
  box-shadow: 0 4px 15px rgba(12, 35, 64, 0.15);
}

.btn-primary:hover, .btn-emerald:hover {
  background: var(--navy-light);
  border-color: var(--gold-accent);
  color: var(--bg-warm-cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 35, 64, 0.2);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy-primary);
  color: var(--navy-primary);
}

.btn-outline:hover {
  background: var(--bg-warm-ivory);
  border-color: var(--gold-accent);
  color: var(--navy-primary);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* PAGE SECTION CONTROLLER */
.page-section {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}

.page-section.active-section {
  display: block;
  opacity: 1;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(180deg, var(--bg-warm-cream) 0%, var(--bg-white) 100%);
  padding: 5rem 0 4.5rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-warm-ivory);
  border: 1px solid var(--border-gold);
  color: var(--gold-warm);
  padding: 0.4rem 1.15rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

.pill-badge svg {
  width: 15px;
  height: 15px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--navy-primary);
  line-height: 1.2;
  max-width: 980px;
  margin-bottom: 1.5rem;
}

.gradient-text {
  color: var(--emerald-deep);
  font-style: italic;
  font-weight: 600;
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-body);
  max-width: 840px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

/* HERO STATS BAR */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2.5rem;
}

.stat-card {
  background: var(--bg-white);
  border: 1fr solid var(--border-subtle);
  border-left: 3px solid var(--gold-accent);
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--navy-primary);
}

.stat-icon {
  color: var(--gold-warm);
  margin-bottom: 0.75rem;
}

.stat-icon svg {
  width: 26px;
  height: 26px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* SECTION UTILITIES */
.section-padding {
  padding: 5rem 0;
}

.bg-surface {
  background: var(--bg-warm-cream);
  border-bottom: 1px solid var(--border-subtle);
}

.bg-darker {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-warm);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--navy-primary);
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-body);
  font-size: 1.075rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.max-w-700 { max-width: 700px; }
.margin-auto { margin-left: auto; margin-right: auto; }
.margin-top-md { margin-top: 2rem; }
.margin-top-lg { margin-top: 3.5rem; }
.margin-top-sm { margin-top: 1rem; }
.text-center { text-align: center; }

/* GRID HELPER */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.gap-sm { gap: 1rem; }
.gap-md { gap: 1.75rem; }
.gap-lg { gap: 3rem; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }

/* CHECKLIST */
.feature-checklist {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-white);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--bg-warm-ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg {
  width: 14px;
  height: 14px;
}

/* CARDS & CONTAINERS */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

.glass-card {
  border-top: 3px solid var(--navy-primary);
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy-primary);
}

.preview-box {
  background: var(--bg-warm-cream);
  border: 1px solid var(--border-subtle);
}

.preview-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--navy-primary);
}

.matrix-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.matrix-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.matrix-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-warm);
  background: var(--bg-warm-ivory);
  border: 1px solid var(--border-gold);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.matrix-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--navy-primary);
}

.matrix-item p {
  font-size: 0.9rem;
  color: var(--text-body);
}

/* PILLAR CARDS */
.pillar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--navy-primary);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.pillar-card:hover {
  border-top-color: var(--gold-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pillar-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(12, 35, 64, 0.1);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-warm-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-primary);
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--navy-primary);
}

.pillar-card p {
  font-size: 0.925rem;
  color: var(--text-body);
}

/* CASE STUDY BANNER */
.case-study-banner {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--emerald-deep);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.case-study-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--emerald-deep);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.case-study-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--navy-primary);
}

.case-study-intro {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 900px;
  margin-bottom: 2.5rem;
}

.case-step {
  background: var(--bg-warm-cream);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  border-radius: 8px;
}

.step-num {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-warm);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.case-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--navy-primary);
}

.case-step p {
  font-size: 0.9rem;
  color: var(--text-body);
}

.case-results {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  flex-wrap: wrap;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-primary);
}

.metric-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA BANNER */
.cta-banner {
  background: var(--navy-primary);
  color: #FFFFFF;
  padding: 5rem 0;
  border-top: 3px solid var(--gold-accent);
}

.cta-title {
  font-size: 2.6rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.15rem;
  color: #E2E8F0;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.cta-banner .btn-emerald {
  background: var(--gold-accent);
  color: var(--navy-dark);
  border-color: var(--gold-accent);
}

.cta-banner .btn-emerald:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}

/* SECTION HEADER BANNER (PAGES) */
.section-header-banner {
  background: var(--bg-warm-cream);
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.page-title {
  font-size: 2.8rem;
  color: var(--navy-primary);
  margin-bottom: 0.75rem;
}

.page-lead {
  font-size: 1.2rem;
  color: var(--text-body);
  max-width: 800px;
}

/* QUOTE CARD */
.quote-card {
  background: var(--bg-warm-cream);
  border-left: 4px solid var(--gold-warm);
  padding: 1.75rem;
  border-radius: 0 8px 8px 0;
  margin-top: 2rem;
}

.quote-icon {
  color: var(--gold-warm);
  margin-bottom: 0.5rem;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-primary);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.quote-author {
  font-size: 0.875rem;
  color: var(--gold-warm);
  font-weight: 700;
}

/* TEAM PILLS */
.team-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.team-pill {
  background: var(--bg-warm-cream);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy-primary);
  font-weight: 600;
}

.team-pill svg {
  color: var(--emerald-deep);
  width: 16px;
  height: 16px;
}

/* VISION / MISSION */
.vision-card, .mission-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--navy-primary);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.card-icon-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 1rem;
}

.value-item {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-warm-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-primary);
  margin: 0 auto 1rem;
}

.value-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--navy-primary);
}

.value-item p {
  font-size: 0.875rem;
  color: var(--text-body);
}

/* PRODUCTS PAGE FILTER */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
  padding: 0.6rem 1.35rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--navy-primary);
  border-color: var(--navy-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--navy-primary);
  border-radius: 8px;
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.product-card:hover {
  border-top-color: var(--gold-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-primary);
  background: var(--bg-warm-ivory);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--navy-primary);
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.product-list {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.product-list li {
  font-size: 0.875rem;
  color: var(--text-body);
  padding: 0.35rem 0;
  position: relative;
  padding-left: 1.25rem;
}

.product-list li::before {
  content: '•';
  color: var(--gold-warm);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* SERVICE CARD */
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.service-card:hover {
  border-color: var(--navy-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-warm-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-primary);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  color: var(--navy-primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-body);
}

/* PARTNERSHIPS PAGE & FORM */
.partner-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.benefit-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-warm-cream);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-primary);
  flex-shrink: 0;
}

.benefit-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--navy-primary);
}

.benefit-box p {
  font-size: 0.875rem;
  color: var(--text-body);
}

/* FORMS */
.partner-form-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-top: 4px solid var(--navy-primary);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy-primary);
}

.form-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: var(--bg-warm-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.form-control:focus {
  outline: none;
  background: var(--bg-white);
  border-color: var(--navy-primary);
  box-shadow: 0 0 0 3px rgba(12, 35, 64, 0.1);
}

.form-footer-note {
  font-size: 0.775rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.form-footer-note svg {
  width: 12px;
  height: 12px;
}

.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success.hidden {
  display: none;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-warm-ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-deep);
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 36px;
  height: 36px;
}

/* CONTACT PAGE */
.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--navy-primary);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-warm-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-primary);
  flex-shrink: 0;
}

.contact-detail-item h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--navy-primary);
}

.contact-detail-item p {
  font-size: 0.95rem;
  color: var(--text-body);
}

.social-links-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-warm-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-primary);
  transition: all var(--transition-normal);
}

.social-link:hover {
  background: var(--navy-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* FOOTER & DISCLAIMER */
.site-footer {
  background: var(--navy-dark);
  color: #E2E8F0;
  padding: 3.5rem 0;
  font-size: 0.875rem;
  border-top: 3px solid var(--gold-accent);
}

.disclaimer-banner {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--gold-accent);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.disclaimer-title {
  color: var(--gold-light);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.disclaimer-text {
  font-size: 0.825rem;
  color: #CBD5E1;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #94A3B8;
}

.footer-links a:hover {
  color: var(--gold-light);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .hero-title { font-size: 2.6rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar-contact { display: none; }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav-links.mobile-open {
    display: flex;
  }
  .mobile-toggle { display: block; }
  .hero-title { font-size: 2.1rem; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero-stats-grid { grid-template-columns: 1fr; }
  .filter-bar { justify-content: flex-start; }
}
