/* ==========================================================================
   UTILITY CONSULTANCIES — OFFICIAL STYLESHEET
   Pure Vanilla CSS Architecture
   Brand: Utility Consultancies (Pakistan-based multidisciplinary advisory)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES / DESIGN SYSTEM TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Navy — Primary Brand Color (Dominant) */
  --navy-900: #071A36;   /* Darkest: Footer background, dark contact section, deep overlays */
  --navy-800: #0A2044;   /* Primary Navy: Headings, primary buttons, nav bar */
  --navy-600: #14345F;   /* Mid Navy: Hover states, secondary surfaces, accents */
  --navy-100: #E7EBF2;   /* Faint Navy Tint: Section accents, secondary button hover */
  --navy-50:  #F2F5FA;   /* Ultra-light Navy: Stat backgrounds */

  /* Gold — Accent (Used strategically for emphasis) */
  --gold-600: #A87A22;   /* Deep Gold: High-contrast text on light backgrounds (WCAG AA) */
  --gold-500: #C9992D;   /* Primary Gold Accent: Dividers, icon badges, submit CTAs */
  --gold-300: #E3C784;   /* Light Gold: Highlights, subtle borders, dark background text */

  /* Neutrals */
  --cream:    #FAF7F0;   /* Warm Off-White: Alternate section background */
  --white:    #FFFFFF;
  --ink:      #12181F;   /* Body text — high contrast dark charcoal */
  --slate:    #5B6472;   /* Secondary / Muted body text */
  --border:   #E4DFD2;   /* Hairline dividers and card borders */
  --border-light: #EFECE6;

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Inter", "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Elevation Shadows */
  --shadow-sm:  0 2px 8px rgba(7, 26, 54, 0.05);
  --shadow-md:  0 4px 24px rgba(7, 26, 54, 0.08);
  --shadow-lg:  0 8px 32px rgba(7, 26, 54, 0.12);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.25);
  --shadow-nav: 0 2px 20px rgba(7, 26, 54, 0.06);

  /* Corner Radii (4px for buttons/inputs, 8px for cards, no pill buttons) */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-full: 9999px;

  /* Spacing Scale (4px base) */
  --space-4:   4px;
  --space-8:   8px;
  --space-12:  12px;
  --space-16:  16px;
  --space-20:  20px;
  --space-24:  24px;
  --space-32:  32px;
  --space-40:  40px;
  --space-48:  48px;
  --space-64:  64px;
  --space-96:  96px;
  --space-128: 128px;

  /* Container */
  --container-max: 1240px;
  --container-padding: 64px;

  /* Transitions */
  --trans-fast: 150ms ease;
  --trans-base: 250ms ease;
  --trans-smooth: 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Skip Navigation Link for Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  background-color: var(--gold-500);
  color: var(--navy-900);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  text-decoration: none;
  transition: top var(--trans-fast);
}

.skip-link:focus {
  top: 24px;
  outline: 2px solid var(--navy-900);
  outline-offset: 2px;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

/* Focus Visible for Keyboard Accessibility */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-800);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-headline {
  font-size: 3.75rem; /* 60px */
  line-height: 1.1;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: var(--space-24);
}

.section-title {
  font-size: 2.5rem; /* 40px */
  line-height: 1.2;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: var(--space-16);
}

.section-subtitle {
  font-size: 1.1875rem; /* 19px */
  line-height: 1.6;
  color: var(--slate);
  max-width: 720px;
  margin-inline: auto;
}

/* Eyebrows */
.eyebrow-wrapper {
  display: inline-flex;
  align-items: center;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem; /* 13px */
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-600);
}

.eyebrow-gold {
  color: var(--gold-600);
}

.eyebrow-rule {
  width: 40px;
  height: 2px;
  background-color: var(--gold-500);
  display: inline-block;
}

.eyebrow-rule-gold {
  background-color: var(--gold-500);
}

/* --------------------------------------------------------------------------
   4. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section-padding {
  padding-block: var(--space-96);
}

.section-cream {
  background-color: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-64);
}

.section-header .eyebrow-wrapper {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   5. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: background-color var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast), box-shadow var(--trans-fast);
}

/* Primary Button: Solid Navy */
.btn-primary {
  background-color: var(--navy-800);
  color: var(--white);
  padding: 14px 32px;
  border: 1.5px solid var(--navy-800);
}

.btn-primary::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--gold-500);
  opacity: 0;
  transition: opacity var(--trans-fast);
}

.btn-primary:hover {
  background-color: var(--navy-600);
  border-color: var(--navy-600);
  color: var(--white);
}

.btn-primary:hover::after {
  opacity: 1;
}

/* Secondary Button: Transparent with Navy Border */
.btn-secondary {
  background-color: transparent;
  color: var(--navy-800);
  padding: 14px 32px;
  border: 1.5px solid var(--navy-800);
}

.btn-secondary:hover {
  background-color: var(--navy-100);
  color: var(--navy-900);
}

/* Gold Button: Solid Gold for CTAs */
.btn-gold {
  background-color: var(--gold-500);
  color: var(--navy-900);
  padding: 16px 32px;
  border: 1.5px solid var(--gold-500);
  font-weight: 700;
  font-size: 1rem;
}

.btn-gold:hover {
  background-color: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--white);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  transition: transform var(--trans-fast);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   6. SITE HEADER & STICKY NAVIGATION (4.1)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: background-color var(--trans-base), border-color var(--trans-base), box-shadow var(--trans-base), padding var(--trans-base);
  padding-block: var(--space-16);
}

.site-header.scrolled {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-nav);
  padding-block: var(--space-12);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.brand-logo {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-32);
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-800);
  padding-block: var(--space-8);
  position: relative;
  transition: color var(--trans-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold-500);
  transition: width var(--trans-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy-600);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-action {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: transparent;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--navy-800);
  transition: transform var(--trans-fast), opacity var(--trans-fast);
}

.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: var(--space-24) var(--space-24) var(--space-32);
}

.mobile-drawer.open {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  margin-bottom: var(--space-24);
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-800);
  display: block;
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--border-light);
}

/* --------------------------------------------------------------------------
   7. HERO SECTION (4.2)
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: calc(88px + var(--space-64));
  padding-bottom: 0;
  background-color: var(--white);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-48);
  align-items: center;
  margin-bottom: var(--space-64);
}

.hero-content {
  padding-right: var(--space-16);
}

.hero-subtext {
  font-size: 1.1875rem; /* 19px */
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: var(--space-32);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background-color: var(--navy-900);
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 26, 54, 0.45) 0%, rgba(10, 32, 68, 0.25) 100%);
  pointer-events: none;
}

.hero-caption-tag {
  position: absolute;
  bottom: var(--space-16);
  left: var(--space-16);
  background-color: rgba(7, 26, 54, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 153, 45, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.caption-marker {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-500);
}

/* Positioning Strip (3-Up Row) */
.positioning-strip {
  background-color: var(--navy-800);
  border-top: 2px solid var(--gold-500);
  padding-block: var(--space-16);
}

.positioning-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-16);
}

.positioning-item {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.positioning-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-500);
  border-radius: 50%;
}

.positioning-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.positioning-divider {
  width: 1px;
  height: 18px;
  background-color: rgba(227, 199, 132, 0.3);
}

/* --------------------------------------------------------------------------
   8. ABOUT / PHILOSOPHY SECTION (4.3)
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-64);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
  background-color: var(--navy-900);
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 54, 0.3);
  pointer-events: none;
}

.about-stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background-color: var(--navy-900);
  color: var(--white);
  border-left: 3px solid var(--gold-500);
  padding: var(--space-24);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}

.stat-highlight {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 4px;
}

.stat-caption {
  font-size: 0.8125rem;
  color: var(--navy-100);
  line-height: 1.4;
}

.about-content {
  padding-left: var(--space-16);
}

.about-body p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: var(--space-16);
}

/* Credibility Stat Row */
.about-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-24);
  margin-top: var(--space-32);
  margin-bottom: var(--space-32);
}

.about-stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background-color: var(--border);
}

.growth-trajectory-note {
  border-left: 2px solid var(--gold-500);
  padding-left: var(--space-16);
  margin-top: var(--space-24);
}

.growth-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
}

.growth-text {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   9. SERVICES SECTION (4.4) — 2x2 Grid
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-32);
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-48);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--trans-base), box-shadow var(--trans-base), border-color var(--trans-base);
  position: relative;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-600);
}

.service-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-24);
  flex-shrink: 0;
}

.badge-navy {
  background-color: var(--navy-800);
  color: var(--white);
}

.badge-gold {
  background-color: var(--gold-500);
  color: var(--navy-900);
}

.service-pillar-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: block;
  margin-bottom: var(--space-8);
}

.service-title {
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.3;
  margin-bottom: var(--space-8);
}

.service-tagline {
  font-size: 0.9375rem;
  font-weight: 500;
  font-style: italic;
  color: var(--slate);
  margin-bottom: var(--space-16);
}

.card-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  margin-bottom: var(--space-16);
}

.service-description {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: var(--space-24);
  flex-grow: 1;
}

.service-scope-list {
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-16);
}

.service-scope-list li {
  font-size: 0.875rem;
  color: var(--slate);
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.45;
}

.service-scope-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-500);
}

/* --------------------------------------------------------------------------
   10. WHY UTILITY CONSULTANCIES (4.5)
   -------------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-32);
  margin-bottom: var(--space-64);
}

.value-item {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-32);
  box-shadow: var(--shadow-sm);
}

.value-badge {
  width: 48px;
  height: 48px;
  background-color: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-800);
  margin-bottom: var(--space-16);
}

.value-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: var(--space-8);
}

.value-description {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.6;
}

/* How We Engage Sub-block */
.engagement-block {
  background-color: var(--navy-800);
  border-radius: var(--radius-md);
  color: var(--white);
  padding: var(--space-48);
  box-shadow: var(--shadow-md);
}

.engagement-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-48);
  align-items: center;
}

.engagement-title {
  font-size: 1.75rem;
  color: var(--white);
  margin-top: var(--space-8);
  line-height: 1.3;
}

.engagement-content p {
  font-size: 1rem;
  color: var(--navy-100);
  line-height: 1.65;
  margin-bottom: var(--space-24);
}

.engagement-bullets {
  display: flex;
  gap: var(--space-24);
  flex-wrap: wrap;
}

.bullet-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-300);
}

/* --------------------------------------------------------------------------
   11. LEADERSHIP SECTION (4.6) — 3-Column Founders Row
   -------------------------------------------------------------------------- */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-32);
}

.leadership-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-40) var(--space-32);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--trans-base), box-shadow var(--trans-base);
}

.leadership-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.leader-portrait-wrap {
  margin-bottom: var(--space-24);
}

.leader-portrait {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

.leader-name {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 4px;
}

.leader-role {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold-600);
  margin-bottom: 6px;
}

.leader-practice-tag {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate);
  background-color: var(--cream);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: var(--space-16);
}

.leader-bio {
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.6;
  text-align: left;
}

/* --------------------------------------------------------------------------
   12. CONTACT / CTA SECTION (4.7) — Full-Width Deep Navy
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-96);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: start;
}

.contact-info {
  padding-right: var(--space-24);
}

.contact-title {
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-24);
}

.contact-lead {
  font-size: 1.0625rem;
  color: #D1D8E4;
  line-height: 1.7;
  margin-bottom: var(--space-40);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-20);
  padding: var(--space-20);
  background-color: rgba(20, 52, 95, 0.45);
  border: 1px solid rgba(201, 153, 45, 0.25);
  border-radius: var(--radius-sm);
  transition: background-color var(--trans-fast), border-color var(--trans-fast);
}

.contact-detail-item:hover {
  background-color: rgba(20, 52, 95, 0.7);
  border-color: rgba(201, 153, 45, 0.5);
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  background-color: rgba(10, 32, 68, 0.8);
  border: 1px solid rgba(201, 153, 45, 0.5);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-300);
  margin-bottom: 6px;
}

.contact-detail-val {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 4px;
  transition: color var(--trans-fast);
  display: inline-block;
}

.contact-detail-val:hover {
  color: var(--gold-300);
}

.contact-detail-text {
  font-size: 0.9375rem;
  color: #E2E8F0;
  line-height: 1.55;
  display: block;
}

/* Contact Form Card (Generous Padding & Distinct Separation) */
.contact-form-wrapper {
  position: relative;
}

.form-container-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-48) var(--space-40);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  color: var(--ink);
}

.form-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: var(--space-8);
  line-height: 1.3;
}

.form-card-subtitle {
  font-size: 0.9375rem;
  color: var(--slate);
  margin-bottom: var(--space-32);
  line-height: 1.5;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-800);
}

.required-star {
  color: #C23934;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  font-size: 0.9375rem;
  color: var(--ink);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.form-input:focus {
  border-color: var(--navy-800);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 32, 68, 0.12);
}

.form-select {
  appearance: auto;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-error {
  font-size: 0.75rem;
  color: #C23934;
  min-height: 16px;
  display: block;
}

.form-actions {
  margin-top: var(--space-8);
}

.form-feedback {
  margin-top: var(--space-16);
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.5;
  display: none;
}

.form-feedback.success {
  display: block;
  background-color: #EBF7EE;
  color: #1E6B34;
  border: 1px solid #BEE5C8;
}

.form-feedback.error {
  display: block;
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #F8B4B4;
}

/* --------------------------------------------------------------------------
   13. FOOTER (4.8)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #040F20;
  color: var(--white);
  padding-top: var(--space-64);
  padding-bottom: var(--space-32);
  border-top: 1px solid rgba(227, 199, 132, 0.2);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-48);
  margin-bottom: var(--space-48);
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-16);
}

.footer-tagline-text {
  font-size: 0.875rem;
  color: var(--navy-100);
  line-height: 1.6;
  margin-bottom: var(--space-24);
  max-width: 360px;
}

.footer-badge-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-pill {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: rgba(20, 52, 95, 0.8);
  color: var(--gold-300);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 153, 45, 0.3);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--space-24);
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.footer-link {
  font-size: 0.875rem;
  color: var(--navy-100);
  transition: color var(--trans-fast), transform var(--trans-fast);
  display: inline-block;
}

.footer-link:hover {
  color: var(--gold-300);
  transform: translateX(2px);
}

.footer-contact-item {
  font-size: 0.875rem;
  color: var(--navy-100);
  line-height: 1.5;
  margin-bottom: var(--space-16);
}

.footer-contact-item strong {
  color: var(--white);
}

.footer-email-link {
  color: var(--gold-300);
  text-decoration: underline;
}

.footer-email-link:hover {
  color: var(--white);
}

.footer-subtle {
  font-size: 0.8125rem;
  color: #8C99AB;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-24);
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-16);
}

.copyright-text {
  font-size: 0.8125rem;
  color: #8C99AB;
}

.secondary-motto {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--gold-300);
}

/* --------------------------------------------------------------------------
   14. MOTION & SCROLL REVEALS (Restrained 450ms Fade-Up)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1), transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Accessible Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE BREAKPOINTS (5.0)
   -------------------------------------------------------------------------- */

/* Tablet (640px to 1023px) */
@media (max-width: 1023px) {
  :root {
    --container-padding: 32px;
    --space-96: 64px;
    --space-64: 48px;
  }

  .hero-headline {
    font-size: 2.75rem; /* 44px */
  }

  .section-title {
    font-size: 2.125rem; /* 34px */
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-40);
  }

  .hero-img {
    height: 340px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-48);
  }

  .about-stat-card {
    position: static;
    margin-top: var(--space-16);
    max-width: 100%;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

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

  .engagement-inner {
    grid-template-columns: 1fr;
    gap: var(--space-24);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-48);
  }

  .contact-info {
    padding-right: 0;
  }

  .form-container-card {
    padding: var(--space-40) var(--space-32);
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-32);
  }

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* Mobile (< 640px) */
@media (max-width: 639px) {
  :root {
    --container-padding: 20px;
    --space-96: 56px;
    --space-64: 36px;
  }

  .hero-headline {
    font-size: 2.25rem; /* 36px */
  }

  .section-title {
    font-size: 1.75rem; /* 28px */
  }

  .hero-subtext {
    font-size: 1.0625rem;
  }

  .hero-img {
    height: 260px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .brand-logo {
    height: 42px;
  }

  .header-action #nav-cta-btn {
    display: none;
  }

  .positioning-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-12);
  }

  .positioning-divider {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-24);
  }

  .service-card {
    padding: var(--space-32) var(--space-24);
  }

  .about-stats-row {
    flex-direction: column;
    gap: var(--space-16);
  }

  .stat-sep {
    width: 60px;
    height: 1px;
  }

  .contact-detail-item {
    padding: var(--space-16);
    gap: var(--space-16);
  }

  .form-container-card {
    padding: var(--space-32) var(--space-20);
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: var(--space-32);
  }

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}
