/* ============================================================
   DMIGRATION — Visa & Immigration Services
   Luxury design system · Teal + Gold
   ============================================================ */

:root {
  /* Brand palette */
  --teal-900: #07332f;
  --teal-800: #0c4a45;
  --teal-700: #0f5e57;
  --teal-600: #137268;
  --teal-500: #178a7e;
  --teal-100: #d7ece9;
  --teal-50:  #eef7f5;

  --gold-700: #a07c2c;
  --gold-600: #bf9638;
  --gold-500: #c9a24b;
  --gold-400: #ddbd73;
  --gold-200: #f0e2bd;

  --ink:      #16302d;
  --ink-soft: #46615d;
  --muted:    #6f8682;

  --cream:    #faf7f1;
  --cream-2:  #f3ede2;
  --white:    #ffffff;
  --line:     #e7e0d3;

  --shadow-sm: 0 2px 10px rgba(7, 51, 47, 0.06);
  --shadow-md: 0 14px 40px rgba(7, 51, 47, 0.10);
  --shadow-lg: 0 30px 70px rgba(7, 51, 47, 0.16);

  --radius: 16px;
  --radius-lg: 26px;
  --maxw: 1200px;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--ink); margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
section { position: relative; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section--tight { padding: 70px 0; }
.center { text-align: center; }
.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Typographic accents ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: .8rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold-500); display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--gold-400); }
.eyebrow--light::before { background: var(--gold-400); }

.display { font-size: clamp(2.3rem, 5vw, 3.7rem); }
.h-lead { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 620px; }
.lead--center { margin-left: auto; margin-right: auto; }
.gold { color: var(--gold-600); }
.serif-italic { font-family: var(--serif); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: 15px 30px; border-radius: 50px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: #3a2c08; box-shadow: 0 12px 26px rgba(160,124,44,.32); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(160,124,44,.42); }
.btn--teal { background: var(--teal-700); color: #fff; }
.btn--teal:hover { background: var(--teal-800); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--teal-800); border-color: var(--teal-700); }
.btn--ghost:hover { background: var(--teal-700); color: #fff; transform: translateY(-3px); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: #fff; color: var(--teal-800); border-color: #fff; }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--teal-900); color: rgba(255,255,255,.82);
  font-size: .85rem; letter-spacing: .01em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; }
.topbar a { color: rgba(255,255,255,.82); }
.topbar a:hover { color: var(--gold-400); }
.topbar__left { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar__left span { display: inline-flex; align-items: center; gap: 8px; }
.topbar__left svg { width: 15px; height: 15px; color: var(--gold-400); }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.socials { display: flex; gap: 14px; }
.socials a svg { width: 16px; height: 16px; }

.lang-toggle { display: inline-flex; border: 1px solid rgba(255,255,255,.28); border-radius: 50px; overflow: hidden; }
.lang-toggle button {
  background: transparent; border: 0; color: rgba(255,255,255,.7);
  font-family: var(--sans); font-weight: 600; font-size: .78rem; letter-spacing: .04em;
  padding: 4px 12px; cursor: pointer; transition: all .25s var(--ease);
}
.lang-toggle button.active { background: var(--gold-500); color: #3a2c08; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.brand img { height: 56px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links > li > a {
  font-weight: 500; font-size: 1rem; color: var(--ink); position: relative; padding: 6px 0;
}
.nav-links > li > a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold-500); transition: width .3s var(--ease);
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--teal-700); }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s var(--ease); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--teal-900) 0%, var(--teal-800) 45%, var(--teal-700) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(201,162,75,.18), transparent 45%),
                    radial-gradient(circle at 12% 85%, rgba(23,138,126,.30), transparent 40%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-top: 90px; padding-bottom: 100px; }
.hero__content { max-width: 600px; }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold-400); font-style: italic; }
.hero p { color: rgba(255,255,255,.86); font-size: 1.2rem; margin-bottom: 16px; }
.hero__tagline { font-family: var(--serif); font-style: italic; color: var(--gold-400); font-size: 1.25rem; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero__trust { display: flex; gap: 30px; margin-top: 42px; flex-wrap: wrap; }
.hero__trust .t-num { font-family: var(--serif); font-size: 2rem; color: var(--gold-400); font-weight: 700; }
.hero__trust .t-lbl { font-size: .85rem; color: rgba(255,255,255,.72); }

.hero__visual { position: relative; }
.hero__card {
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg); padding: 10px; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero__card img { border-radius: 20px; }
.hero__badge {
  margin-top: 20px;
  background: #fff; color: var(--ink); border-radius: 18px; padding: 18px 22px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px;
}
.hero__badge .ico { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--teal-50); display: grid; place-items: center; color: var(--teal-700); }
.hero__badge .ico svg { width: 24px; height: 24px; }
.hero__badge .badge-photo { width: 52px; height: 52px; flex: none; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--gold-400, #d4a843); box-shadow: 0 4px 12px rgba(7,51,47,.18); }
.hero__badge strong { font-family: var(--serif); display: block; font-size: 1.05rem; }
.hero__badge span { font-size: .82rem; color: var(--muted); }

.wave-sep { display: block; width: 100%; height: auto; }

/* ---------- Marquee / trusted strip ---------- */
.logos-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.logos-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 26px; padding-bottom: 26px; flex-wrap: wrap; }
.logos-strip .lbl { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.logos-strip .marks { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.logos-strip .marks span { font-family: var(--serif); font-weight: 700; color: var(--ink); opacity: .55; font-size: 1.15rem; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.sec-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }
.sec-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 16px; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 32px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--teal-600), var(--gold-500)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(140deg, var(--teal-50), var(--teal-100)); color: var(--teal-700);
}
.svc-ico svg { width: 32px; height: 32px; }
.svc-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.svc-card p { font-size: .98rem; margin-bottom: 18px; }
.svc-link { font-weight: 600; color: var(--teal-700); display: inline-flex; align-items: center; gap: 7px; font-size: .95rem; }
.svc-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.svc-card:hover .svc-link svg { transform: translateX(5px); }

/* ============================================================
   FEATURE / WHY US (split)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split__media .frame { position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--gold-400); border-radius: var(--radius-lg); z-index: -1; }

.feature-list { display: grid; gap: 22px; margin-top: 26px; }
.feature-item { display: flex; gap: 18px; }
.feature-item .fi-ico {
  flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--teal-700); color: var(--gold-400);
}
.feature-item .fi-ico svg { width: 24px; height: 24px; }
.feature-item h4 { font-family: var(--serif); font-size: 1.18rem; margin-bottom: 4px; }
.feature-item p { font-size: .96rem; margin: 0; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  background: linear-gradient(120deg, var(--teal-800), var(--teal-700));
  color: #fff; position: relative; overflow: hidden;
}
.stats::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 85% 30%, rgba(201,162,75,.22), transparent 45%); }
.stats .container { position: relative; z-index: 2; }
.stats .grid { gap: 20px; }
.stat { text-align: center; padding: 16px; }
.stat .num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; color: var(--gold-400); line-height: 1; }
.stat .lbl { margin-top: 10px; font-size: .98rem; color: rgba(255,255,255,.82); }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-grid { counter-reset: step; }
.proc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; position: relative; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.proc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.proc-card .step-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 700;
  color: var(--gold-200); line-height: 1; margin-bottom: 10px;
}
.proc-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.proc-card p { font-size: .96rem; margin: 0; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-sm); color: #fff;
}
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dest-card::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(7,51,47,.85), rgba(7,51,47,.05) 60%); }
.dest-card:hover img { transform: scale(1.08); }
.dest-card .dc-body { position: relative; z-index: 2; padding: 26px; }
.dest-card h3 { color: #fff; font-size: 1.4rem; }
.dest-card p { color: rgba(255,255,255,.85); margin: 6px 0 0; font-size: .92rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 32px; box-shadow: var(--shadow-sm); position: relative;
}
.testi-card .quote-mark { font-family: var(--serif); font-size: 4rem; color: var(--gold-200); line-height: .6; height: 30px; }
.testi-card .stars { color: var(--gold-500); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.testi-card p { font-size: 1.02rem; color: var(--ink); font-style: italic; }
.testi-who { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.testi-who .av { width: 50px; height: 50px; border-radius: 50%; background: var(--teal-100); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; color: var(--teal-700); }
.testi-who strong { display: block; font-family: var(--serif); }
.testi-who span { font-size: .85rem; color: var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--teal-900), var(--teal-700));
  color: #fff; border-radius: var(--radius-lg); padding: 64px 56px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::after { content:""; position:absolute; right:-60px; top:-60px; width: 320px; height: 320px; border-radius:50%; background: radial-gradient(circle, rgba(201,162,75,.30), transparent 70%); }
.cta-band .inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); max-width: 640px; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 10px; max-width: 560px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(120deg, var(--teal-900), var(--teal-700)); color: #fff;
  padding: 72px 0 84px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 10%, rgba(201,162,75,.18), transparent 45%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.3rem); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto; font-size: 1.12rem; }
.breadcrumb { font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { color: var(--gold-400); }

/* ============================================================
   SERVICE DETAIL BLOCKS
   ============================================================ */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--line); }
.svc-detail:nth-child(even) .svc-detail__media { order: 2; }
.svc-detail__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.svc-detail h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 14px; }
.check-list { display: grid; gap: 12px; margin: 22px 0 28px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.check-list li svg { flex: none; width: 22px; height: 22px; color: var(--teal-600); margin-top: 2px; }
.tag-pill { display: inline-block; background: var(--teal-50); color: var(--teal-700); font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 50px; margin-bottom: 16px; }

/* ============================================================
   FORMS / CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ico { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; }
.info-row .ico svg { width: 22px; height: 22px; }
.info-row strong { font-family: var(--serif); display: block; margin-bottom: 2px; }
.info-row span, .info-row a { color: var(--ink-soft); font-size: .96rem; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--cream); transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(23,138,126,.12); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; background: var(--teal-50); border: 1px solid var(--teal-100); color: var(--teal-800); border-radius: 12px; padding: 16px 18px; margin-bottom: 18px; font-weight: 500; }
.form-success.show { display: block; }

.map-embed { border: 0; width: 100%; height: 360px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.map-card { display: flex; align-items: center; gap: 16px; margin-top: 24px; padding: 20px 22px; border-radius: var(--radius); text-decoration: none;
  background: linear-gradient(135deg, var(--teal-900, #07332f), var(--teal-800, #0a4a43)); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.map-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md, 0 14px 34px rgba(7,51,47,.22)); }
.map-card__pin { flex: none; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: rgba(212,168,67,.18); color: var(--gold-400, #d4a843); }
.map-card__pin svg { width: 24px; height: 24px; }
.map-card__text { display: flex; flex-direction: column; gap: 3px; }
.map-card__text strong { color: #fff; font-size: 1.05rem; }
.map-card__text span { color: var(--gold-400, #d4a843); font-size: .92rem; font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s var(--ease); }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; cursor: pointer; font-family: var(--serif); font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.faq-q .pm { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; transition: transform .3s var(--ease); font-size: 1.2rem; line-height: 1; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--teal-700); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 26px 22px; margin: 0; }

/* ============================================================
   TEAM / VALUES
   ============================================================ */
.value-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .v-ico { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: linear-gradient(140deg, var(--gold-200), var(--gold-400)); color: var(--teal-900); }
.value-card .v-ico svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.value-card p { font-size: .95rem; margin: 0; }

/* Team member grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 26px; max-width: 1080px; margin: 0 auto; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card img { width: 116px; height: 116px; border-radius: 50%; object-fit: cover; object-position: center top; margin: 0 auto 16px; border: 3px solid var(--gold-400, #d4a843); box-shadow: 0 6px 16px rgba(7,51,47,.16); }
.team-card h3 { font-family: var(--serif); font-size: 1.18rem; margin: 0 0 4px; color: var(--ink); }
.team-card .team-role { font-size: .92rem; font-weight: 600; color: var(--teal-700, #0a4a43); margin: 0; }
.team-card .team-lic { display: block; font-size: .78rem; color: var(--muted, #5b6b67); margin-top: 6px; }

/* Education partner chips */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; max-width: 980px; margin: 0 auto; }
.partner-chip { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold-400, #d4a843); border-radius: 10px; padding: 15px 18px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease); }
.partner-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* University partner cards */
.uni-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; max-width: 980px; margin: 0 auto; }
.uni-card { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--uni, var(--teal-700, #0a4a43)); border-radius: 14px; overflow: hidden; text-align: center; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.uni-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.uni-photo img { display: block; width: 100%; height: 150px; object-fit: cover; }
.uni-name { font-family: var(--serif); font-weight: 700; font-size: 1.02rem; color: var(--ink, #2c3a37); line-height: 1.3; padding: 15px 14px 0; }
.uni-city { font-size: .8rem; color: var(--muted, #5b6b67); margin-top: 6px; padding: 0 14px 18px; }

/* Success-story / case cards */
.case-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case-ico { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; background: linear-gradient(140deg, var(--gold-200, #ecd9a8), var(--gold-400, #d4a843)); color: var(--teal-900, #07332f); }
.case-ico svg { width: 26px; height: 26px; }
.case-card h3 { font-family: var(--serif); font-size: 1.12rem; margin-bottom: 8px; color: var(--teal-800, #0a4a43); }
.case-card p { font-size: .92rem; margin: 0; color: var(--muted, #5b6b67); line-height: 1.6; }
.case-card p strong { color: var(--ink, #2c3a37); font-size: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--teal-900); color: rgba(255,255,255,.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand img { height: 58px; margin-bottom: 20px; background: #fff; padding: 8px 12px; border-radius: 12px; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-family: var(--serif); font-size: 1.15rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,.72); font-size: .95rem; }
.footer-col ul li a:hover { color: var(--gold-400); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: .94rem; color: rgba(255,255,255,.78); }
.footer-contact li svg { flex: none; width: 18px; height: 18px; color: var(--gold-400); margin-top: 3px; }
.footer-socials { display: flex; gap: 12px; margin-top: 8px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; transition: all .3s var(--ease); }
.footer-socials a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--teal-900); transform: translateY(-3px); }
.footer-socials a svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Floating contact ---------- */
.float-contact { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.float-contact a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); transition: transform .3s var(--ease); }
.float-contact a:hover { transform: scale(1.08); }
.float-contact .wa { background: #25D366; }
.float-contact .call { background: var(--teal-700); }
.float-contact .fb { background: #1877F2; }
.float-contact .zalo { background: #0068FF; font-weight: 800; font-size: .82rem; letter-spacing: .3px; }
.float-contact a svg { width: 26px; height: 26px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 520px; }
  .split, .contact-grid, .svc-detail { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail:nth-child(even) .svc-detail__media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .topbar { display: none; }
  .nav-links { position: fixed; inset: 84px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0; background: #fff; padding: 12px 28px 28px; box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .35s var(--ease); border-bottom: 1px solid var(--line); }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 30px; }
  .hero__badge { position: static; margin-top: 16px; max-width: none; }
  .stats .cols-4 { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   NEWS / ARTICLES
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line, #e8e3d8);
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
  box-shadow: var(--shadow-sm, 0 6px 20px rgba(12,74,69,.07));
  transition: transform .35s ease, box-shadow .35s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md, 0 18px 40px rgba(12,74,69,.14)); }
.news-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.news-card:hover .news-card__media img { transform: scale(1.06); }
.news-card__cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(7,51,47,.86); color: #fff;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.news-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.news-card__date { font-size: .82rem; color: var(--gold-600, #a07c2c); font-weight: 600; margin-bottom: 8px; }
.news-card__title { font-family: var(--serif); font-size: 1.28rem; line-height: 1.3; color: var(--teal-900, #07332f); margin: 0 0 10px; }
.news-card__excerpt { color: var(--muted, #5b6b67); font-size: .95rem; margin: 0 0 18px; flex: 1; }
.news-card__link { display: inline-flex; align-items: center; gap: 7px; color: var(--teal-700, #137268); font-weight: 600; font-size: .95rem; }
.news-card__link svg { width: 18px; height: 18px; transition: transform .3s ease; }
.news-card:hover .news-card__link svg { transform: translateX(4px); }

/* Article page */
.article { max-width: 820px; margin: 0 auto; }
.article__figure { margin: 0 0 36px; border-radius: var(--radius-lg, 20px); overflow: hidden; box-shadow: var(--shadow-md, 0 18px 40px rgba(12,74,69,.14)); }
.article__figure img { width: 100%; display: block; }
.article__lead { font-size: 1.22rem; line-height: 1.65; color: var(--teal-900, #07332f); font-weight: 500; margin: 0 0 26px; }
.article__body p { color: var(--ink, #2c3a37); line-height: 1.8; margin: 0 0 20px; }
.article__body h2 { font-family: var(--serif); font-size: 1.55rem; color: var(--teal-900,#07332f); margin: 38px 0 14px; }
.article__body ul { list-style: none; padding: 0; margin: 0 0 24px; }
.article__body ul li { position: relative; padding: 0 0 0 32px; margin-bottom: 14px; line-height: 1.65; color: var(--ink,#2c3a37); }
.article__body ul li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 18px; height: 18px;
  background: var(--gold-400, #d4a843); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M5 12l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
}
.keybox {
  background: linear-gradient(150deg, #f3efe6, #e9f1ee);
  border-left: 4px solid var(--gold-400, #d4a843);
  border-radius: 14px; padding: 24px 26px; margin: 30px 0;
}
.keybox h3 { margin: 0 0 8px; font-size: 1.1rem; color: var(--teal-900,#07332f); }
.keybox p { margin: 0; color: var(--ink,#2c3a37); line-height: 1.7; }
.disclaimer { font-size: .86rem; color: var(--muted,#5b6b67); font-style: italic; border-top: 1px solid var(--line,#e8e3d8); padding-top: 20px; margin-top: 36px; }
.article__meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.article__back { display:inline-flex; align-items:center; gap:7px; color: var(--teal-700,#137268); font-weight:600; margin-bottom: 30px; }
.article__back svg { width:18px;height:18px; }

@media (max-width: 980px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .news-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER LICENCE LINE
   ============================================================ */
.footer-licence {
  font-size: .82rem;
  color: var(--gold-400, #d4a843);
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: .01em;
}

/* ============================================================
   NEWSLETTER / LEAD CAPTURE
   ============================================================ */
.newsletter {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
  background:
    linear-gradient(150deg, rgba(7,51,47,.94), rgba(15,94,87,.9)),
    url("../assets/photos/queenstown.jpg") center/cover no-repeat;
  border-radius: var(--radius-lg, 20px);
  padding: 46px 48px;
  box-shadow: var(--shadow-md, 0 18px 40px rgba(12,74,69,.14));
}
.newsletter__text h2 { font-family: var(--serif); color: #fff; font-size: 1.7rem; margin: 0 0 10px; }
.newsletter__text p { color: rgba(255,255,255,.85); margin: 0; line-height: 1.65; }
.newsletter-form { position: relative; display: flex; flex-wrap: wrap; gap: 12px; }
.newsletter-form input[type="email"] {
  flex: 1; min-width: 200px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.96);
  border-radius: 12px; padding: 15px 18px; font-size: 1rem; font-family: inherit;
  color: var(--ink, #2c3a37);
}
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--gold-400, #d4a843); box-shadow: 0 0 0 3px rgba(212,168,67,.3); }
.newsletter-form .btn { white-space: nowrap; }
.newsletter-note { width: 100%; margin: 4px 0 0; font-size: .8rem; color: rgba(255,255,255,.7); }
.newsletter-success {
  width: 100%; margin: 6px 0 0; padding: 0; color: #eafff6; font-weight: 600;
  display: none;
}
.newsletter-success.show { display: block; }

@media (max-width: 820px) {
  .newsletter { grid-template-columns: 1fr; padding: 36px 28px; gap: 22px; }
}
