@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

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

:root {
  --navy:       #0d1e3d;
  --navy-mid:   #152a52;
  --navy-light: #1e3a6e;
  --gold:       #f0a500;
  --gold-light: #f5c200;
  --teal:       #00b8c4;
  --teal-light: #00d4e0;
  --white:      #ffffff;
  --off-white:  #f5f6fa;
  --gray-100:   #eaedf3;
  --gray-300:   #c0c8d8;
  --gray-500:   #7a8499;
  --gray-700:   #3d4557;
  --text-dark:  #0d1e3d;
  --text-body:  #3d4557;
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(13,30,61,0.08);
  --shadow-md: 0 6px 24px rgba(13,30,61,0.12);
  --shadow-lg: 0 16px 48px rgba(13,30,61,0.18);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.section { padding: 96px 0; }
.section--gray { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.section-title span { color: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 620px;
  line-height: 1.8;
}

.title-bar {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin: 16px 0 32px;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn--primary { background: var(--gold); color: var(--navy); }
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,165,0,0.35); color: var(--navy); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); color: var(--white); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a4080 100%);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__accent {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--teal));
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
}

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(13,30,61,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.site-header.solid {
  background: rgba(13,30,61,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  width: 45px; height: 45px;
  flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 4px;
  position: relative;
  transition: color 0.2s ease;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 1px;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.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); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(13,30,61,0.98);
  backdrop-filter: blur(16px);
  padding: 0 24px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.mobile-menu.open { max-height: 500px; padding: 24px; }
.mobile-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-link:hover,
.mobile-link.active { color: var(--gold); background: rgba(240,165,0,0.08); }
.mobile-cta {
  display: block;
  margin-top: 12px;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.mobile-cta:hover { background: var(--gold-light); color: var(--navy); }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer {
  background: #0a1830;
  color: rgba(255,255,255,0.75);
}
.footer-top-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--gold));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 72px 0 48px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1;
}
.footer-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-style: italic;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(240,165,0,0.3);
}
.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--gold); }
.footer-arrow { color: var(--gold); font-size: 16px; }
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-list li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  align-items: flex-start;
}
.footer-contact-list a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s ease; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-reg { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.02em; }

/* ════════════════════════════════════
   HOME PAGE
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #0d1e3d 0%, #1e3a6e 50%, #0d2a50 100%);
  overflow: hidden;
  padding-bottom: 80px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(240,165,0,0.08) 0%, transparent 60%);
}
.hero-pattern {
  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: 60px 60px;
}
.hero-accent-left {
  position: absolute; top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--teal));
}
.hero-accent-right {
  position: absolute;
  bottom: 80px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(240,165,0,0.1);
  box-shadow: 0 0 0 60px rgba(240,165,0,0.04), 0 0 0 120px rgba(240,165,0,0.02);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-accent-word {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  display: inline-block;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-hint {
  display: flex;
  gap: 4px;
  margin-top: 80px;
  animation: bounce 1.8s ease infinite;
}
.scroll-hint span { display: block; width: 2px; border-radius: 2px; }
.scroll-hint span:nth-child(1) { background: rgba(255,255,255,0.6); height: 12px; }
.scroll-hint span:nth-child(2) { background: var(--gold); height: 20px; }
.scroll-hint span:nth-child(3) { background: rgba(255,255,255,0.6); height: 12px; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(240,165,0,0.95);
  backdrop-filter: blur(8px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(13,30,61,0.15);
  gap: 4px;
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-item span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(13,30,61,0.7);
  text-align: center;
}

/* INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.badge {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  background: var(--gray-100);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--gray-300);
}
.intro-img-wrap { position: relative; }
.intro-img-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
}
.intro-img-card img { width: 100%; height: 100%; object-fit: cover; }
.intro-img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(240,165,0,0.4);
}
.intro-img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.intro-img-badge span { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; }

/* SERVICE CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.card-desc { font-size: 14px; color: var(--gray-500); line-height: 1.8; margin-bottom: 24px; }
.card-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.card-link:hover { gap: 10px; }

/* WHY US */
.why-us { position: relative; overflow: hidden; }
.why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(240,165,0,0.04);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.why-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.why-title span { color: var(--gold); }
.why-sub { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point { display: flex; gap: 20px; align-items: flex-start; }
.why-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-point-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.why-point-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #e09500 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: rgba(255,255,255,0.05);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.cta-sub { font-size: 1rem; color: rgba(13,30,61,0.7); }
.cta-btns { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════ */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: start;
}
.para { margin-bottom: 20px; color: var(--text-body); line-height: 1.8; }
.facts-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px;
  color: #fff;
}
.facts-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(240,165,0,0.2);
}
.facts-list { display: flex; flex-direction: column; gap: 14px; }
.fact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
}
.fact-icon { font-size: 1.1rem; flex-shrink: 0; }
.fact-key { color: rgba(255,255,255,0.5); min-width: 120px; }
.fact-val { color: #fff; font-weight: 600; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.value-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 12px; }
.value-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

.presence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.presence-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
}
.presence-flag { font-size: 4rem; margin-bottom: 16px; }
.presence-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); margin-bottom: 12px; }
.presence-addr { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 12px; }
.presence-phone { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 600; }

/* ════════════════════════════════════
   VISION & MISSION PAGE
════════════════════════════════════ */
.vm-grid { max-width: 900px; }
.vm-card {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.vm-icon-wrap {
  flex-shrink: 0;
  width: 80px; height: 80px;
  background: rgba(240,165,0,0.1);
  border: 2px solid rgba(240,165,0,0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-icon { font-size: 2.5rem; }
.vm-text { font-size: 1.05rem; color: var(--gray-500); line-height: 1.85; margin-bottom: 24px; }
.vm-highlights { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.vm-highlight { display: flex; gap: 16px; align-items: flex-start; }
.vm-hl-icon {
  width: 44px; height: 44px;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.vm-highlight strong { font-family: var(--font-display); color: var(--navy); display: block; margin-bottom: 4px; }
.vm-highlight p { font-size: 14px; color: var(--gray-500); }

.mission-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.mission-text { font-size: 1.05rem; color: var(--gray-500); line-height: 1.85; margin-bottom: 16px; }
.mission-pills { display: flex; flex-direction: column; gap: 20px; }
.mission-pill {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
}
.mission-pill:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.mission-pill-icon {
  font-size: 1.5rem;
  width: 48px; height: 48px;
  background: rgba(240,165,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mission-pill-title { font-family: var(--font-display); color: var(--navy); margin-bottom: 4px; }
.mission-pill-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

.commit-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0;
}
.commit-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.commit-quote { flex: 1; }
.commit-q-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
  opacity: 0.5;
}
.commit-quote p { font-size: 1.2rem; color: rgba(255,255,255,0.8); line-height: 1.7; font-style: italic; }
.commit-points { display: flex; flex-direction: column; gap: 20px; flex-shrink: 0; }
.commit-point { display: flex; align-items: center; gap: 12px; color: #fff; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.commit-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }

/* ════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════ */
.overview-bar {
  background: var(--navy);
  padding: 0;
}
.overview-tabs {
  display: flex;
  gap: 0;
}
.overview-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 32px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-right: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: all 0.2s ease;
}
.overview-tab:hover { color: var(--gold); background: rgba(240,165,0,0.05); }

.services-section-head {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.material-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 14px 16px;
  transition: all 0.2s ease;
}
.material-chip:hover { border-color: var(--gold); background: rgba(240,165,0,0.04); }
.chip-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
}
.chip-name { font-size: 13px; font-weight: 600; color: var(--navy); }

.machinery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mac-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  padding: 24px;
  transition: all 0.3s ease;
}
.mac-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.mac-icon { font-size: 2rem; margin-bottom: 12px; }
.mac-name { font-family: var(--font-display); font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.mac-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

.struct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.struct-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.struct-feature { font-size: 14px; color: rgba(255,255,255,0.7); }

.struct-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.struct-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.struct-img img { width: 100%; height: 100%; object-fit: cover; }
.struct-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,30,61,0.8), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.struct-img:hover .struct-img-overlay { opacity: 1; }
.struct-img-overlay span { font-size: 1.5rem; }
.struct-img-overlay p { font-size: 12px; color: rgba(255,255,255,0.8); margin-top: 4px; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.project-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-100);
  cursor: pointer;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,30,61,0.85), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay span { font-size: 2rem; }
.project-overlay p { font-size: 13px; color: rgba(255,255,255,0.9); margin-top: 8px; }

.services-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0;
  text-align: center;
}
.services-cta-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; margin-bottom: 16px; }
.services-cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto; }
.services-cta-btns { display: flex; gap: 16px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* ════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════ */
.contact-section-header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.contact-section-header .title-bar { margin: 16px auto 32px; }
.contact-section-sub { font-size: 1.05rem; color: var(--gray-500); line-height: 1.8; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: rgba(240,165,0,0.2); transform: translateY(-2px); }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail { flex: 1; }
.contact-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.contact-values { display: flex; flex-direction: column; gap: 4px; }
.contact-value {
  font-size: 14px;
  color: var(--text-body);
  transition: color 0.2s ease;
}
a.contact-value:hover { color: var(--gold); }

.presence-strip {
  background: var(--navy);
  padding: 48px 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.strip-item { display: flex; align-items: center; gap: 16px; }
.strip-flag { font-size: 2.5rem; }
.strip-item strong { font-family: var(--font-display); color: #fff; font-size: 1.1rem; display: block; }
.strip-item p { font-size: 13px; color: rgba(255,255,255,0.5); }
.strip-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .intro-grid, .why-grid, .mission-block, .struct-grid { grid-template-columns: 1fr; gap: 48px; }
  .cards-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .overview-grid { grid-template-columns: 1fr; gap: 48px; }
  .machinery-grid, .materials-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .vm-card { flex-direction: column; }
  .commit-inner { flex-direction: column; gap: 40px; }
}

@media (max-width: 960px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .page-hero { padding: 110px 0 60px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(13,30,61,0.15); }
  .cards-grid, .values-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .machinery-grid, .materials-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; gap: 24px; }
  .strip-divider { width: 60px; height: 1px; }
  .overview-tabs { flex-direction: column; }
  .presence-grid { grid-template-columns: 1fr; }
  .struct-features { grid-template-columns: 1fr; }
  .struct-img-grid { grid-template-columns: 1fr 1fr; }
  .services-section-head { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .machinery-grid, .materials-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
}
