/* ================================================================
   KARROM TRAVELS LTD — ENERGY DIVISION
   style.css
   ================================================================
   HOW TO EDIT COLORS: change the values in :root below.
   All other colors in this file reference these variables.
================================================================ */

/* ── CSS VARIABLES ────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --c-navy:   #0B1F3A;
  --c-gold:   #C9A227;
  --c-gold-dk:#A8841A;
  --c-red:    #B5261E;
  --c-cream:  #F8F5F0;
  --c-slate:  #1A2B3C;
  --c-mist:   #E8E2D9;
  --c-mid:    #6B7B8D;
  --c-light:  #F2EFE9;

  /* Typography */
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container:  1200px;
  --gap:        32px;
  --radius:     8px;
  --radius-lg:  16px;

  /* Transitions */
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur:    300ms;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11,31,58,.08);
  --shadow-md: 0 8px 32px rgba(11,31,58,.12);
  --shadow-lg: 0 20px 60px rgba(11,31,58,.18);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-sans);
  font-weight: 400;
  color: var(--c-slate);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

abbr { text-decoration: none; cursor: default; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--f-serif); font-weight: 600; line-height: 1.15; }
h4, h5     { font-family: var(--f-sans);  font-weight: 600; line-height: 1.3; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--c-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.text-lead {
  font-size: 1.125rem;
  color: var(--c-slate);
  line-height: 1.75;
  margin-bottom: 20px;
}

p { line-height: 1.7; color: var(--c-mid); margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

strong { color: var(--c-slate); font-weight: 600; }

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

.section { padding: var(--section-py) 0; }

.section-header { margin-bottom: 60px; }
.section-header.text-center { text-align: center; }
.section-header.text-center .section-desc { margin: 0 auto; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--f-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 14px 36px; font-size: 0.9375rem; }

.btn-gold {
  background: var(--c-gold);
  color: var(--c-navy);
  border-color: var(--c-gold);
}
.btn-gold:hover {
  background: var(--c-gold-dk);
  border-color: var(--c-gold-dk);
  box-shadow: 0 8px 24px rgba(201,162,39,.35);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  padding: 12px 24px;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-navy);
  padding: 12px 24px;
}
.btn-outline-dark:hover {
  background: var(--c-navy);
  color: #fff;
}

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

/* ── NAVBAR ───────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(11,31,58,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo img { height: 40px; width: auto; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.nav-logo-text small {
  color: var(--c-gold);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }

.nav-parent-link a {
  color: var(--c-gold) !important;
}
.nav-parent-link a:hover { background: rgba(201,162,39,.1) !important; }

.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--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); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--c-navy);
  overflow: hidden;
  padding: 100px 24px 60px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('src/images/hero/hero-bg.jpeg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,.68);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,162,39,.3);
  color: rgba(255,255,255,.85);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 36px;
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--c-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--c-gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.7);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 60px;
}

.hero-kpis {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 28px 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  max-width: 760px;
  margin: 0 auto;
}

.kpi { text-align: center; padding: 12px 28px; }
.kpi-num {
  font-family: var(--f-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--c-gold);
  line-height: 1;
}
.kpi-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.05em;
  margin-top: 5px;
  text-transform: uppercase;
}

.kpi-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: .9; transform: scaleY(1.1); }
}

/* Hero entrance animations */
.anim-in { opacity: 0; transform: translateY(30px); animation: fadeUp .9s var(--ease) forwards; }
.a-d1 { animation-delay: .15s; }
.a-d2 { animation-delay: .3s; }
.a-d3 { animation-delay: .45s; }
.a-d4 { animation-delay: .6s; }

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

/* ── TRUST STRIP ──────────────────────────────────────────────── */
.trust-strip {
  background: var(--c-navy);
  border-top: 1px solid rgba(201,162,39,.2);
  border-bottom: 1px solid rgba(201,162,39,.2);
}

.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.trust-item svg { color: var(--c-gold); flex-shrink: 0; }
.trust-sep { color: rgba(255,255,255,.25); }

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

.sr-d1 { transition-delay: .08s; }
.sr-d2 { transition-delay: .16s; }
.sr-d3 { transition-delay: .24s; }
.sr-d4 { transition-delay: .32s; }
.sr-d5 { transition-delay: .40s; }

/* ── ABOUT ────────────────────────────────────────────────────── */
.about-sec { background: #fff; }

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

.about-stack { position: relative; }

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--c-cream);
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
}

.about-img-sm {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 55%;
  aspect-ratio: 1;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
}

.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-navy) 0%, #1a3a6b 100%);
}
.img-placeholder span {
  color: rgba(255,255,255,.5);
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
  padding: 12px;
}

.about-badge {
  position: absolute;
  top: 24px;
  left: -28px;
  background: var(--c-gold);
  color: var(--c-navy);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.ab-num { font-family: var(--f-serif); font-size: 2rem; font-weight: 700; line-height: 1; }
.ab-lbl { font-size: 0.72rem; font-weight: 600; line-height: 1.3; margin-top: 4px; }

.about-highlights { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.hl-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hl-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(201,162,39,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
}
.hl-row strong { display: block; margin-bottom: 4px; color: var(--c-navy); }
.hl-row p { font-size: 0.9rem; margin-bottom: 0; }

/* ── MISSION / VISION / VALUES ────────────────────────────────── */
.mvv-sec {
  background: var(--c-cream);
}

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

.mvv-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-mist);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.mvv-accent {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}
.mvv-accent .mvv-eyebrow { color: var(--c-gold); }
.mvv-accent h3 { color: #fff; }
.mvv-accent p { color: rgba(255,255,255,.7); }

.mvv-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,162,39,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  margin-bottom: 20px;
}
.mvv-accent .mvv-icon { background: rgba(201,162,39,.2); }

.mvv-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 10px;
}

.mvv-card h3 {
  font-size: 1.5rem;
  color: var(--c-navy);
  margin-bottom: 14px;
}

.val-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.val-chips span {
  background: rgba(201,162,39,.12);
  color: var(--c-gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(201,162,39,.2);
}

/* ── SERVICES ─────────────────────────────────────────────────── */
.services-sec { background: var(--c-light); }

/* Tab bar */
.tab-bar {
  display: flex;
  gap: 4px;
  background: rgba(11,31,58,.06);
  padding: 6px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar { display: none; }

.tab-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: var(--c-mid);
  font-family: var(--f-sans);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
  flex-shrink: 0;
}
.tab-btn:hover { background: rgba(255,255,255,.6); color: var(--c-navy); }

.tab-btn.active {
  background: #fff;
  color: var(--c-navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* Tab panels */
.tab-panels { position: relative; }
.tab-panel { display: none; animation: panelIn .3s var(--ease); }
.tab-panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel-hero {
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--c-navy);
}

.panel-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,.72) 0%, rgba(0,0,0,.55) 100%);
}

.panel-hero-text {
  position: relative;
  z-index: 1;
  max-width: 620px;
}
.panel-hero-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 12px;
}
.panel-hero-text p { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 0; }

/* Service grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card photo strip */
.svc-card-img {
  height: 148px;
  margin: -28px -24px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--c-navy) center/cover no-repeat;
  position: relative;
}
.svc-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11,31,58,.3) 100%);
}

.svc-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--c-mist);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,39,.3);
}

.svc-icon {
  width: 48px; height: 48px;
  background: rgba(201,162,39,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  margin-bottom: 18px;
}

.svc-card h4 {
  font-size: 1rem;
  color: var(--c-navy);
  margin-bottom: 14px;
  line-height: 1.35;
}

.svc-card ul {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.svc-card ul li {
  font-size: 0.875rem;
  color: var(--c-mid);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}
.svc-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--c-gold);
  border-radius: 50%;
}

/* ── STRENGTHS ────────────────────────────────────────────────── */
.strengths-sec { background: #fff; }

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

.strength-card {
  background: var(--c-cream);
  border: 1px solid var(--c-mist);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.strength-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.strength-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.strength-card:hover::before { transform: scaleX(1); }

.str-num {
  font-family: var(--f-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(11,31,58,.07);
  line-height: 1;
  position: absolute;
  top: 16px; right: 18px;
}

.str-icon {
  color: var(--c-gold);
  margin-bottom: 20px;
}

.strength-card h4 { font-size: 1rem; color: var(--c-navy); margin-bottom: 12px; }
.strength-card p  { font-size: 0.875rem; color: var(--c-mid); margin-bottom: 0; }

/* ── STATS ────────────────────────────────────────────────────── */
.stats-sec {
  background: var(--c-navy);
  padding: 70px 0;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.stat {
  text-align: center;
  padding: 20px 40px;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background: rgba(255,255,255,.15);
}

.stat-n {
  font-family: var(--f-serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-l {
  font-size: 0.8rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── LEADERSHIP ───────────────────────────────────────────────── */
.leadership-sec { background: var(--c-cream); }

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

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  border: 1px solid var(--c-mist);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.team-photo {
  width: 140px;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, var(--c-navy) 0%, #1a3a6b 100%);
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* Olajide's face sits at the center of his dark photo, not the top */
.team-card:nth-child(4) .team-photo img { object-position: center 42%; }

.team-init {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(255,255,255,.25);
  letter-spacing: 0.05em;
}

.team-body { padding: 28px 28px 24px; flex: 1; min-width: 0; }

.team-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.team-name { font-size: 1.3rem; color: var(--c-navy); }
.team-quals { font-size: 0.72rem; color: var(--c-gold); font-weight: 600; letter-spacing: 0.04em; margin-top: 4px; }

.team-badge {
  flex-shrink: 0;
  background: var(--c-navy);
  color: var(--c-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
}

.team-title {
  font-size: 0.8rem;
  color: var(--c-mid);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-mist);
}

.team-bio { font-size: 0.875rem; color: var(--c-mid); }
.team-bio em { color: var(--c-slate); font-style: italic; }

.team-extra { display: none; }
.team-extra.open { display: block; margin-top: 12px; }
.team-extra p { font-size: 0.875rem; color: var(--c-mid); }

.btn-more {
  background: none;
  border: none;
  color: var(--c-gold);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur) var(--ease);
}
.btn-more:hover { color: var(--c-gold-dk); }
.btn-more-arrow { font-size: 0.6rem; transition: transform var(--dur) var(--ease); }
.btn-more.open .btn-more-arrow { transform: rotate(180deg); }

.team-creds {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--c-mist);
}
.team-creds span {
  font-size: 0.75rem;
  color: var(--c-mid);
  padding-left: 10px;
  position: relative;
}
.team-creds span::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-size: 0.9rem;
  line-height: 1;
  top: 1px;
}

/* ── CERTIFICATIONS ───────────────────────────────────────────── */
.cert-sec { background: #fff; }

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

.cert-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--c-cream);
  border: 1px solid var(--c-mist);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,39,.3);
}

/* Certificate thumbnail */
.cert-thumb-link {
  flex-shrink: 0;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-mist);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cert-thumb-link:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
.cert-thumb {
  display: block;
  width: 72px;
  height: 100px;
  object-fit: cover;
  object-position: top center;
}

.cert-card h4 { font-size: 0.95rem; color: var(--c-navy); margin-bottom: 6px; }
.cert-card p  { font-size: 0.8rem;  color: var(--c-mid);  margin-bottom: 10px; line-height: 1.55; }

.cert-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--c-gold);
  background: rgba(201,162,39,.1);
  border: 1px solid rgba(201,162,39,.2);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-sec { background: var(--c-cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ci-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: rgba(201,162,39,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  margin-top: 2px;
}
.contact-list strong { display: block; font-size: 0.875rem; color: var(--c-navy); margin-bottom: 3px; }
.contact-list p { font-size: 0.875rem; margin-bottom: 0; }
.contact-list a { color: var(--c-gold); }
.contact-list a:hover { text-decoration: underline; }

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Contact form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-mist);
}

.contact-form h3 {
  font-size: 1.6rem;
  color: var(--c-navy);
  margin-bottom: 28px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grp {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-grp label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-slate);
  letter-spacing: 0.02em;
}
.form-grp label abbr { color: var(--c-red); margin-left: 2px; }

.form-grp input,
.form-grp select,
.form-grp textarea {
  font-family: var(--f-sans);
  font-size: 0.9rem;
  color: var(--c-slate);
  background: var(--c-cream);
  border: 1.5px solid var(--c-mist);
  border-radius: var(--radius);
  padding: 10px 14px;
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  width: 100%;
  line-height: 1.5;
}
.form-grp input::placeholder,
.form-grp textarea::placeholder { color: var(--c-mid); opacity: .7; }

.form-grp input:focus,
.form-grp select:focus,
.form-grp textarea:focus {
  border-color: var(--c-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,162,39,.12);
}

.form-grp input.error,
.form-grp textarea.error {
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(181,38,30,.1);
}

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

.form-feedback {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(40,130,100,.1);
  color: #1a7a5a;
  border: 1px solid rgba(40,130,100,.25);
}
.form-feedback.error {
  display: block;
  background: rgba(181,38,30,.08);
  color: var(--c-red);
  border: 1px solid rgba(181,38,30,.2);
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer { background: var(--c-navy); }

.footer-top { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-brand img { height: 36px; }
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer-logo-text strong { color: #fff; font-size: 1rem; letter-spacing: 0.08em; }
.footer-logo-text small  { color: var(--c-gold); font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase; }

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-links-social {
  display: flex;
  gap: 10px;
}
.footer-links-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer-links-social a:hover { background: var(--c-gold); color: var(--c-navy); }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--dur) var(--ease);
}
.footer-col ul a:hover { color: var(--c-gold); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.footer-contact svg { flex-shrink: 0; color: var(--c-gold); margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,.5); transition: color var(--dur) var(--ease); }
.footer-contact a:hover { color: var(--c-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 0;
}
.footer-bottom a { color: var(--c-gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .strength-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  :root { --section-py: 72px; }

  .mvv-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stack { max-width: 480px; }
  .about-badge { left: -10px; }
  .about-img-sm { right: -10px; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .team-photo { width: 100%; height: 300px; }
  .team-card:nth-child(2) .team-photo img { object-position: center 12%; }
  .team-card:nth-child(4) .team-photo img { object-position: center 45%; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-row { gap: 0; }
  .stat { padding: 20px 24px; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--c-navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-left: 0;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li a { display: block; padding: 13px 28px; font-size: 1rem; }

  .hero-kpis { padding: 20px; }
  .kpi { padding: 10px 16px; }
  .kpi-num { font-size: 1.7rem; }
  .kpi-sep { height: 30px; }

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

  .team-photo { height: 240px; }

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

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

  .contact-form-wrap { padding: 28px 20px; }
}

@media (max-width: 560px) {
  :root { --section-py: 56px; }

  .svc-grid { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: 1fr; }

  .panel-hero { padding: 32px 24px; }

  .stats-row { flex-direction: column; }
  .stat + .stat::before { width: 60px; height: 1px; top: 0; left: 50%; transform: translateX(-50%); }

  .hero-kpis { flex-direction: column; gap: 0; padding: 20px; }
  .kpi-sep { width: 60%; height: 1px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ── PRINT ────────────────────────────────────────────────────── */
@media print {
  .navbar, .hero-scroll-cue, .hamburger, .trust-strip { display: none; }
  .hero { min-height: auto; padding: 40px 24px; }
  .section { padding: 40px 0; }
}
