/* ========================================================================
   FELHI CONSULTING INTERNATIONAL — Website Master Stylesheet
   Exact Brand Alignment:
   - Primary Brand Blue: #0D1B2A (Midnight Blue)
   - Accent Gold: #D4AF37 (Premium Gold)
   - Clean White: #FFFFFF & Soft Off-White #F7F6F2
   - Fonts: Poppins (Headings) & Open Sans (Body Text)
   ======================================================================== */

:root {
  --navy: #0d1b2a;
  --navy-dark: #00182a;
  --navy-light: #142a40;
  --gold: #d4af37;
  --gold-light: #e6c659;
  --gold-dark: #b89528;
  --gold-bg: rgba(212, 175, 55, 0.12);
  --white: #ffffff;
  --off-white: #f7f6f2;
  --ink: #0d1b2a;
  --ink-soft: #4a5568;
  --line: #e2e8f0;
  --line-gold: rgba(212, 175, 55, 0.35);

  --font-head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 27, 42, 0.1);
  --shadow-gold: 0 6px 20px rgba(212, 175, 55, 0.3);

  --container: 1180px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.18s ease, opacity 0.18s ease; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 16px;
  font-weight: 600;
}
p { margin: 0 0 16px; color: var(--ink-soft); }
button, input, select, textarea { font-family: var(--font-body); }
button { cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section { padding: 64px 0; }
.section-tight { padding: 44px 0; }
.section-head { max-width: 700px; margin: 0 0 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 700; color: var(--navy); }
.section-head p { font-size: 16.5px; margin-bottom: 0; color: var(--ink-soft); }

.bg-navy { background: var(--navy); color: var(--white); }
.bg-off { background: var(--off-white); }

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ---------- Header & Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; height: 100%; }
.brand img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 0;
  position: relative;
  transition: color 0.18s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 10px 20px; font-size: 13.5px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-drawer {
  position: fixed; inset: 76px 0 0 0;
  background: var(--navy);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 199;
  overflow-y: auto;
  padding: 24px;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-drawer a.active { color: var(--gold); }
.mobile-drawer .btn { margin-top: 20px; }

/* ---------- Hero Section (Background Image + Overlay) ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero.jpg') center / cover no-repeat;
  opacity: 0.55;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.75) 30%, rgba(13,27,42,0.4) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 780px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 .accent {
  color: var(--gold);
}
.hero p.lead {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Page Hero Header (Inner Pages) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 40px;
  border-bottom: 2px solid var(--gold);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); font-size: clamp(28px, 3.8vw, 40px); font-weight: 700; margin-bottom: 10px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); font-size: 16.5px; max-width: 640px; margin-bottom: 0; }
.breadcrumb { font-size: 13px; color: rgba(255, 255, 255, 0.6); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255, 255, 255, 0.8); }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Grid Layouts & Core Offers ---------- */

/* Core Offers Grid (3 Cards) */
/* Core Offers Grid (3 Cards) - SHARP EDGES on Navy Background */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-top: 3px solid var(--gold);
  border-radius: 0;
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  border-color: var(--gold);
}
.offer-icon {
  width: 52px; height: 52px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--gold);
}
.offer-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.offer-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.offer-card p { font-size: 14.5px; margin-bottom: 16px; flex-grow: 1; color: rgba(255, 255, 255, 0.8); }
.offer-card .card-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.offer-card .card-link svg { width: 15px; height: 15px; stroke: var(--gold); transition: transform 0.2s ease; }
.offer-card:hover .card-link svg { transform: translateX(4px); }

/* Tagline Strip under Hero */
.tagline-strip {
  background: var(--white);
  padding: 44px 0 36px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.tagline-strip .tagline-lead {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.tagline-strip .tagline-lead .accent-gold {
  color: var(--gold);
}
.tagline-strip .tagline-desc {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Our Services Icon Grid (8 Services) - Floating Minimalist Style */
.services-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-icon-tile {
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  padding: 32px 20px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.service-icon-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(13, 27, 42, 0.12), 0 0 0 1px var(--gold);
  border-color: var(--gold);
}
.service-icon-tile .tile-icon {
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.service-icon-tile:hover .tile-icon {
  transform: scale(1.15) translateY(-2px);
}
.service-icon-tile .tile-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--gold);
  stroke-width: 1.75;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
}
.service-icon-tile h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0;
  line-height: 1.35;
  letter-spacing: -0.1px;
}
.service-icon-tile p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 8px 0 0;
  line-height: 1.5;
}

/* Why Work With Us Redesign (Clean list layout, no rectangles) */
.reasons-clean-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}
.reason-clean-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  transition: border-color 0.2s ease;
}
.reason-clean-item:hover {
  border-bottom-color: var(--gold);
}
.reason-clean-item .clean-tick {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.reason-clean-item .clean-tick svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}
.reason-clean-item h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.reason-clean-item p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Industries We Serve Grid (Sharp Edges) */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.industry-visual {
  height: 170px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: var(--navy) center / cover no-repeat;
  position: relative;
}
.industry-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(13,27,42,0.85) 100%);
}
.industry-visual .badge {
  position: relative;
  z-index: 1;
  margin: 14px;
  width: 40px; height: 40px;
  border-radius: 0;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.industry-visual .badge svg { width: 20px; height: 20px; stroke: var(--navy); }
.industry-card .body { padding: 20px 22px; }
.industry-card h4 { font-size: 17px; margin-bottom: 4px; color: var(--navy); }
.industry-card p { font-size: 14px; margin-bottom: 0; }

/* Academy Mention Section on Homepage */
.academy-mention-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.academy-mention-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  color: var(--navy);
  margin-bottom: 14px;
}
.academy-mention-copy p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}
.academy-mention-visual {
  position: relative;
  border: 2px solid var(--gold);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.academy-mention-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Wide Banner Section on Contact Page */
.wide-team-banner {
  margin-top: 50px;
  position: relative;
  border: 2px solid var(--gold);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.wide-team-banner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.wide-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,42,0.4) 0%, rgba(13,27,42,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--white);
}
.wide-team-overlay h3 {
  color: var(--gold);
  font-size: clamp(20px, 2.8vw, 28px);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.wide-team-overlay p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin-bottom: 0;
}

/* Flags-Only Global Presence Strip */
.markets-flags-only {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.flag-only-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--gold);
  border-radius: 0;
  padding: 4px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.flag-only-chip:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  border-color: #fff;
  background: rgba(212, 175, 55, 0.15);
}
.flag-only-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Global Presence Strip ---------- */
.markets-strip {
  background: var(--navy);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 36px 0;
  color: var(--white);
}
.markets-strip .strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.markets-strip .label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.markets-flags { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.flag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 6px 14px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
}
.flag-chip .emoji { font-size: 16px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.cta-banner h3 { color: var(--white); font-size: 25px; font-weight: 700; margin-bottom: 6px; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); font-size: 15.5px; margin-bottom: 0; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Steps Stepper ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  position: relative;
  padding: 26px 22px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 0;
  box-shadow: var(--shadow-sm);
}
.step .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  background: var(--gold);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step h4 { font-size: 16px; margin-bottom: 8px; color: var(--navy); }
.step p { font-size: 14px; margin-bottom: 0; color: var(--ink-soft); }

/* ---------- Services Page Layout ---------- */
.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { grid-template-columns: 1.1fr 0.9fr; }
.service-block.reverse .service-visual { order: 2; }
.service-visual {
  border-radius: 12px;
  min-height: 300px;
  background: var(--navy) center / cover no-repeat;
  display: flex; align-items: flex-end; justify-content: flex-start;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-gold);
}
.service-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13,27,42,0.85) 100%);
}
.service-visual .badge {
  position: relative;
  z-index: 1;
  margin: 18px;
  width: 50px; height: 50px;
  border-radius: 10px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.service-visual .badge svg { width: 24px; height: 24px; stroke: var(--navy); }
.service-copy .tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold-bg);
  border: 1px solid var(--gold);
  padding: 4px 12px;
  border-radius: 16px;
  margin-bottom: 14px;
}
.service-copy h3 { font-size: 25px; margin-bottom: 14px; color: var(--navy); }
.tick-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.tick-list li svg { width: 17px; height: 17px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ---------- About Page Layout ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.about-photo {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-split .section-head { margin-bottom: 0; max-width: none; }

.founder {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 220px;
  border-radius: 8px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--gold);
  overflow: hidden;
  padding: 12px;
  box-shadow: 0 4px 16px rgba(13, 27, 42, 0.1);
}
.founder-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.founder-copy .role { font-family: var(--font-head); color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; display:block; }
.founder-copy h3 { font-size: 26px; margin-bottom: 14px; color: var(--navy); }

/* ---------- Contact Page Layout ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: flex-start;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.panel h3 { font-size: 21px; margin-bottom: 6px; color: var(--navy); }
.panel .panel-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 24px; }

.tabs { display: flex; gap: 8px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.tab-btn {
  background: transparent; border: none;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  color: var(--ink-soft);
  padding: 10px 4px; margin-right: 22px;
  border-bottom: 3px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.tab-btn.active { color: var(--navy); border-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--navy); }
.form-field label .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: var(--off-white);
  color: var(--navy);
  transition: border-color 0.18s ease, background 0.18s ease;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-field small.err { color: #b3392c; font-size: 12px; display: none; }
.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea { border-color: #b3392c; }
.form-field.invalid small.err { display: block; }

/* Resume File Upload Field */
.file-upload-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.file-input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.file-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  user-select: none;
}
.file-upload-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.file-upload-btn svg {
  stroke: currentColor;
}
.file-upload-name {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-style: italic;
  word-break: break-all;
}

.form-note { font-size: 12px; color: var(--ink-soft); margin-top: 8px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.3);
  color: #2e7d32;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-success.show { display: flex; }
.form-success svg { width: 18px; height: 18px; stroke: #2e7d32; flex-shrink: 0; }

.side-stack { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 30px 26px;
  border: 1px solid var(--gold);
}
.info-card h4 { color: var(--gold); font-size: 17px; margin-bottom: 18px; font-weight: 700; }
.info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .ic {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
}
.info-row .ic svg { width: 18px; height: 18px; stroke: var(--gold); }
.info-row .txt { font-size: 14px; color: rgba(255,255,255,0.85); }
.info-row .txt strong { display: block; color: var(--white); font-size: 12.5px; font-weight: 600; margin-bottom: 2px; font-family: var(--font-head); }

.whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #06341c;
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
  padding: 13px 20px; border-radius: 6px; margin-top: 20px;
}
.whatsapp-btn svg { width: 19px; height: 19px; }

.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease;
}
.social-row a:hover { background: var(--gold); }
.social-row a svg { width: 16px; height: 16px; stroke: var(--gold); }
.social-row a:hover svg { stroke: var(--navy); }

/* ---------- Legal Pages ---------- */
.legal-body h2 { font-size: 20px; margin-top: 32px; margin-bottom: 10px; color: var(--navy); }
.legal-body p, .legal-body li { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.legal-body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-body ul li { margin-bottom: 8px; }
.legal-body a { color: var(--gold); text-decoration: underline; }
.legal-updated { font-size: 13px; color: var(--ink-soft); font-style: italic; margin-bottom: 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 56px 0 0; border-top: 3px solid var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-head); color: var(--gold); font-size: 13.5px;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; font-weight: 700;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color 0.18s ease; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 13px; color: rgba(255,255,255,0.6); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 980px) {
  .offer-grid, .reasons-grid, .reasons-clean-list, .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .services-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .academy-mention-split { grid-template-columns: 1fr; gap: 32px; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; }
  .service-block.reverse .service-visual { order: 0; }
  .service-visual { min-height: 200px; }
  .founder { grid-template-columns: 200px 1fr; padding: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav-links, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .offer-grid, .reasons-grid, .reasons-clean-list, .industry-grid, .steps-grid, .services-icon-grid { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; padding: 24px; }
  .founder-photo { max-width: 220px; margin: 0 auto; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .markets-strip .strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
