/* ============================================================
   VALENTIUM — MASTER PREMIUM DESIGN SYSTEM v3.0
   Elite International Consulting Firm
   ============================================================ */

/* Google Fonts — Cormorant + Inter */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colors — Exact Logo Colors */
  --primary: #0C2C52;
  --primary-hover: #081E38;
  --primary-light: rgba(12, 44, 82, 0.08);
  --primary-glow: rgba(12, 44, 82, 0.25);

  /* Navy Palette */
  --navy-900: #050E1A;
  --navy-800: #0C2C52;
  --navy-700: #0F3460;
  --navy-600: #144272;
  --navy-500: #195188;
  --navy-400: #1E60A0;

  /* Teal / Cyan */
  --teal: #006F8E;
  --teal-light: rgba(0, 111, 142, 0.14);
  --teal-bright: #00A3BF;

  /* Gold Accents */
  --gold: #C9A84C;
  --gold-pale: rgba(201, 168, 76, 0.12);
  --gold-border: rgba(201, 168, 76, 0.35);

  /* Environment Green */
  --env-green: #3D8B62;
  --env-green-light: rgba(61, 139, 98, 0.12);

  /* Surfaces */
  --bg-white: #FFFFFF;
  --bg-off: #F8F9FC;
  --bg-slate: #F3F6FA;
  --bg-navy: var(--navy-800);

  /* Text */
  --text-dark: #080F1E;
  --text-body: #2D3A50;
  --text-muted: #5A6B82;
  --text-pale: #8FA0B4;
  --text-white: #FFFFFF;
  --text-white-soft: rgba(255,255,255,0.78);

  /* Borders */
  --border-light: #E4E9F0;
  --border-medium: #C9D3DE;
  --border-blue: rgba(17, 85, 166, 0.18);
  --border-gold: rgba(201, 168, 76, 0.38);
  --border-white-faint: rgba(255,255,255,0.09);
  --border-white-subtle: rgba(255,255,255,0.14);

  /* Shadows */
  --shadow-xs:  0 1px 4px rgba(8,15,30,0.05);
  --shadow-sm:  0 4px 18px rgba(8,15,30,0.07);
  --shadow-md:  0 12px 36px rgba(8,15,30,0.11);
  --shadow-lg:  0 24px 60px rgba(8,15,30,0.15);
  --shadow-xl:  0 40px 90px rgba(8,15,30,0.19);
  --shadow-blue: 0 14px 44px rgba(17,85,166,0.28);
  --shadow-gold: 0 8px 26px rgba(201,168,76,0.22);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snappy: cubic-bezier(0.22, 1, 0.36, 1);
  --transition:      all 0.35s cubic-bezier(0.16,1,0.3,1);
  --transition-fast: all 0.2s  cubic-bezier(0.16,1,0.3,1);
  --transition-slow: all 0.6s  cubic-bezier(0.16,1,0.3,1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Spacing */
  --section-pad: 7.5rem;
  --section-pad-sm: 5rem;
  --container-max: 1280px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.16;
  letter-spacing: -0.028em;
  font-weight: 700;
}

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

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

ul, ol {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 92%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-spacious { padding: var(--section-pad) 0; }
.section-mid      { padding: var(--section-pad-sm) 0; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.section-title.title-white { color: #FFFFFF; }

.section-subtitle {
  font-size: 1.07rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
}

.section-subtitle.sub-center {
  margin: 0 auto;
  text-align: center;
}

.title-rule {
  width: 44px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  border-radius: 2px;
  margin: 0.9rem 0 1.8rem;
}
.title-rule.rule-center { margin-left: auto; margin-right: auto; }
.title-rule.rule-white  { background: rgba(255,255,255,0.35); }

/* ============================================================
   PREMIUM BUTTON SYSTEM
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.9rem;
  border: 1.5px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
  font-style: normal;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* Primary */
.btn-primary {
  background: var(--primary);
  color: #FFF;
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(17,85,166,0.28);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(17,85,166,0.38);
}

/* Navy */
.btn-navy {
  background: var(--navy-800);
  color: #FFF;
  border-color: var(--navy-800);
  box-shadow: 0 4px 14px rgba(8,15,30,0.22);
}
.btn-navy:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* Ghost white */
.btn-ghost-white {
  background: rgba(255,255,255,0.1);
  color: #FFF;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR — PREMIUM REDESIGN
   ============================================================ */
header#main-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(228,233,240,0.65);
  box-shadow: 0 2px 28px rgba(8,15,30,0.055);
  transition: var(--transition);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.3s var(--ease-out);
}

header#main-navbar.scrolled .navbar-container {
  height: 68px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-full-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

header#main-navbar.scrolled .navbar-full-logo {
  height: 48px;
}

.logo-link:hover .navbar-full-logo {
  transform: translateY(-1px) scale(1.02);
}

.logo-wrapper, .logo-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-icon, .brand-v-icon {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper:hover .header-logo-icon,
.logo-brand:hover .brand-v-icon {
  transform: translateY(-1px) scale(1.03);
}

.logo-text-block, .brand-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  margin-left: -5px; /* Tucks 'a' right next to V ribbon curve */
  margin-top: 12px;  /* Baseline alignment matching Screenshot 2 */
}

.logo-word-main {
  font-family: 'Manrope', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.75rem; /* Large, bold 28px vector text matching Screenshot 2 */
  letter-spacing: -0.02em;
  color: #0C2C52;     /* Exact logo dark navy */
  line-height: 0.85;
}

.logo-pvt-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.65rem; /* 10px */
  color: #0C2C52;
  line-height: 1;
  margin-top: 2px;
  padding-right: 1px; /* Stacked right under 'ium' matching Screenshot 2 */
}

/* Footer Brand Adaptations */
.footer-logo-brand {
  align-items: center;
}

.footer-logo-brand .logo-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center !important;
  margin-left: 2px !important;
  margin-top: 2px !important;
}

.footer-logo-brand .logo-word {
  font-family: 'Manrope', 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  color: #FFFFFF !important;
  line-height: 1;
}

.footer-logo-brand .logo-pvt {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold) !important;
  margin-left: 4px;
}

.footer-logo-brand .logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75) !important;
  letter-spacing: 0.03em;
  margin-top: 4px;
  line-height: 1;
  white-space: nowrap;
}

.footer-v-icon {
  height: 48px;
}









/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li { position: relative; }

.nav-links a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  transition: color 0.22s ease;
  position: relative;
  letter-spacing: 0.005em;
}

/* Animated underline indicator */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 1rem;
  right: 1rem;
  height: 1.5px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--primary);
}

/* Contact CTA */
.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFF;
  background: var(--navy-800);
  border: 1.5px solid var(--navy-800);
  padding: 0.62rem 1.45rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-contact-arrow {
  transition: transform 0.22s var(--ease-out);
  font-style: normal;
}

.nav-contact-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(17,85,166,0.32);
}

.nav-contact-btn:hover .nav-contact-arrow { transform: translateX(3px); }

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  color: var(--navy-800);
  font-size: 1.4rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* ============================================================
   HERO — COMPLETE REDESIGN
   ============================================================ */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  overflow: hidden;
}

/* Background grid pattern */
.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Ambient glow */
.hero-wrapper::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(17,85,166,0.22) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 7rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

/* Left: content */
.hero-content { padding-right: 2rem; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.8s var(--ease-out) 0.2s forwards;
}

.hero-eyebrow-line {
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.9s var(--ease-out) 0.35s forwards;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #4FC3F7 0%, var(--teal-bright) 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 2.8rem;
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal 0.9s var(--ease-out) 0.5s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.9s var(--ease-out) 0.65s forwards;
}

/* Hero stats strip */
.hero-stats-strip {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(14px);
  animation: heroReveal 0.9s var(--ease-out) 0.8s forwards;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFF;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
  font-weight: 500;
}

/* Right: Visual */
.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateX(30px) scale(0.97);
  animation: heroVisualReveal 1.1s var(--ease-out) 0.45s forwards;
}

.hero-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.25);
}

.hero-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Floating badge on hero image */
.hero-badge {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  background: rgba(8,15,30,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-badge-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.hero-badge-value {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFF;
  letter-spacing: -0.02em;
}

/* Decorative corner accent */
.hero-corner-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1.5px solid rgba(17,85,166,0.4);
  border-radius: 50%;
  z-index: -1;
  animation: heroOrbitSpin 18s linear infinite;
}

.hero-corner-accent::after {
  content: '';
  position: absolute;
  top: 15px; right: 15px; bottom: 15px; left: 15px;
  border: 1.5px solid rgba(0,163,191,0.25);
  border-radius: 50%;
}

@keyframes heroOrbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroVisualReveal {
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ============================================================
   TRUST / PILLARS BAR
   ============================================================ */
.trust-bar-section {
  background: var(--bg-white);
  padding: 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-pillar {
  padding: 2.25rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  border-right: 1px solid var(--border-light);
  transition: var(--transition);
}

.trust-pillar:last-child { border-right: none; }

.trust-pillar:hover { background: var(--bg-slate); }

.trust-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.trust-pillar:hover .trust-pillar-icon {
  background: var(--primary);
  color: #FFF;
  box-shadow: 0 6px 18px rgba(17,85,166,0.25);
}

.trust-pillar-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.trust-pillar-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ============================================================
   WHO WE ARE — HOME TEASER
   ============================================================ */
.who-teaser-section {
  background: var(--bg-white);
  padding: var(--section-pad) 0;
}

.who-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.who-teaser-visual {
  position: relative;
}

.who-teaser-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: var(--shadow-xl);
}

.who-teaser-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--primary);
  color: #FFF;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-blue);
  text-align: center;
}

.who-teaser-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.who-teaser-badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.78;
  margin-top: 0.25rem;
}

.who-teaser-content {}

.who-teaser-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.14;
  margin-bottom: 0.5rem;
}

.who-teaser-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 1.25rem;
}

.who-values-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0 2.25rem;
}

.who-value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.who-value-line {
  width: 24px;
  height: 1.5px;
  background: var(--primary);
  flex-shrink: 0;
}

.who-value-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================================
   SERVICES — HOME PREVIEW
   ============================================================ */
.services-preview-section {
  background: var(--bg-off);
  padding: var(--section-pad) 0;
}

.services-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.services-numbered-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
  border-radius: 0;
  position: relative;
}

.service-list-item:first-child { border-top: 1px solid var(--border-light); }

.service-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--teal));
  border-radius: 2px;
  transform: scaleY(0);
  transition: transform 0.3s var(--ease-out);
}

.service-list-item:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.service-list-item:hover::before { transform: scaleY(1); }

.sli-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
  min-width: 36px;
}

.sli-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-list-item:hover .sli-icon {
  background: var(--primary);
  color: #FFF;
}

.sli-content { flex: 1; }

.sli-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}

.service-list-item:hover .sli-title { color: var(--primary); }

.sli-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.sli-arrow {
  color: var(--text-pale);
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.service-list-item:hover .sli-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

/* ============================================================
   STATS / PROOF SECTION
   ============================================================ */
.stats-section {
  background: var(--navy-800);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(17,85,166,0.18) 0%, transparent 70%);
  z-index: 0;
}

.stats-inner {
  position: relative;
  z-index: 1;
}

.stats-header {
  text-align: center;
  margin-bottom: 5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-block {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  transition: var(--transition);
}

.stat-block:last-child { border-right: none; }

.stat-block:hover { background: rgba(255,255,255,0.03); }

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #FFF;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.65rem;
  display: block;
}

.stat-accent {
  color: var(--teal-bright);
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  font-weight: 500;
}

/* ============================================================
   HOME CTA BAND
   ============================================================ */
.home-cta-section {
  background: var(--bg-white);
  padding: var(--section-pad) 0;
}

.home-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 4rem;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.home-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.home-cta-inner::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(17,85,166,0.3) 0%, transparent 70%);
}

.home-cta-content {
  position: relative;
  z-index: 1;
}

.home-cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #FFF;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.home-cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  max-width: 540px;
}

.home-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* ============================================================
   PAGE HERO BANNER — INNER PAGES
   ============================================================ */
.page-hero-banner {
  position: relative;
  background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-700) 60%, #162E5C 100%);
  padding: 6rem 0 5rem;
  overflow: hidden;
  text-align: center;
}

.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

.page-hero-banner::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(17,85,166,0.25) 0%, transparent 70%);
  z-index: 0;
}

.page-hero-banner .container {
  position: relative;
  z-index: 2;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.35rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
}

.page-hero-banner h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.page-hero-banner > .container > p,
.page-hero-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
  max-width: 660px;
  margin: 0 auto;
}

/* Page-specific banner decorations */
.banner-deco-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--primary), var(--teal), transparent);
}

/* ============================================================
   WHO WE ARE — FULL PAGE
   ============================================================ */
.who-we-are-section {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
}

.who-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.who-img-stack {
  position: relative;
}

.who-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}

.who-img-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(8,15,30,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.2rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.who-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.who-content p {
  font-size: 1.025rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ============================================================
   PURPOSE / VISION / MISSION — REDESIGNED
   ============================================================ */
.pvm-section {
  padding: 0 0 var(--section-pad);
}

.pvm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pvm-card {
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  color: #FFF;
}

.pvm-card.card-purpose {
  background: linear-gradient(145deg, var(--primary) 0%, #0D3D82 100%);
}

.pvm-card.card-vision {
  background: linear-gradient(145deg, var(--teal) 0%, #004D65 100%);
}

.pvm-card.card-mission {
  background: linear-gradient(145deg, var(--navy-600) 0%, var(--navy-900) 100%);
}

.pvm-card::before {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  z-index: 0;
}

.pvm-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.pvm-card:hover .pvm-card-icon {
  background: rgba(255,255,255,0.22);
  transform: scale(1.06);
}

.pvm-card h3 {
  color: #FFF;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.pvm-card p {
  color: rgba(255,255,255,0.78);
  font-size: 0.975rem;
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

/* For legacy pvm-colored-section / pvm-colored-grid */
.pvm-colored-section { padding: 0 0 var(--section-pad); }
.pvm-colored-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 4%;
}
.pvm-block {
  padding: 3rem 2.5rem;
  color: #FFF;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.pvm-block::before {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  z-index: 0;
}
.pvm-block > * { position: relative; z-index: 1; }
.pvm-block.block-purpose { background: linear-gradient(145deg, var(--primary) 0%, #0D3D82 100%); }
.pvm-block.block-vision  { background: linear-gradient(145deg, var(--teal) 0%, #004D65 100%); }
.pvm-block.block-mission { background: linear-gradient(145deg, var(--navy-600) 0%, var(--navy-900) 100%); }
.pvm-icon-circle {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #FFF; font-size: 1.5rem;
  margin-bottom: 1.75rem;
  transition: var(--transition);
}
.pvm-block:hover .pvm-icon-circle { background: rgba(255,255,255,0.22); transform: scale(1.06); }
.pvm-block h3 { color: #FFF; font-size: 1.35rem; font-weight: 800; margin-bottom: 0.85rem; }
.pvm-block p  { color: rgba(255,255,255,0.78); font-size: 0.975rem; line-height: 1.72; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-section {
  background: var(--bg-white);
  padding: var(--section-pad) 0;
}

.services-page-section {
  background: var(--bg-off);
  padding: var(--section-pad) 0;
}

/* Keep old classes compatible */
.services-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.services-grid-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card-9 {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card-9::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  opacity: 0;
  transition: var(--transition);
}

.service-card-9:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-blue);
}

.service-card-9:hover::before { opacity: 1; }

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.service-card-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

.service-card-icon {
  font-size: 1.5rem;
  color: var(--navy-600);
  transition: var(--transition);
}

.service-card-9:hover .service-card-icon {
  color: var(--primary);
  transform: scale(1.1);
}

.service-card-9 h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--text-dark);
  font-weight: 700;
}

.service-card-9 p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-card-link {
  font-weight: 700;
  font-size: 0.855rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.service-card-9:hover .service-card-link { gap: 0.65rem; }

/* Service detail block (services.html) */
.service-detail-block {
  scroll-margin-top: 100px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  position: relative;
  border-left: 3px solid transparent;
  overflow: hidden;
}

.service-detail-block:hover {
  box-shadow: var(--shadow-lg);
  border-left-color: var(--primary);
  transform: translateX(4px);
}

.service-detail-block.accent-green:hover {
  border-left-color: var(--env-green);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-detail-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-slate);
  color: var(--primary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-detail-block:hover .service-detail-icon {
  background: var(--primary);
  color: #FFF;
  box-shadow: var(--shadow-blue);
}

.service-detail-block.accent-green .service-detail-icon {
  background: var(--env-green-light);
  color: var(--env-green);
  border-color: rgba(61,139,98,0.22);
}

.service-detail-block.accent-green:hover .service-detail-icon {
  background: var(--env-green);
  color: #FFF;
  box-shadow: 0 10px 28px rgba(61,139,98,0.3);
}

.service-number-badge {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 0.35rem;
}

.service-detail-block h2 {
  font-size: 1.55rem;
  color: var(--text-dark);
  font-weight: 700;
}

.service-detail-block > p {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 1.5rem;
  line-height: 1.72;
}

.service-subgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.65rem;
}

.service-subitem {
  background: var(--bg-off);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.service-subitem:hover {
  background: var(--bg-slate);
  border-color: var(--border-blue);
  color: var(--primary);
}

.service-subitem i {
  color: var(--primary);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.service-detail-block.accent-green .service-subitem i { color: var(--env-green); }
.service-detail-block.accent-green .service-subitem:hover {
  color: var(--env-green);
  border-color: rgba(61,139,98,0.28);
  background: var(--env-green-light);
}

/* ============================================================
   APPROACH / TIMELINE (our-team.html used for methodology)
   ============================================================ */
.approach-section {
  background: var(--bg-off);
  padding: var(--section-pad) 0;
}

.timeline-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
  position: relative;
  gap: 1rem;
}

.timeline-flex::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 8%;
  width: 84%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--primary), var(--teal), var(--env-green));
  z-index: 1;
  opacity: 0.35;
}

.timeline-step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 0.75rem;
  transition: var(--transition);
}

.timeline-step-item:hover { transform: translateY(-6px); }

.timeline-step-num {
  width: 54px;
  height: 54px;
  background: var(--bg-white);
  border: 2px solid var(--border-blue);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 1.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.timeline-step-item:hover .timeline-step-num {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  color: #FFF;
  border-color: transparent;
  box-shadow: var(--shadow-blue);
  transform: scale(1.1);
}

.timeline-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.1rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.timeline-step-item:hover .timeline-card {
  box-shadow: var(--shadow-md);
  border-color: var(--border-blue);
}

.timeline-step-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.timeline-step-item p {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   WHY CHOOSE US — DARK SECTION
   ============================================================ */
.why-choose-us-section {
  background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #FFF;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.why-choose-us-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}

.why-choose-us-section::after {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(17,85,166,0.16) 0%, transparent 65%);
  z-index: 0;
}

.why-choose-us-section .container { position: relative; z-index: 1; }
.why-choose-us-section .section-title { color: #FFF; }
.why-choose-us-section .section-subtitle { color: rgba(255,255,255,0.6); max-width: 560px; }

.why-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.why-item-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-item-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--primary));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.why-item-box:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.28);
}

.why-item-box:hover::before { transform: scaleX(1); }

.why-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0,111,142,0.15);
  border: 1px solid rgba(0,111,142,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-bright);
  font-size: 1.35rem;
  margin-bottom: 1.4rem;
  transition: var(--transition);
}

.why-item-box:hover .why-item-icon {
  background: var(--teal);
  color: #FFF;
  box-shadow: 0 8px 22px rgba(0,111,142,0.4);
  transform: scale(1.08);
}

.why-item-box h3 {
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.why-item-box p {
  color: rgba(255,255,255,0.62);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ============================================================
   FORMS / GET INVOLVED / CONTACT
   ============================================================ */
.form-section-bg {
  background: var(--bg-slate);
  padding: var(--section-pad) 0;
}

.cv-form-container,
.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 20px;
  padding: 3.5rem 4rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cv-form-container::before,
.contact-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal), var(--primary));
  background-size: 200% 100%;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 0.75rem 1.1rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-control::placeholder {
  color: var(--text-pale);
}

.form-control:hover {
  border-color: #CBD5E1;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px rgba(17,85,166,0.12);
  background: #FFFFFF;
}

/* Valid & Invalid States */
.form-control.is-valid {
  border-color: #10B981 !important;
  background-color: #FAFCF9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310B981'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}

.form-control.is-invalid {
  border-color: #EF4444 !important;
  background-color: #FFFDFD;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23EF4444'%3E%3Cpath fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7 4a1 1 0 11-2 0 1 1 0 012 0zm-1-9a1 1 0 00-1 1v4a1 1 0 102 0V6a1 1 0 00-1-1z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
  animation: inputShake 0.3s ease-in-out;
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

select.form-control.is-valid {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310B981'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

select.form-control.is-invalid {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23EF4444'%3E%3Cpath fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7 4a1 1 0 11-2 0 1 1 0 012 0zm-1-9a1 1 0 00-1 1v4a1 1 0 102 0V6a1 1 0 00-1-1z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

textarea.form-control {
  height: auto !important;
  min-height: 120px;
  resize: vertical;
}

textarea.form-control.is-valid,
textarea.form-control.is-invalid {
  background-position: right 14px top 14px;
}

.char-counter {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: right;
  margin-top: 0.25rem;
}

.char-counter.limit-near {
  color: #D97706;
  font-weight: 600;
}

.char-counter.limit-max {
  color: #DC2626;
  font-weight: 700;
}

.field-feedback {
  font-size: 0.78rem;
  margin-top: 0.35rem;
  display: none;
  font-weight: 500;
  line-height: 1.4;
}

.field-feedback.error {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #EF4444;
}

.field-feedback.success {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #10B981;
}

.file-upload-box {
  border: 2px dashed var(--border-medium);
  padding: 2.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  background: var(--bg-off);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.file-upload-box:hover {
  border-color: var(--primary);
  background: var(--bg-slate);
  box-shadow: 0 0 0 3.5px rgba(17,85,166,0.08);
}

.file-upload-box input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
}

.file-upload-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.65rem;
}

.success-banner {
  display: none;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 1px solid #10b981;
  color: #065f46;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
  text-align: center;
}

.sent-message {
  display: none;
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  border: 1px solid #86EFAC;
  color: #166534;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(22, 101, 52, 0.08);
}

.sent-message h4 {
  font-size: 1.1rem;
  color: #15803D;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sent-message p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #166534;
  margin: 0;
}

.form-error-alert {
  display: none;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Contact info card */
.contact-info-card {
  background: linear-gradient(145deg, var(--navy-800) 0%, var(--navy-600) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -70px; right: -70px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(17,85,166,0.28) 0%, transparent 70%);
  z-index: 0;
}

.contact-info-card > * { position: relative; z-index: 1; }

.contact-info-card h2 {
  font-size: 1.7rem;
  color: #FFF;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.contact-info-card > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(17,85,166,0.22);
  border: 1px solid rgba(17,85,166,0.38);
  color: #6CB3F5;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
  background: var(--primary);
  color: #FFF;
  box-shadow: var(--shadow-blue);
}

.contact-info-item h4 {
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.contact-info-item a,
.contact-info-item p {
  color: #FFF;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Contact Info Card LinkedIn Badge Button */
.contact-linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.contact-linkedin-btn i.fa-linkedin {
  font-size: 1.2rem;
  color: #0A66C2;
  background: #FFFFFF;
  border-radius: 3px;
  line-height: 1;
  padding: 1px;
}

.contact-linkedin-btn span {
  color: #FFFFFF !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-linkedin-btn .btn-arrow-icon {
  font-size: 0.75rem;
  color: var(--gold);
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.contact-linkedin-btn:hover {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.45);
}

.contact-linkedin-btn:hover .btn-arrow-icon {
  color: #FFFFFF;
  transform: translate(2px, -2px);
}

/* ============================================================
   IMPACT PAGE
   ============================================================ */
.impact-areas-section {
  background: var(--bg-white);
  padding: 6rem 0;
}

.impact-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.impact-area-card {
  background: var(--bg-white);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.impact-area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(61,139,98,0.28);
}

.impact-area-icon {
  font-size: 1.75rem;
  color: var(--env-green);
  flex-shrink: 0;
}

.impact-area-card h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 700;
  margin: 0;
}

/* ============================================================
   GETTING INVOLVED
   ============================================================ */
.getting-involved-section {
  background: var(--bg-slate);
  padding: var(--section-pad) 0;
}

.getting-involved-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.gi-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gi-option-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.gi-option-card:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary);
  transform: translateX(4px);
}

.gi-option-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.gi-option-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.gi-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.gi-img-wrapper img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* ============================================================
   FOOTER — PREMIUM
   ============================================================ */
footer {
  background: linear-gradient(175deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--text-pale);
  padding: 5.5rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -120px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(17,85,166,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1.6fr 1.35fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}



.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(143,160,180,0.72);
  margin: 1.25rem 0 1.75rem;
  max-width: 280px;
}

.footer-col h3 {
  color: #FFF;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-col ul li { margin-bottom: 0.65rem; }

.footer-col ul li a {
  color: rgba(143,160,180,0.7);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: #FFF;
  padding-left: 4px;
}

.footer-col ul li:not(:has(a)) {
  color: rgba(143,160,180,0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.social-links-flex {
  display: flex;
  gap: 0.6rem;
}

.footer-linkedin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.6rem 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.825rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-linkedin-badge i.fa-linkedin {
  font-size: 1.1rem;
  color: #0A66C2;
}

.footer-linkedin-badge .footer-ext-arrow {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.footer-linkedin-badge:hover {
  background: rgba(10, 102, 194, 0.16);
  border-color: #0A66C2;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.25);
}

.footer-linkedin-badge:hover .footer-ext-arrow {
  transform: translate(2px, -2px);
  opacity: 1;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(17,85,166,0.35);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: rgba(143,160,180,0.55);
  position: relative;
  z-index: 1;
}

.footer-bottom-bar a {
  color: rgba(143,160,180,0.55);
  transition: var(--transition-fast);
}

.footer-bottom-bar a:hover { color: rgba(255,255,255,0.75); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }
.stagger-6 { transition-delay: 0.40s; }

/* Floating animation */
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Number counter animation */
.count-stat { display: inline-block; }

/* ============================================================
   SECTION DECORATORS
   ============================================================ */
.section-header-center {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header-center .eyebrow { justify-content: center; }
.section-header-center .section-subtitle { text-align: center; margin: 0 auto; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in-up,
  .fade-in-left,
  .fade-in-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-eyebrow,
  .hero-title,
  .hero-desc,
  .hero-btns,
  .hero-stats-strip,
  .hero-visual {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE — 1024px (Tablet)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 5rem;
    --section-pad-sm: 3.25rem;
  }

  .hero-grid,
  .who-teaser-grid,
  .who-split-grid,
  .getting-involved-grid,
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content { padding-right: 0; }

  .hero-visual {
    display: block;
    max-width: 540px;
    margin: 2.5rem auto 0;
    width: 100%;
  }

  .hero-img-frame img {
    height: 320px;
  }

  .hero-inner { padding: 4.5rem 0 3.5rem; }

  .hero-title { font-size: clamp(2.2rem, 5.5vw, 3.2rem); }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .trust-pillar { border-right: none; }

  .pvm-colored-grid,
  .pvm-grid,
  .services-grid-9,
  .why-grid-6,
  .grid-3,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .timeline-flex {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .timeline-flex::before { display: none; }

  .timeline-step-item {
    width: 100%;
    max-width: 420px;
  }

  .home-cta-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-cta-btns { flex-direction: row; }

  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }

  .services-preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ============================================================
   RESPONSIVE — 768px (Mobile & Small Tablets)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 3.25rem;
    --section-pad-sm: 2rem;
  }

  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .container {
    width: 92%;
    padding: 0 0.25rem;
  }

  /* Header & Navigation */
  header#main-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar-container {
    height: 66px;
    gap: 0.5rem;
  }

  header#main-navbar.scrolled .navbar-container {
    height: 62px;
  }

  .header-logo-icon, .brand-v-icon {
    height: 42px;
  }

  .logo-text-block, .brand-text-container {
    margin-left: -4px;
    margin-top: 8px;
  }

  .logo-word-main {
    font-size: 1.4rem;
  }

  .logo-pvt-sub {
    font-size: 0.56rem;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition-fast);
  }

  .mobile-menu-btn:hover {
    background: var(--primary-light);
  }

  .nav-contact-btn {
    padding: 0.42rem 0.8rem;
    font-size: 0.78rem;
    border-radius: 6px;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* Hero Section */
  .hero-inner {
    padding: 3rem 0 2rem;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    margin-bottom: 0.85rem;
  }

  .hero-title {
    font-size: clamp(1.95rem, 7.5vw, 2.65rem);
    line-height: 1.18;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
  }

  .hero-desc {
    font-size: 0.94rem;
    line-height: 1.62;
    margin-bottom: 1.5rem;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.92rem;
  }

  .hero-stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    width: 100%;
  }

  .hero-stat-item {
    text-align: left;
  }

  .hero-stat-num {
    font-size: 1.3rem;
  }

  .hero-stat-label {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .hero-visual {
    display: block;
    margin-top: 2rem;
    width: 100%;
  }

  .hero-img-frame {
    border-radius: 14px;
  }

  .hero-img-frame img {
    height: 220px;
    width: 100%;
    object-fit: cover;
  }

  .hero-badge {
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .hero-badge-label {
    font-size: 0.62rem;
  }

  .hero-badge-value {
    font-size: 0.78rem;
  }

  /* Trust Pillars Bar */
  .trust-bar-section {
    padding: 1.5rem 0;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .trust-pillar {
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: var(--bg-white);
    padding: 0.85rem 0.75rem;
    gap: 0.65rem;
  }

  .trust-pillar-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .trust-pillar-title {
    font-size: 0.85rem;
    font-weight: 700;
  }

  .trust-pillar-sub {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  /* Who We Are & Editorial Teaser */
  .who-teaser-section, .who-we-are-section {
    padding: var(--section-pad) 0;
  }

  .who-teaser-grid, .who-split-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .who-teaser-img, .who-img-main {
    width: 100%;
    height: 220px;
    max-height: 240px;
    object-fit: cover;
    border-radius: 14px;
  }

  .who-values-list {
    margin: 1.25rem 0;
    gap: 0.75rem;
  }

  /* Numbered Services Preview */
  .service-list-item {
    padding: 1.1rem 0.85rem;
    gap: 0.85rem;
    align-items: flex-start;
  }

  .sli-num {
    font-size: 0.68rem;
    min-width: 24px;
    margin-top: 2px;
  }

  .sli-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .sli-title {
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .sli-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-top: 0.2rem;
  }

  .sli-arrow {
    display: none;
  }

  /* Service Detail Blocks (services.html) */
  .service-detail-block {
    padding: 1.5rem 1.15rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
  }

  .service-detail-header {
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 0.85rem;
  }

  .service-detail-icon {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
    border-radius: 10px;
    flex-shrink: 0;
  }

  .service-detail-header h2 {
    font-size: 1.18rem;
    line-height: 1.3;
  }

  .service-number-badge {
    font-size: 0.64rem;
    padding: 0.18rem 0.55rem;
  }

  .service-subgrid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .service-subitem {
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
    border-radius: 8px;
  }

  /* Stats Section */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    gap: 0;
  }

  .stat-block {
    padding: 1.5rem 0.85rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .stat-block:nth-child(2n) {
    border-right: none;
  }

  .stat-block:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stat-num {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  /* Grids & Cards */
  .pvm-colored-grid,
  .pvm-grid,
  .services-grid-9,
  .why-grid-6,
  .impact-areas-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pvm-block {
    padding: 1.75rem 1.25rem;
    border-radius: 12px;
  }

  /* Page Banners */
  .page-hero-banner, .page-banner {
    padding: 3.25rem 0 2.25rem;
    text-align: center;
  }

  .page-hero-banner h1, .page-banner h1 {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
    line-height: 1.2;
  }

  .page-hero-banner p, .page-banner p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  /* Home CTA Band */
  .home-cta-inner {
    padding: 2rem 1.25rem;
    border-radius: 14px;
  }

  .home-cta-btns {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .home-cta-btns .btn {
    width: 100%;
    justify-content: center;
  }

  /* Forms & Inputs */
  .cv-form-container,
  .contact-wrapper,
  .contact-info-card {
    padding: 1.5rem 1.15rem;
    border-radius: 12px;
  }

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

  .contact-wrapper .grid-2,
  .contact-wrapper .grid-2[style] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .form-control, input, select, textarea {
    font-size: 16px !important; /* Prevents auto-zoom on iOS mobile */
    min-height: 46px;
    border-radius: 8px;
  }

  .map-container {
    max-height: 220px;
    border-radius: 10px;
  }

  /* Filters & Tabs (Projects, Resources, Admin) */
  .projects-filters,
  .resources-filters,
  .filter-tabs,
  .admin-tabs {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    gap: 0.4rem;
    scrollbar-width: none;
    width: 100%;
  }

  .projects-filters::-webkit-scrollbar,
  .resources-filters::-webkit-scrollbar,
  .filter-tabs::-webkit-scrollbar,
  .admin-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-btn, .admin-tab {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
  }

  /* Tables */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-bottom: 1.25rem;
    border-radius: 8px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0.85rem 0 1rem;
  }

  .footer-linkedin-badge {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1rem;
  }

  .footer-col h3 {
    margin-bottom: 0.85rem;
    font-size: 0.78rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.65rem;
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.8rem;
  }
}

/* ============================================================
   EXTRA SMALL PHONES (<= 480px)
   ============================================================ */
@media (max-width: 480px) {
  .navbar-container {
    padding: 0 0.5rem;
  }

  .header-logo-icon, .brand-v-icon {
    height: 38px;
  }

  .logo-word-main {
    font-size: 1.25rem;
  }

  .logo-pvt-sub {
    font-size: 0.52rem;
  }

  .nav-contact-btn {
    padding: 0.38rem 0.65rem;
    font-size: 0.74rem;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .hero-stats-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }

  .hero-stat-num {
    font-size: 1.15rem;
  }

  .hero-stat-label {
    font-size: 0.62rem;
  }

  .cv-form-container,
  .contact-wrapper,
  .contact-info-card {
    padding: 1.25rem 0.85rem !important;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 66px);
  height: calc(100dvh - 66px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.5rem 1.25rem 2.5rem;
  gap: 0.45rem;
  z-index: 999;
  overflow-y: auto;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  animation: mobileNavIn 0.28s var(--ease-out);
}

@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links.mobile-open li {
  width: 100%;
}

.nav-links.mobile-open a {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.9rem 1.15rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.nav-links.mobile-open a::after {
  display: none;
}

.nav-links.mobile-open a:hover,
.nav-links.mobile-open a.active {
  background: var(--primary-light);
  color: var(--primary);
  border-bottom-color: transparent;
}

.nav-links.mobile-open a.active {
  font-weight: 700;
}

/* ============================================================
   LEGACY COMPATIBILITY CLASSES
   ============================================================ */

/* Old banner class for impact.html */
.page-banner {
  position: relative;
  background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: 6rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { font-size: clamp(2.2rem,5vw,3.5rem); color: #FFF; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 1rem; }
.page-banner p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* Legacy section padding */
.section-padding { padding: var(--section-pad) 0; }

/* Legacy section tagline */
.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Legacy section desc */
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.72;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* Legacy contact-info-list (impact.html) */
.contact-info-list .contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* Legacy footer for impact.html */
.footer-about { max-width: 280px; }
.footer-about p { font-size: 0.875rem; line-height: 1.7; color: rgba(143,160,180,0.7); margin: 1rem 0 1.25rem; }
.footer-column h3 { color: #FFF; font-size: 0.78rem; font-weight: 700; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-column ul li { margin-bottom: 0.7rem; }
.footer-column ul li a { color: rgba(143,160,180,0.7); font-size: 0.875rem; }
.footer-column ul li a:hover { color: #FFF; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.75rem; font-size: 0.83rem; color: rgba(143,160,180,0.5); text-align: center; }
.social-links { display: flex; gap: 0.6rem; margin-top: 0.75rem; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-fast);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFF;
  transform: translateY(-2px);
}

/* logo class (old) */
.logo img { height: 44px; width: auto; object-fit: contain; }

/* Legacy header class for impact.html */
header.scrolled {
  position: sticky;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228,233,240,0.6);
  box-shadow: 0 2px 24px rgba(8,15,30,0.07);
  padding: 0;
}

/* Logo Link & Full Graphic Logo Image */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-full-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.3s var(--ease-out);
}

header#main-navbar.scrolled .navbar-full-logo {
  height: 56px;
}

@media (max-width: 768px) {
  .navbar-full-logo {
    height: 48px;
  }
}

@media (max-width: 480px) {
  .navbar-full-logo {
    height: 40px;
  }
}

/* Footer Full Logo */
.footer-full-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}





