/* =====================================================================
   SkillBridge Overseas — Premium Design System
   Study Abroad. Work Worldwide.
   ===================================================================== */

:root {
  /* Brand palette — matched to SKILLBridge logo (green / red / orange-gold) */
  --navy-900: #0e3a06;   /* darkest green */
  --navy-800: #1a5a0c;   /* primary brand green (headings, brand) */
  --navy-700: #22720f;
  --navy-600: #2c8a17;
  --indigo: #2c8a17;     /* green accent for icons & links */
  --gold-500: #e8860f;   /* arrow orange */
  --gold-400: #f9a51f;
  --gold-300: #ffc24d;
  --red-500: #d62828;    /* SKILL red */
  --red-600: #b81f1f;
  --ink: #1f2a16;
  --slate-700: #3c4a33;
  --slate-500: #647058;
  --slate-400: #8a9580;
  --line: #e6ebe0;
  --bg: #ffffff;
  --bg-soft: #f6faf2;
  --bg-tint: #eef5e6;
  --white: #ffffff;
  --success: #1f9d2f;

  /* Effects */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(20, 50, 10, 0.07);
  --shadow: 0 10px 30px rgba(20, 50, 10, 0.12);
  --shadow-lg: 0 24px 60px rgba(20, 50, 10, 0.20);
  --ring: 0 0 0 4px rgba(248, 165, 31, 0.30);

  --grad-hero: radial-gradient(1200px 600px at 80% -10%, rgba(44, 138, 23, 0.55), transparent 60%),
               radial-gradient(900px 500px at 0% 110%, rgba(232, 134, 15, 0.20), transparent 55%),
               linear-gradient(160deg, var(--navy-900), var(--navy-700));
  --grad-gold: linear-gradient(135deg, var(--gold-400), var(--gold-500));

  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --maxw: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-800); line-height: 1.18; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
p { color: var(--slate-700); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-800); }
.section--tint { background: var(--bg-tint); }
.center { text-align: center; }
.grid { display: grid; gap: 26px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-500); margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold-300); }
.lead { font-size: 1.12rem; color: var(--slate-500); max-width: 640px; }
.center .lead { margin-inline: auto; }
.head-block { max-width: 720px; margin-bottom: 48px; }
.center.head-block { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--grad-gold); color: #fff; box-shadow: 0 10px 24px rgba(232,134,15,.38); }
.btn-gold:hover { box-shadow: 0 16px 34px rgba(232,134,15,.48); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-outline { background: #fff; border-color: var(--line); color: var(--navy-800); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--gold-400); }
.btn-lg { padding: 16px 32px; font-size: 1.04rem; }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy-900); color: #e3efda; font-size: .85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 8px; flex-wrap: wrap; }
.topbar a { color: #e3efda; transition: color .15s; }
.topbar a:hover { color: var(--gold-400); }
.topbar .tb-right { display: flex; gap: 18px; align-items: center; }
.topbar .dot { color: var(--gold-400); }

.site-header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; background: var(--grad-hero);
  display: grid; place-items: center; color: #fff; font-family: var(--font-head);
  font-weight: 800; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.brand-mark span { font-size: 1.15rem; letter-spacing: -.02em; }
.brand-text b { font-family: var(--font-head); font-size: 1.18rem; color: var(--navy-800); display: block; letter-spacing: -.01em; line-height: 1.1; }
.brand-text small { color: var(--gold-500); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.brand-logo { height: 50px; width: auto; display: block; }
.footer .brand-logo { height: 46px; background: #fff; padding: 9px 14px; border-radius: 14px; box-shadow: var(--shadow-sm); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 5px; padding: 10px 13px; border-radius: 10px;
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--slate-700);
  transition: background .15s, color .15s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--navy-800); background: var(--bg-tint); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; z-index: 70;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 9px 12px; border-radius: 9px; font-size: .92rem; color: var(--slate-700); font-family: var(--font-head); }
.drop a:hover { background: var(--bg-tint); color: var(--navy-800); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-800); margin: 5px 0; transition: .25s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px; opacity: .5; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding: 78px 0 92px; }
.hero h1 { color: #fff; }
.hero h1 .hl { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { color: #d7e6cb; font-size: 1.15rem; margin: 20px 0 30px; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; color: #c4d6b6; font-size: .9rem; }
.hero-trust b { color: #fff; font-family: var(--font-head); }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #eef4e6;
  font-size: .82rem; font-weight: 600; margin-bottom: 22px; backdrop-filter: blur(4px);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(230,184,77,.25); }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.96); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.hero-card h3 { color: var(--navy-800); margin-bottom: 4px; }
.hero-card .muted { color: var(--slate-500); font-size: .9rem; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--slate-700); margin-bottom: 6px; font-family: var(--font-head); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: #fff; transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-400); box-shadow: var(--ring); }
.form-note { font-size: .78rem; color: var(--slate-400); margin-top: 10px; text-align: center; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(212,162,58,.4); }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--bg-tint); color: var(--indigo); font-size: 1.5rem; margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--indigo); font-weight: 600; font-family: var(--font-head); font-size: .92rem; }
.card-link:hover { color: var(--gold-500); }

/* feature list */
.flist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--slate-700); }
.flist .tick {
  flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: rgba(31,157,114,.12);
  color: var(--success); display: grid; place-items: center; font-size: .8rem; font-weight: 700; margin-top: 2px;
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 26px 16px; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: #fff; }
.stat .num .suffix { color: var(--gold-400); }
.stat .lbl { color: #c4d6b6; font-size: .92rem; margin-top: 4px; }

/* ---------- Destination tiles ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 220px;
  display: flex; align-items: flex-end; padding: 20px; color: #fff; box-shadow: var(--shadow-sm);
  background-size: cover; background-position: center; transition: transform .25s ease;
}
.dest::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,45,6,.10), rgba(14,45,6,.86)); }
.dest:hover { transform: translateY(-5px); }
.dest > div { position: relative; z-index: 2; }
.dest .flag { font-size: 1.6rem; }
.dest .flag-img { width: 56px; height: 38px; object-fit: cover; border-radius: 8px; margin-bottom: 10px; box-shadow: 0 4px 12px rgba(0,0,0,.35); border: 1.5px solid rgba(255,255,255,.65); }
.dest h3 { color: #fff; font-size: 1.2rem; }
.dest small { color: #e3efda; }

/* ---------- Steps / process ---------- */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 26px 78px; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 22px; top: 24px; width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad-hero); color: #fff; font-family: var(--font-head); font-weight: 800;
  display: grid; place-items: center; font-size: .95rem;
}
.step h3 { margin-bottom: 5px; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); height: 100%; }
.quote .stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 12px; }
.quote p { color: var(--slate-700); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-hero); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote .who b { font-family: var(--font-head); color: var(--navy-800); display: block; font-size: .96rem; }
.quote .who small { color: var(--slate-500); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: var(--navy-800);
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-q .chev { transition: transform .25s; color: var(--gold-500); flex: 0 0 auto; font-size: 1.1rem; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--slate-700); font-size: .96rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-hero); border-radius: var(--radius-lg); padding: 54px; color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d7e6cb; max-width: 620px; margin: 14px auto 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--grad-hero); color: #fff; padding: 64px 0 70px; position: relative; }
.page-hero h1 { color: #fff; max-width: 760px; }
.page-hero p { color: #d7e6cb; max-width: 640px; margin-top: 14px; font-size: 1.1rem; }
.crumbs { display: flex; gap: 8px; font-size: .85rem; color: #aabf97; margin-bottom: 16px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--gold-400); }
.crumbs span { color: var(--gold-400); }

/* ---------- Prose ---------- */
.prose h2 { margin: 36px 0 14px; }
.prose h3 { margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 0 0 18px; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--slate-700); }
.prose ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-500); }

/* split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.media-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--grad-hero); min-height: 360px; position: relative; color: #fff; display: flex; align-items: flex-end; padding: 30px; }
.media-card .badge { position: absolute; top: 22px; left: 22px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); padding: 8px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600; backdrop-filter: blur(4px); }

/* table */
.tbl { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.tbl th, .tbl td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .94rem; }
.tbl th { background: var(--bg-tint); font-family: var(--font-head); color: var(--navy-800); font-weight: 700; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl td { color: var(--slate-700); }

/* tags */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { background: var(--bg-tint); color: var(--indigo); padding: 7px 14px; border-radius: 999px; font-size: .85rem; font-weight: 600; font-family: var(--font-head); }

/* blog */
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; height: 100%; }
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post .thumb { height: 168px; background: var(--grad-hero); position: relative; }
.post .thumb span { position: absolute; bottom: 12px; left: 14px; background: var(--grad-gold); color: var(--navy-900); padding: 5px 12px; border-radius: 999px; font-size: .76rem; font-weight: 700; font-family: var(--font-head); }
.post .body { padding: 22px; }
.post .body small { color: var(--slate-400); font-size: .82rem; }
.post .body h3 { margin: 6px 0 8px; font-size: 1.1rem; }
.post .body p { font-size: .92rem; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.info-card .row { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.info-card .row:last-child { margin-bottom: 0; }
.info-card .ico { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: var(--bg-tint); color: var(--indigo); display: grid; place-items: center; font-size: 1.2rem; }
.info-card .row b { font-family: var(--font-head); color: var(--navy-800); display: block; font-size: .95rem; }
.info-card .row a, .info-card .row p { color: var(--slate-600); font-size: .92rem; }

/* logos / trust strip */
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.trust-strip .tlogo { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 22px; font-family: var(--font-head); font-weight: 700; color: var(--slate-500); box-shadow: var(--shadow-sm); font-size: .92rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #bccdad; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 38px; padding-bottom: 44px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing: .02em; }
.footer a { color: #bccdad; font-size: .92rem; display: block; padding: 5px 0; transition: color .15s; }
.footer a:hover { color: var(--gold-400); }
.footer .brand-text b { color: #fff; }
.footer p { color: #a3b790; font-size: .92rem; margin: 14px 0; }
.footer .social { display: flex; gap: 10px; margin-top: 14px; }
.footer .social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; padding: 0; }
.footer .social a:hover { background: var(--grad-gold); color: var(--navy-900); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #93a780; align-items: center; }
.footer-bottom a { display: inline; color: var(--gold-400); font-weight: 600; }
.footer-bottom a:hover { color: var(--gold-300); }

/* ---------- Floating contact ---------- */
.float-cta { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: flex; flex-direction: column; gap: 10px; }
.float-cta a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); font-size: 1.4rem; transition: transform .18s; }
.float-cta a:hover { transform: scale(1.08); }
.fab-wa { background: #25d366; }
.fab-call { background: var(--grad-gold); color: var(--navy-900); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .g-4, .dest-grid, .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: #fff;
    flex-direction: column; align-items: stretch; gap: 2px; padding: 90px 18px 30px;
    box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .28s ease; overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li > a { padding: 13px 14px; font-size: 1rem; }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 2px 0 6px 12px; padding: 0; min-width: 0; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .nav-open-backdrop { position: fixed; inset: 0; background: rgba(7,20,43,.5); z-index: 55; opacity: 0; visibility: hidden; transition: .25s; }
  .nav-open-backdrop.show { opacity: 1; visibility: visible; }
}
@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .g-2, .g-3, .g-4, .dest-grid, .stats, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 22px; }
  .hero-grid { padding: 50px 0 60px; }
  .topbar .tb-left { display: none; }
}

/* ============ Photographic backgrounds (added) ============ */
/* Hero & interior page heroes: real photo under a brand-green overlay so
   white text stays readable. Per-page photo is set via --hero-img inline. */
.hero {
  background:
    linear-gradient(100deg, rgba(14,58,6,.93) 0%, rgba(14,58,6,.80) 42%, rgba(26,90,12,.50) 100%),
    var(--hero-img, var(--grad-hero));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero {
  background:
    linear-gradient(100deg, rgba(14,58,6,.92) 0%, rgba(14,58,6,.78) 48%, rgba(26,90,12,.52) 100%),
    var(--hero-img, var(--grad-hero));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Blog thumbnails carry their own photo via inline background; keep the
   gold category pill readable with a soft bottom gradient baked into it. */
.post .thumb { background-size: cover; background-position: center; }

/* ============ Photo cards (service / feature / country) ============ */
/* A full-bleed photo banner at the top of a .card — replaces the emoji icon,
   matching the "photo on top, text below" card style. */
.card { overflow: hidden; }
.card-img {
  display: block;
  width: calc(100% + 56px);
  height: 168px;
  margin: -28px -28px 20px;
  object-fit: cover;
  background: var(--navy-900);
  border-bottom: 3px solid var(--gold-400);
}
.card:hover .card-img { filter: brightness(1.04); }
@media (max-width: 560px){ .card-img { height: 150px; } }

/* Destination tiles that use a real photo background (study-destinations) */
.dest[style*="images/"]::before { background: linear-gradient(180deg, rgba(14,45,6,.12), rgba(14,45,6,.82)); }

/* Flag variant: show the whole flag (not cropped) as a neat badge banner */
.card-img--flag {
  object-fit: contain;
  padding: 16px;
  background: linear-gradient(160deg, #103f06, #1a5a0c);
}
