/* ==============================
   RUKNI SOLUTIONS — MAIN STYLES
   Navy: #1B3A6B | Gold: #C8960C
   ============================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1B3A6B;
  --navy-dark: #122848;
  --navy-light: #24508F;
  --gold: #C8960C;
  --gold-light: #E5AB14;
  --gold-pale: #FDF3DC;
  --white: #ffffff;
  --off-white: #F8F7F4;
  --light-gray: #F1EFF9;
  --mid-gray: #64748B;
  --dark-text: #1A2035;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(27,58,107,0.10);
  --shadow-lg: 0 12px 48px rgba(27,58,107,0.16);
}

html { scroll-behavior: smooth; }

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

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.02em; }
em { font-style: italic; color: var(--gold); }
p { color: var(--mid-gray); margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label.gold { color: var(--gold); }
.section-label.gold::before { background: var(--gold); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header .section-label { justify-content: center; }
.section-header p { font-size: 1.05rem; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.section-header.light { color: var(--white); }

.section { padding: 6rem 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,150,12,0.35); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 0;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 44px; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 3px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-cta::after { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(200,150,12,0.15);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: rgba(36,80,143,0.4);
  bottom: -50px; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 76px;
  max-width: 760px;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(200,150,12,0.15);
  border: 1px solid rgba(200,150,12,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
  line-height: 1.8;
}
.hero-sub, .hero-sub p { color: rgba(255,255,255,0.72); }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeUp 1s 1s ease both;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── STATS ── */
.stats {
  background: var(--navy);
  padding: 2.5rem 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 1rem;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.4rem;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── ABOUT TEASER ── */
.about-teaser { background: var(--white); }
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-teaser-visual {
  position: relative;
  min-height: 380px;
}
.at-bg-shape {
  position: absolute;
  width: 320px;
  height: 320px;
  background: var(--gold-pale);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.at-card {
  position: absolute;
  background: var(--white);
  border: 1.5px solid rgba(27,58,107,0.10);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
.at-card-1 { top: 0; left: 0; animation-delay: 0s; }
.at-card-2 { bottom: 30px; right: 0; animation-delay: 2s; }
.at-card-3 { top: 50%; left: 20px; transform: translateY(-50%); animation-delay: 4s; }
.at-card-icon { font-size: 1.4rem; color: var(--gold); }
.at-card-text strong { display: block; font-size: 0.9rem; color: var(--navy); font-weight: 600; }
.at-card-text span { font-size: 0.78rem; color: var(--mid-gray); }
.about-teaser-text h2 { margin-bottom: 1.2rem; }
.about-teaser-text p { margin-bottom: 1rem; }
.about-teaser-text .btn { margin-top: 0.5rem; }

/* ── SERVICES OVERVIEW ── */
.services-overview { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(27,58,107,0.08);
  border: 1.5px solid rgba(27,58,107,0.08);
}
.service-card {
  background: var(--white);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height var(--transition);
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: var(--navy); }
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.65); }
.service-card:hover .sc-num { color: rgba(200,150,12,0.6); }
.service-card:hover .sc-arrow { color: var(--gold); }
.sc-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-family: var(--font-body);
}
.sc-icon { display: none; }
.service-card h3 { font-size: 1.05rem; color: var(--navy); transition: color var(--transition); margin-bottom: 0.25rem; }
.service-card p { font-size: 0.88rem; color: var(--mid-gray); transition: color var(--transition); margin: 0; line-height: 1.6; }
.sc-arrow {
  margin-top: auto;
  padding-top: 0.75rem;
  color: var(--navy);
  font-size: 1.1rem;
  transition: color var(--transition);
}
.services-cta { text-align: center; margin-top: 3rem; }

/* ── SECTORS ── */
.sectors {
  background: var(--navy);
  padding: 6rem 0;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.sector-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 3px solid var(--gold);
  padding: 2rem 1.75rem;
  border-radius: 4px;
  transition: all var(--transition);
}
.sector-item:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}
.sector-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.sector-item h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.75rem; }
.sector-item p { color: rgba(255,255,255,0.62); font-size: 0.9rem; margin: 0; }

/* ── PHILOSOPHY STRIP ── */
.philosophy-strip {
  background: var(--gold-pale);
  border-top: 1px solid rgba(200,150,12,0.2);
  border-bottom: 1px solid rgba(200,150,12,0.2);
  padding: 2.5rem 0;
}
.phil-grid {
  display: flex;
  gap: 0;
  justify-content: space-around;
  flex-wrap: wrap;
}
.phil-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
}
.phil-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-bottom: 0.25rem;
}
.phil-item strong { color: var(--navy); font-size: 0.88rem; font-weight: 600; }
.phil-item span { color: var(--mid-gray); font-size: 0.78rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.65); margin: 0; font-size: 1.05rem; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 1rem; }
.footer-small { font-size: 0.8rem !important; color: rgba(255,255,255,0.4) !important; }
.footer-logo { margin-bottom: 0.25rem; filter: brightness(1.1); }
.footer h4 {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.65rem; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer ul a:hover { color: var(--gold); }
.footer-contact p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom span { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy-dark);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; }
.page-hero-bar {
  height: 4px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-top: 3rem;
}

/* ── ABOUT PAGE ── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.col-text h2 { margin-bottom: 1.2rem; }
.col-text p { margin-bottom: 1rem; }
.col-text .btn { margin-top: 0.5rem; }
.info-box-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.info-box {
  padding: 1.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.info-box.navy { background: var(--navy); flex-direction: column; align-items: flex-start; padding: 2rem; }
.info-box.gold-box { background: var(--gold-pale); border: 1px solid rgba(200,150,12,0.25); }
.info-box.light { background: var(--off-white); border: 1px solid rgba(27,58,107,0.08); }
.ib-year { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.ib-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 0.25rem; }
.ib-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.ib-text strong { display: block; font-size: 0.9rem; color: var(--navy); }
.ib-text span { font-size: 0.82rem; color: var(--mid-gray); }

/* ── MISSION / VISION ── */
.mv-section { background: var(--off-white); padding: 5rem 0; }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.mv-card {
  padding: 3.5rem;
}
.mv-mission { background: var(--navy); }
.mv-vision { background: var(--gold); }
.mv-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.mv-mission .mv-label { color: var(--gold); opacity: 1; }
.mv-vision .mv-label { color: var(--navy-dark); opacity: 0.7; }
.mv-mission p { color: rgba(255,255,255,0.85); font-family: var(--font-head); font-size: 1.2rem; font-style: italic; line-height: 1.7; margin: 0; }
.mv-vision p { color: var(--navy-dark); font-family: var(--font-head); font-size: 1.2rem; font-style: italic; line-height: 1.7; margin: 0; }

/* ── PHILOSOPHY LIST ── */
.philosophy-list { display: flex; flex-direction: column; gap: 0; }
.phil-row {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(27,58,107,0.08);
}
.phil-row:last-child { border-bottom: none; }
.phil-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(200,150,12,0.25);
  min-width: 60px;
  line-height: 1;
  padding-top: 0.2rem;
}
.phil-body h3 { color: var(--navy); margin-bottom: 0.5rem; }
.phil-body p { margin: 0; }

/* ── LEADERSHIP ── */
.leadership-section { background: var(--off-white); }
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.leader-card {
  background: var(--white);
  border: 1px solid rgba(27,58,107,0.08);
  border-top: 3px solid var(--navy);
  padding: 1.75rem;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}
.leader-card:hover { border-top-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.leader-avatar {
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}
.leader-info h4 { color: var(--navy); margin-bottom: 0.5rem; font-size: 0.95rem; }
.leader-info p { font-size: 0.85rem; margin: 0; }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: flex;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(27,58,107,0.08);
  position: relative;
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  min-width: 90px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 0.15rem;
}
.tl-content h4 { color: var(--navy); margin-bottom: 0.4rem; }
.tl-content p { margin: 0; font-size: 0.92rem; }

/* ── SERVICES PAGE ── */
.service-detail {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(27,58,107,0.06);
}
.service-detail.alt { background: var(--off-white); }
.sd-grid { display: flex; flex-direction: column; gap: 2.5rem; }
.sd-header { display: flex; gap: 2rem; align-items: flex-start; }
.sd-num {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(200,150,12,0.15);
  line-height: 1;
  min-width: 100px;
  flex-shrink: 0;
}
.sd-title-block h2 { margin-bottom: 0.75rem; }
.sd-lead { font-size: 1.05rem; max-width: 640px; margin: 0; }
.sd-capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem 2rem;
  padding-left: calc(100px + 2rem);
}
.cap-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(27,58,107,0.06);
}
.cap-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.cap-item span { font-size: 0.9rem; color: var(--dark-text); }

/* ── EXPERTISE TAGS ── */
.expertise-section { background: var(--white); }
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.tag {
  display: inline-block;
  padding: 0.55rem 1.25rem;
  background: var(--off-white);
  border: 1px solid rgba(27,58,107,0.12);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: default;
}
.tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── CONTACT PAGE ── */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-form-wrap {
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { color: var(--navy); margin-bottom: 2rem; font-size: 1.4rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(27,58,107,0.15);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.08);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #b0b8c8; }
.form-note { font-size: 0.78rem; color: var(--mid-gray); text-align: center; }
.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
}
.form-success.show { display: block; }

.contact-info-panel { display: flex; flex-direction: column; gap: 2rem; }
.cip-section { }
.cip-section h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,150,12,0.2);
}
.cip-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.cip-icon { font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
.cip-detail strong { display: block; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.25rem; }
.cip-detail p { font-size: 0.85rem; margin: 0; line-height: 1.6; }
.cip-hours { display: flex; flex-direction: column; gap: 0.6rem; }
.ch-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}
.ch-row span:first-child { color: var(--mid-gray); }
.ch-row span:last-child { color: var(--dark-text); font-weight: 500; }
.ch-row.muted span { color: var(--mid-gray); font-size: 0.78rem; }
.cip-tagline {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(27,58,107,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cip-tagline em { color: var(--gold); font-family: var(--font-head); font-size: 1rem; }

/* ── HISTORY SECTION ── */
.history-section { background: var(--off-white); }

/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-teaser-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-teaser-visual { min-height: 280px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .two-col-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .leaders-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { align-self: flex-start; }
  .hero-actions { flex-direction: column; }
  .stats-grid { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .phil-grid { flex-direction: column; align-items: flex-start; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .leaders-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sd-header { flex-direction: column; gap: 1rem; }
  .sd-num { font-size: 3rem; min-width: auto; }
  .sd-capabilities { padding-left: 0; }
  .section { padding: 4rem 0; }
  .mv-card { padding: 2.5rem; }
  .contact-form-wrap { padding: 2rem; }
}
