/* ================================================================
   AVIA DINAMIKA — style.css
   Theme: Exact match to avia-dinamika.com
   — Cobalt/royal blue #1a4bb5
   — White #ffffff
   — Red accent #d62b2b (logo only)
   — Warm sunset photography
   — Exo 2 (geometric, rounded) + Raleway
   ================================================================ */

:root {
  /* Brand colors — directly from website screenshots */
  --blue:          #1a4bb5;
  --blue-dark:     #133a8f;
  --blue-deeper:   #0d2a6b;
  --blue-mid:      #1e55cc;
  --blue-light:    #2d6ae0;
  --blue-pale:     #e8eef9;
  --blue-faint:    #f0f4fc;
  --red:           #d62b2b;
  --white:         #ffffff;
  --off-white:     #f7f8fc;
  --text-dark:     #111827;
  --text-mid:      #374151;
  --text-muted:    #6b7280;
  --border:        #dde3f0;
  --border-light:  #eef1f8;

  /* Typography */
  --font-display: 'Exo 2', sans-serif;
  --font-body:    'Raleway', sans-serif;

  /* Layout */
  --container:    1180px;
  --nav-h:        76px;
  --pad-section:  100px;

  /* Motion */
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --fast:   0.22s var(--ease);
  --med:    0.45s var(--ease);
  --slow:   0.75s var(--ease);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { display: block; width: 100%; height: 100%; object-fit: cover; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── TYPE HELPERS ───────────────────────────────────────── */
.label-tag {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.label-tag--light { color: rgba(255,255,255,0.65); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--blue-deeper);
  letter-spacing: -0.3px;
}
.section-heading--light { color: var(--white); }

.section-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 580px;
  margin-top: 18px;
}

.section-header { margin-bottom: 60px; }
.section-header.section-header--light .section-desc { color: rgba(255,255,255,0.65); }

/* ── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--med), box-shadow var(--med);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 20px rgba(26,75,181,0.10);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-svg {
  width: 100%;
  height: 43px;
  flex-shrink: 0;
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--white);
  transition: color var(--med);
}
.logo-tagline {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  transition: color var(--med);
}
#navbar.scrolled .logo-name    { color: var(--blue-deeper); }
#navbar.scrolled .logo-tagline { color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color var(--fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--white);
  transition: width var(--fast);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

#navbar.scrolled .nav-links a { color: var(--text-mid); }
#navbar.scrolled .nav-links a::after { background: var(--blue); }
#navbar.scrolled .nav-links a:hover { color: var(--blue); }

.nav-btn {
  padding: 10px 24px;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: var(--white) !important;
  font-weight: 600 !important;
  transition: background var(--fast), color var(--fast), border-color var(--fast) !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover {
  background: var(--white) !important;
  color: var(--blue) !important;
  border-color: var(--white) !important;
}
#navbar.scrolled .nav-btn {
  border-color: var(--blue) !important;
  color: var(--blue) !important;
  background: transparent !important;
}
#navbar.scrolled .nav-btn:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--fast);
}
#navbar.scrolled .hamburger span { background: var(--blue-deeper); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────── */
/* Matches the exact layout: centered text, warm dusk jet photo */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img { object-position: center 1%; }

/* Gradient matches the screenshot — subtle top-to-mid-bottom darkening */
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,25,60,0.52) 0%,
    rgba(15,25,60,0.28) 45%,
    rgba(10,18,45,0.55) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 0 0px;
  padding-top: var(--nav-h);
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* "ELEVATE YOUR AVIATION BUSINESS TO A HIGHER STANDARD WITH" */
.hero-super {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.0vw, 20px);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 12px;
  line-height: 1.6;
}

/* "AVIA DINAMIKA" — large, rounded, italic geometric */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 130px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 6px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 15px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

/* Blue outlined button matching site's "Get Notified" style */
.hero-btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 44px;
  border: 2px solid var(--white);
  background: var(--blue);
  color: var(--white);
  transition: background var(--fast), border-color var(--fast), color var(--fast);
  display: inline-block;
}
.hero-btn:hover {
  background: transparent;
  border-color: var(--white);
}

/* ── EXPERTISE BAND ─────────────────────────────────────── */
/* The full-width cobalt blue section after the hero */
#expertise-band {
  background: var(--blue);
  padding: 72px 40px;
  text-align: center;
}
.expertise-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.expertise-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.expertise-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

/* ── ABOUT ──────────────────────────────────────────────── */
#about {
  padding: var(--pad-section) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-photo img { transition: transform var(--slow); }
.about-photo:hover img { transform: scale(1.03); }

.about-photo-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--blue);
  color: var(--white);
  padding: 20px 28px;
  box-shadow: 0 8px 32px rgba(26,75,181,0.35);
  text-align: center;
}
.badge-big {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 200;
  line-height: 1;
  color: var(--white);
}
.badge-small {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.about-copy { padding-left: 8px; }

.about-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dark);
  font-weight: 400;
  margin: 18px 0 14px;
}
.about-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 200;
  color: var(--blue);
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--blue);
}
.stat-desc {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* ── VMV ────────────────────────────────────────────────── */
#vmv {
  position: relative;
  padding: var(--pad-section) 0;
  overflow: hidden;
}
.vmv-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vmv-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,42,107,0.94) 0%,
    rgba(26,75,181,0.88) 100%
  );
}
.vmv-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.vmv-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 48px 40px 52px;
  transition: background var(--fast), border-color var(--fast);
}
.vmv-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}
.vmv-card--blue {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.25);
}
.vmv-icon-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 24px;
}
.vmv-icon-ring svg { width: 20px; height: 20px; }
.vmv-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.vmv-card p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
}
.vmv-list { display: flex; flex-direction: column; gap: 10px; }
.vmv-list li {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  padding-left: 18px;
  position: relative;
}
.vmv-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
}

/* ── SERVICES ───────────────────────────────────────────── */
#services {
  padding: var(--pad-section) 0;
  background: var(--off-white);
}
.section-header { text-align: center; }
.section-header .section-desc { margin: 16px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,75,181,0.06);
  transition: transform var(--fast), box-shadow var(--fast);
  border-bottom: 3px solid transparent;
}
.svc:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(26,75,181,0.14);
  border-bottom-color: var(--blue);
}

.svc-img {
  position: relative;
  aspect-ratio: 11/10;
  overflow: hidden;
}
.svc-img img { transition: transform var(--slow); }
.svc:hover .svc-img img { transform: scale(1.05); }

.svc-badge {
  position: absolute;
  top: 0; left: 0;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 14px;
}

.svc-text { padding: 24px 26px 28px; }
.svc-text h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-deeper);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}
.svc-text p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ── QUOTE STRIP ────────────────────────────────────────── */
.quote-strip {
  background: var(--blue-deeper);
  padding: 72px 0;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 200;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.quote-text cite {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  font-style: normal;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-top: 24px;
}

/* ── TEAM ───────────────────────────────────────────────── */
#team {
  padding: var(--pad-section) 0;
  background: var(--white);
}

.md-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  overflow: hidden;
  background: var(--blue-faint);
  margin-bottom: 56px;
  border-bottom: 3px solid var(--blue);
}
.md-photo {
  min-height: 420px;
  overflow: hidden;
  position: relative;
}
.md-photo img {
  filter: grayscale(10%);
  transition: filter var(--med);
}
.md-wrap:hover .md-photo img { filter: grayscale(0%); }

.md-content { padding: 48px 52px; }
.md-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--blue-deeper);
  line-height: 1.15;
  margin-bottom: 20px;
}
.md-line {
  width: 48px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 22px;
}
.md-content p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.md-content strong { color: var(--blue-deeper); }

.md-award {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding: 16px 18px;
  background: white;
  border-left: 3px solid var(--blue);
}
.award-star { color: var(--blue); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.md-award strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-deeper);
  letter-spacing: 0.3px;
}
.md-award span {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(26,75,181,0.07);
  transition: transform var(--fast), box-shadow var(--fast);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(26,75,181,0.14);
}

.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,42,107,0.45) 0%, transparent 50%);
}
.team-photo img {
  filter: grayscale(20%);
  transition: filter var(--med), transform var(--med);
  height: 126%;
}
.team-card:hover .team-photo img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.team-info {
  padding: 18px 20px 22px;
  border-top: 2px solid var(--border-light);
  transition: border-color var(--fast);
}
.team-card:hover .team-info { border-top-color: var(--blue); }
.team-info h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--blue-deeper);
  margin-bottom: 4px;
}
.team-info span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
}

/* ── PARTNERS ───────────────────────────────────────────── */
#partners {
  padding: var(--pad-section) 0;
  background: var(--blue-faint);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.partner-tile {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-align: center;
  transition: background var(--fast), color var(--fast);
}
.partner-tile:hover {
  background: var(--blue);
  color: var(--white);
}
.partner-logo {
  display: block;
  max-width: 100%;
  width: 178px;
  max-height: 88px;
  object-fit: contain;
}

/* ── CORPORATE ──────────────────────────────────────────── */
#corporate { padding: 0; }

.corp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.corp-photo-col {
  position: relative;
  overflow: hidden;
}
.corp-photo-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--white);
  padding: 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.corp-photo-label span {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.corp-photo-label strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--blue-deeper);
}

.corp-info-col {
  padding: 72px 64px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.corp-dl { margin-top: 28px; }
.corp-row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.corp-row:first-child { border-top: 1px solid var(--border); }
.corp-row dt {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 130px;
}
.corp-row dd {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--blue-deeper);
  text-align: right;
  line-height: 1.4;
}

/* ── CONTACT ────────────────────────────────────────────── */
#contact {
  position: relative;
  padding: var(--pad-section) 0;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,42,107,0.96) 0%,
    rgba(26,75,181,0.88) 60%,
    rgba(13,42,107,0.92) 100%
  );
}
.contact-inner {
  position: relative;
  z-index: 2;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 36px 32px 40px;
  transition: background var(--fast), border-color var(--fast);
}
.contact-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
}
.cc-icon {
  width: 40px;
  height: 55px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.cc-icon svg { width: 100%; height: 100%; }
.contact-card h5 {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  font-weight: 600;
}
.contact-card p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  font-family: 'Exo 2';
}
.contact-card a {
  color: rgba(255,255,255,0.75);
  transition: color var(--fast);
}
.contact-card a:hover { color: var(--white); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--white); }

.footer-main { padding: 64px 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo-svg { width: 100px; height: 51px; }
.footer-brand-text { display: flex; flex-direction: column; gap: 3px; }
.footer-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--blue-deeper);
}
.footer-reg {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.footer-slogan {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.7;
  color: var(--blue);
  font-weight: 400;
}

.footer-nav-col h6 {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-deeper);
  margin-bottom: 20px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col li,
.footer-nav-col a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color var(--fast);
}
.footer-nav-col a:hover { color: var(--blue); }

.footer-bar {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bar-inner p {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity var(--slow), transform var(--slow);
}
.reveal        { transform: translateY(32px); }
.reveal-left   { transform: translateX(-36px); }
.reveal-right  { transform: translateX(36px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.vmv-inner     > .vmv-card:nth-child(1) { transition-delay: 0s; }
.vmv-inner     > .vmv-card:nth-child(2) { transition-delay: 0.12s; }
.vmv-inner     > .vmv-card:nth-child(3) { transition-delay: 0.24s; }
.services-grid > .svc:nth-child(1) { transition-delay: 0s; }
.services-grid > .svc:nth-child(2) { transition-delay: 0.08s; }
.services-grid > .svc:nth-child(3) { transition-delay: 0.16s; }
.services-grid > .svc:nth-child(4) { transition-delay: 0s; }
.services-grid > .svc:nth-child(5) { transition-delay: 0.08s; }
.services-grid > .svc:nth-child(6) { transition-delay: 0.16s; }
.team-grid     > .team-card:nth-child(1) { transition-delay: 0s; }
.team-grid     > .team-card:nth-child(2) { transition-delay: 0.07s; }
.team-grid     > .team-card:nth-child(3) { transition-delay: 0.14s; }
.team-grid     > .team-card:nth-child(4) { transition-delay: 0s; }
.team-grid     > .team-card:nth-child(5) { transition-delay: 0.07s; }
.team-grid     > .team-card:nth-child(6) { transition-delay: 0.14s; }
.contact-cards > .contact-card:nth-child(1) { transition-delay: 0s; }
.contact-cards > .contact-card:nth-child(2) { transition-delay: 0.10s; }
.contact-cards > .contact-card:nth-child(3) { transition-delay: 0.20s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad-section: 80px; }
  .container { padding: 0 28px; }
  .nav-inner  { padding: 0 28px; }

  .about-grid  { grid-template-columns: 1fr; gap: 56px; }
  .about-photo {  width: 100%; }

  .vmv-inner   { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .md-wrap     { grid-template-columns: 280px 1fr; }
  .md-content  { padding: 40px 40px; }

  .team-grid   { grid-template-columns: repeat(3, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }

  .corp-layout { grid-template-columns: 1fr; }
  .corp-photo-col { min-height: 360px; }
  .corp-info-col { padding: 60px 48px; }

  .contact-cards { grid-template-columns: 1fr; max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; --pad-section: 64px; }
  .container { padding: 0 20px; }
  .nav-inner  { padding: 0 20px; }

  .hamburger { display: flex; }

.md-photo img {
    filter: grayscale(10%);
    transition: filter var(--med);
    height: 207%;
    width: 100%;
}

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 32px;
    gap: 0;
    box-shadow: 0 12px 40px rgba(26,75,181,0.10);
    border-top: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 15px 0;
    font-size: 14px;
    color: var(--text-mid) !important;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-links a::after { display: none; }
  .nav-btn {
    margin-top: 12px;
    text-align: center;
    border: 1.5px solid var(--blue) !important;
    color: var(--blue) !important;
    padding: 12px 24px !important;
  }

  .hero-title { font-size: clamp(48px, 14vw, 90px); }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }

  .md-wrap     { grid-template-columns: 1fr; }
  .md-photo    { min-height: 260px; aspect-ratio: 16/9; }
  .md-content  { padding: 32px 24px; }
  .md-name     { font-size: 28px; }

  .team-grid   { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-cards { grid-template-columns: 1fr; }

  .corp-info-col { padding: 48px 24px; }
  .corp-row dt   { min-width: 110px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bar-inner { flex-direction: column; align-items: flex-start; gap: 4px; }

  .about-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .stat-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-body { padding-left: 16px; padding-right: 16px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .corp-row { flex-direction: column; gap: 4px; }
  .corp-row dd { text-align: left; }

      .md-photo img {
        filter: grayscale(10%);
        transition: filter var(--med);
        height: 180%;
        width: 85%;
    }
}
@media(max-width:425px){
      .md-photo img {
        filter: grayscale(10%);
        transition: filter var(--med);
        height: 169%;
        width: 81%;
    }
  }
@media(max-width:400px){
          .md-photo img {
        filter: grayscale(10%);
        transition: filter var(--med);
        height: 160%;
        width: 76%;
    }
}
@media(max-width:376px){
      .md-photo img {
        filter: grayscale(10%);
        transition: filter var(--med);
        height: 152%;
        width: 73%;
    }
}
@media(max-width:360px){
      .md-photo img {
        filter: grayscale(10%);
        transition: filter var(--med);
        height: 152%;
        width: 70%;
    }
}
