/* ============================================================
   Jasbah Consult — Global Stylesheet
   ============================================================ */

:root {
  --navy: #1f3a93;
  --navy-deep: #16265f;
  --navy-darker: #0e1a45;
  --gold: #d4a017;
  --gold-light: #e9b949;
  --gold-soft: rgba(212, 160, 23, 0.12);
  --ink: #1a2238;
  --muted: #5b6378;
  --light: #f5f7fc;
  --white: #ffffff;
  --icon-color: #ffffff;
  --line: #e4e8f2;
  --shadow-sm: 0 2px 10px rgba(14, 26, 69, 0.07);
  --shadow-md: 0 10px 30px rgba(14, 26, 69, 0.12);
  --shadow-lg: 0 20px 50px rgba(14, 26, 69, 0.18);
  --radius: 16px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.25; color: var(--ink); }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section { padding: 84px 0; }
.section.alt { background: var(--light); }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head .kicker,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold-soft);
  border: 1px solid rgba(212, 160, 23, 0.35);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; }
.section-head h2 span { color: var(--gold); }
.section-head p { color: var(--muted); margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-darker); box-shadow: 0 8px 22px rgba(212, 160, 23, 0.35); }
.btn-gold:hover { box-shadow: 0 12px 28px rgba(212, 160, 23, 0.45); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: 0 8px 22px rgba(31, 58, 147, 0.3); }
.btn-navy:hover { background: var(--navy-deep); }
.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-darker);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-info { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-info svg { width: 14px; height: 14px; fill: var(--icon-color); flex: none; }
.topbar-socials { display: flex; align-items: center; gap: 6px; }
.topbar-socials span { margin-right: 6px; color: rgba(255,255,255,0.6); }
.topbar-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.25s ease, transform 0.25s ease;
}
.topbar-socials a:hover { background: var(--gold); transform: translateY(-2px); }
.topbar-socials a:hover svg { fill: var(--icon-color); }
.topbar-socials svg { width: 13px; height: 13px; fill: var(--icon-color); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.nav-logo img { height: 48px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu a.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-menu a.nav-link:hover, .nav-menu a.nav-link.active { color: var(--navy); background: var(--light); }
.nav-menu a.nav-link.active { font-weight: 600; }
.nav-caret { width: 10px; height: 10px; fill: currentColor; transition: transform 0.25s ease; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.nav-menu li:hover > .dropdown-menu,
.nav-menu li.open > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu li:hover > .nav-link .nav-caret { transform: rotate(180deg); }
.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-menu a:hover { background: var(--gold-soft); color: var(--navy); }
.dropdown-menu a small { display: block; color: var(--muted); font-weight: 400; font-size: 0.78rem; }

.nav-cta { flex: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--navy); transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero slider ---------- */
.hero { position: relative; min-height: min(88vh, 760px); overflow: hidden; background: var(--navy-darker); }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
  background-size: cover;
  background-position: center;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14, 26, 69, 0.92) 0%, rgba(22, 38, 95, 0.78) 45%, rgba(14, 26, 69, 0.35) 100%);
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 640px; color: var(--white); padding: 110px 0 130px; }
.hero-content .kicker { background: rgba(212, 160, 23, 0.16); border-color: rgba(212, 160, 23, 0.5); color: var(--gold-light); }
.hero-content h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; color: var(--white); margin-bottom: 20px; }
.hero-content h1 span { color: var(--gold-light); }
.hero-content p { color: rgba(255, 255, 255, 0.88); font-size: 1.05rem; margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-points { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  padding: 7px 15px;
  border-radius: 999px;
}
.hero-points span::before {
  content: "✓";
  color: var(--gold-light);
  font-weight: 700;
}

.hero-slide.active .hero-content > * { animation: heroUp 0.9s ease both; }
.hero-slide.active .hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-slide.active .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-slide.active .hero-content > *:nth-child(4) { animation-delay: 0.45s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

.hero-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
}
.hero-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-darker); }
.hero-nav svg { width: 18px; height: 18px; fill: currentColor; }
.hero-nav.prev { left: 22px; }
.hero-nav.next { right: 22px; }

.hero-dots {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 34px;
  height: 5px;
  border-radius: 5px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s ease;
}
.hero-dots button.active { background: var(--gold); }

/* ---------- Pillar / service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(212, 160, 23, 0.5); }
.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 18px rgba(31, 58, 147, 0.25);
}
.card-icon svg { width: 28px; height: 28px; display: block; }
.card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.card .card-link { margin-top: 20px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }
.card .card-link:hover { color: var(--gold); }

.check-list { list-style: none; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 0.95rem; }
.check-list li strong { color: var(--ink); }
.check-list li::before {
  content: "✓";
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-img { position: relative; }
.split-img img { border-radius: 22px; box-shadow: var(--shadow-lg); width: 100%; height: 460px; object-fit: cover; }
.split-img .float-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.float-badge .num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--navy); line-height: 1; }
.float-badge .lbl { font-size: 0.8rem; color: var(--muted); line-height: 1.3; }
.split-body h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 18px; }
.split-body h2 span { color: var(--gold); }
.split-body > p { color: var(--muted); margin-bottom: 22px; }

/* ---------- Destinations ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.dest-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dest-card img { width: 64px; height: 44px; object-fit: cover; border-radius: 8px; margin: 0 auto 14px; box-shadow: var(--shadow-sm); }
.dest-card h3 { font-size: 1.02rem; }
.dest-card p { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

/* ---------- Stats band ---------- */
.stats-band {
  background:
    radial-gradient(900px 400px at 10% 0%, rgba(212, 160, 23, 0.18), transparent 55%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-darker));
  color: var(--white);
  padding: 70px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); color: var(--gold-light); line-height: 1.1; }
.stat .lbl { color: rgba(255, 255, 255, 0.8); font-size: 0.92rem; margin-top: 6px; }

/* ---------- Student GPS journey band ---------- */
.gps-band {
  background:
    radial-gradient(900px 400px at 85% 0%, rgba(212, 160, 23, 0.16), transparent 55%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-darker));
  color: var(--white);
  padding: 84px 0;
}
.gps-band .section-head h2 { color: var(--white); }
.gps-band .section-head h2 span { color: var(--gold-light); }
.gps-band .section-head p { color: rgba(255, 255, 255, 0.78); }
.kicker-dark {
  background: rgba(212, 160, 23, 0.16) !important;
  border-color: rgba(212, 160, 23, 0.5) !important;
  color: var(--gold-light) !important;
}
.gps-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.gps-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 9%;
  right: 9%;
  border-top: 2px dashed rgba(233, 185, 73, 0.45);
}
.gps-step { text-align: center; position: relative; }
.gps-pin {
  width: 64px;
  height: 64px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.gps-pin svg { width: 24px; height: 24px; fill: var(--gold-light); transform: rotate(45deg); }
.gps-step h3 { color: var(--white); font-size: 0.98rem; margin-bottom: 7px; }
.gps-step p { color: rgba(255, 255, 255, 0.7); font-size: 0.84rem; line-height: 1.55; }

@media (max-width: 900px) {
  .gps-steps { grid-template-columns: 1fr; gap: 26px; max-width: 420px; margin: 0 auto; }
  .gps-steps::before {
    top: 10px;
    bottom: 10px;
    left: 31px;
    right: auto;
    border-top: 0;
    border-left: 2px dashed rgba(233, 185, 73, 0.45);
  }
  .gps-step { display: flex; align-items: flex-start; gap: 18px; text-align: left; }
  .gps-pin { margin: 0; flex: none; }
}

/* ---------- City chip (destination cards) ---------- */
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold-soft);
  border: 1px solid rgba(212, 160, 23, 0.35);
  padding: 4px 11px;
  border-radius: 999px;
  margin-top: 8px;
}
.city-chip svg { width: 11px; height: 11px; fill: var(--gold); }

/* ---------- Tagline strip ---------- */
.tagline-strip {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-darker));
  color: var(--white);
  padding: 52px 0;
  text-align: center;
}
.tagline-strip h2 { color: var(--white); font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin-bottom: 20px; }
.tagline-strip .hero-points { justify-content: center; margin-top: 0; }
.tagline-strip .guide {
  margin-top: 20px;
  color: var(--gold-light);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Why choose ---------- */
.why-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px; border-radius: var(--radius); transition: background 0.25s ease; }
.why-item:hover { background: var(--light); }
.why-item .why-icon {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(31, 58, 147, 0.22);
}
.why-item .why-icon svg { width: 24px; height: 24px; display: block; }
.why-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { color: var(--muted); font-size: 0.92rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    linear-gradient(100deg, rgba(14, 26, 69, 0.93), rgba(31, 58, 147, 0.82)),
    url("../../images/page-hero-img.avif") center/cover;
  border-radius: 26px;
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); max-width: 620px; margin: 0 auto 30px; }
.cta-banner .hero-actions { justify-content: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background-image:
    linear-gradient(100deg, rgba(14, 26, 69, 0.92), rgba(22, 38, 95, 0.72)),
    var(--page-hero-img, linear-gradient(135deg, var(--navy-deep), var(--navy-darker)));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 96px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); max-width: 640px; margin-inline: auto; }
.breadcrumb { margin-top: 18px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); }
.breadcrumb a { color: var(--gold-light); }

/* ---------- Programme cards (internships) ---------- */
.prog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prog-card img { height: 200px; width: 100%; object-fit: cover; }
.prog-card .prog-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.prog-card .tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.tag-gold { background: var(--gold-soft); color: #a37a0d; }
.tag-navy { background: rgba(31, 58, 147, 0.1); color: var(--navy); }
.prog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.prog-card p { color: var(--muted); font-size: 0.93rem; flex: 1; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: 42px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 600; font-size: 0.86rem; }
.form-field label .req { color: #d0342c; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--light);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31, 58, 147, 0.1);
}
.phone-row { display: flex; gap: 10px; }
.phone-row select { width: 130px; flex: none; }

.form-consent { display: flex; flex-direction: column; gap: 12px; margin: 6px 0 4px; }
.form-consent label { display: flex; gap: 11px; align-items: flex-start; font-size: 0.87rem; color: var(--muted); cursor: pointer; }
.form-consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--navy); flex: none; }
.form-consent a { color: var(--navy); font-weight: 600; text-decoration: underline; }

.form-msg { display: none; padding: 14px 18px; border-radius: 12px; font-size: 0.92rem; margin-bottom: 8px; }
.form-msg.ok { display: block; background: #e8f7ee; color: #157347; border: 1px solid #bfe8cf; }
.form-msg.err { display: block; background: #fdecea; color: #b02a20; border: 1px solid #f6c6c1; }

.captcha-fallback {
  display: none;
  background: var(--gold-soft);
  border: 1px dashed rgba(212, 160, 23, 0.6);
  border-radius: 12px;
  padding: 16px;
}
.captcha-fallback.visible { display: block; }
.captcha-fallback label { font-weight: 600; font-size: 0.88rem; display: block; margin-bottom: 8px; }
.recaptcha-note { font-size: 0.75rem; color: var(--muted); margin-top: 14px; }
.recaptcha-note a { color: var(--navy); text-decoration: underline; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Contact info ---------- */
.contact-info-card {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-darker));
  color: var(--white);
  border-radius: 22px;
  padding: 40px 34px;
  height: auto;
}
.contact-split {
  gap: 34px;
  align-items: flex-start;
  grid-auto-rows: min-content;
}
.contact-split > * { align-self: flex-start; }
.contact-split .contact-info-card { height: fit-content; }
.contact-info-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 24px; }
.contact-line { display: flex; gap: 15px; align-items: flex-start; padding: 13px 0; border-bottom: 0; }
.contact-line .ci {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(212, 160, 23, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-line .ci svg { width: 18px; height: 18px; fill: var(--icon-color); }
.contact-line .cl-label { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.55); }
.contact-line .cl-value { font-size: 0.95rem; color: rgba(255, 255, 255, 0.92); }
.contact-line .cl-value a:hover { color: var(--gold-light); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-darker);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 0;
  font-size: 0.92rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; }
.footer-brand img { height: 54px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); max-width: 300px; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s ease; }
.footer ul a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 15px; height: 15px; fill: var(--icon-color); flex: none; margin-top: 5px; }
.footer-socials { display: flex; gap: 9px; margin-top: 20px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer-socials a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-socials a:hover svg { fill: var(--icon-color); }
.footer-socials svg { width: 15px; height: 15px; fill: var(--icon-color); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom .links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: var(--icon-color); }

/* ---------- Testimonials ---------- */
.testi-slider { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 26px;
  transition: transform 0.55s ease;
}
.testi-track .testi-card {
  flex: 0 0 calc((100% - 52px) / 3);
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.testi-dots button {
  width: 34px;
  height: 5px;
  border-radius: 5px;
  border: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 0.3s ease;
}
.testi-dots button.active { background: var(--gold); }

@media (max-width: 1024px) {
  .testi-track .testi-card { flex: 0 0 calc((100% - 26px) / 2); }
}
@media (max-width: 700px) {
  .testi-track .testi-card { flex: 0 0 100%; }
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-quote {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.testi-quote svg { width: 20px; height: 20px; fill: currentColor; }
.testi-card p.testi-text { color: var(--muted); font-size: 0.95rem; flex: 1; font-style: italic; }
.testi-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; margin-top: 16px; }
.testi-person { display: flex; align-items: center; gap: 13px; margin-top: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.testi-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-person .tp-name { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.testi-person .tp-role { font-size: 0.8rem; color: var(--muted); }

/* ---------- Team ---------- */
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card img,
.team-initials {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 28px auto 0;
  border: 4px solid var(--gold-soft);
  box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.45);
}
.team-card img { object-fit: cover; object-position: top; }
.team-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(140px 70px at 20% 0%, rgba(212, 160, 23, 0.25), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-darker));
  color: var(--gold-light);
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.team-edu { text-align: left; }
.team-edu summary { font-size: 0.85rem; }
.team-edu .check-list li { font-size: 0.85rem; }
.team-card .team-body { padding: 22px 18px 26px; }
.team-card h3 { font-size: 1.08rem; }
.team-card .team-role { color: var(--gold); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.team-card p { color: var(--muted); font-size: 0.88rem; margin-top: 10px; }

/* ---------- Careers ---------- */
.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.job-card:hover { border-color: rgba(212, 160, 23, 0.5); box-shadow: var(--shadow-md); }
.job-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.job-card h3 { font-size: 1.1rem; }
.job-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; font-size: 0.83rem; color: var(--muted); }
.job-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-meta svg { width: 14px; height: 14px; fill: var(--gold); }
.job-summary { color: var(--muted); font-size: 0.93rem; margin-top: 16px; }
.job-details { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.job-details summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.job-details summary::-webkit-details-marker { display: none; }
.job-details summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}
.job-details[open] summary::after { transform: rotate(225deg) translateY(-2px); }
.job-details summary:hover { color: var(--gold); }
.job-details-body { padding-top: 16px; }
.job-details-body h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 18px 0 12px;
}
.job-details-body h4:first-child { margin-top: 0; }
.job-details-body .check-list li { font-size: 0.9rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 40px; }
}

@media (max-width: 860px) {
  .section { padding: 62px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-img img { height: 340px; }
  .split-img .float-badge { left: 12px; bottom: -20px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-nav { display: none; }
  .topbar-info span.hide-sm { display: none; }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 84vw);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 90px 22px 30px;
    box-shadow: var(--shadow-lg);
    transform: translateX(105%);
    transition: transform 0.35s ease;
    z-index: 940;
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a.nav-link { justify-content: space-between; padding: 13px 14px; font-size: 1rem; }
  .nav-menu a.nav-link .nav-caret { width: 18px; height: 18px; }
  /* Pin the close (X) button to the screen corner so it never overlaps menu items */
  .nav-toggle.active { position: fixed; top: 18px; right: 16px; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--gold-soft);
    border-radius: 0;
    margin: 0 0 6px 16px;
    padding: 0 0 0 6px;
    display: none;
  }
  .nav-menu li.open > .dropdown-menu { display: block; }
  .nav-toggle { position: relative; z-index: 960; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 26, 69, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 930;
  }
  .nav-overlay.show { opacity: 1; visibility: visible; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .cta-banner { padding: 46px 24px; }
  .form-card { padding: 26px 20px; }
  .hero-content { padding: 80px 0 110px; }
  .phone-row { flex-direction: column; }
  .phone-row select { width: 100%; }
}
