/* ============================================================
   Components & sections
   ============================================================ */

/* ---------- Top contact bar ---------- */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.82);
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--topbar-h);
}
.topbar-contact { display: flex; align-items: center; gap: 22px; }
.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.82);
  transition: color .15s ease;
}
.topbar-contact a:hover { color: var(--gold-200); }
.topbar-contact svg { width: 14px; height: 14px; color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { color: rgba(255,255,255,.6); transition: color .15s ease; }
.topbar-social a:hover { color: #fff; }
.topbar-social svg { width: 15px; height: 15px; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 12px;
  border-radius: 999px;
  transition: all .15s ease;
}
.lang-toggle button.active { background: var(--gold); color: var(--navy-950); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .2s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: auto; height: 46px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-bird { height: 46px; width: auto; display: block; }
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { line-height: 1; display: flex; flex-direction: column; justify-content: center; }
.bl-top {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--slate);
}
.bl-mid {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 19px;
  line-height: 1;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: #ef7a10;
  margin: 2px 0;
}
.bl-bot {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 9px;
  line-height: 1;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 5px;
}
.bl-stars { color: var(--gold); font-size: 8px; letter-spacing: 1px; }
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--navy-900);
}
.brand-tag {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 700;
}

/* primary nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover { color: var(--navy); background: var(--paper-2); }
.nav-link .caret { width: 13px; height: 13px; transition: transform .2s ease; }
.nav-item:hover .caret { transform: rotate(180deg); }

.header-cta { display: flex; align-items: center; gap: 12px; }

/* ---------- Mega dropdown ---------- */
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(880px, 86vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 120;
}
.mega::before {
  content: "";
  position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 30px;
}
.mega-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 6px 0 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line-soft);
}
.mega-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--slate);
  transition: background .14s ease, color .14s ease;
}
.mega-col a:hover { background: var(--paper-2); color: var(--navy); }
.mega-col a b { color: var(--navy-900); font-weight: 700; min-width: 34px; }
.mega-foot {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.mega-foot p { font-size: 14px; color: var(--slate); }
.mega-foot strong { color: var(--navy-900); }

/* ---------- Mobile ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy-900);
  margin: 0 auto;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(380px, 88vw);
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,31,61,.5);
  backdrop-filter: blur(2px);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-close {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  display: grid; place-items: center;
  color: var(--navy-900);
}
.mobile-close svg { width: 20px; height: 20px; }
.mobile-nav { padding: 12px 14px 22px; }
.mobile-nav > a, .m-acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 15px 12px;
  border: 0;
  background: none;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
}
.m-acc-trigger .caret { width: 16px; height: 16px; transition: transform .2s ease; }
.m-acc.open .m-acc-trigger .caret { transform: rotate(180deg); }
.m-acc-body {
  display: none;
  padding: 4px 0 10px 12px;
}
.m-acc.open .m-acc-body { display: block; }
.m-acc-body a {
  display: block;
  font-size: 14.5px;
  color: var(--slate);
  padding: 9px 12px;
}
.m-acc-body a:hover { color: var(--navy); }
.mobile-foot { padding: 18px 22px 30px; border-top: 1px solid var(--line-soft); margin-top: auto; }
.mobile-foot .btn { width: 100%; margin-bottom: 12px; }
.mobile-foot .topbar-contact { flex-direction: column; align-items: flex-start; gap: 10px; }
.mobile-foot .topbar-contact a { color: var(--slate); }
.mobile-foot .topbar-contact svg { color: var(--gold-600); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 540px at 78% -10%, rgba(200,168,90,.18), transparent 60%),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy-950) 70%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center;
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(64px, 8vw, 104px);
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 7px 15px 7px 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-200);
  margin-bottom: 26px;
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,168,90,.25); }
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero-lead {
  margin-top: 26px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,.78);
  max-width: 520px;
}
.hero-cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-trust div { line-height: 1.2; }
.hero-trust .num { font-family: var(--serif); font-size: 30px; color: var(--gold); }
.hero-trust .lbl { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 4px; }

.hero-visual { position: relative; }
.hero-img {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-lg);
}
.hero-img.ph { background-color: rgba(255,255,255,.06); }
.hero-img.ph::after { color: #fff; background: rgba(15,44,84,.7); }
.hero-badge {
  position: absolute;
  left: -26px;
  bottom: 38px;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}
.hero-badge .ico {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(26,75,140,.1);
  color: var(--navy);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-badge .ico svg { width: 24px; height: 24px; }
.hero-badge .t { font-family: var(--serif); font-weight: 600; font-size: 16px; color: var(--navy-900); }
.hero-badge .s { font-size: 13px; color: var(--slate); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about-media { position: relative; }
.about-img { aspect-ratio: 4/4.4; border-radius: 18px; box-shadow: var(--shadow); }
.about-img-2 {
  position: absolute;
  right: -22px; bottom: -28px;
  width: 46%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}
.about-body p { color: var(--slate); margin-top: 18px; }
.about-body .btn { margin-top: 30px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 46px);
  color: var(--navy);
  line-height: 1;
}
.stat .num .plus { color: var(--gold); }
.stat .lbl { margin-top: 8px; font-size: 14px; color: var(--slate); font-weight: 500; }

/* ---------- Services ---------- */
.services { background: var(--paper-2); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-900) 100%);
  color: var(--gold);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.svc-ico svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 21px; margin-bottom: 12px; }
.svc-card p { color: var(--slate); font-size: 15.5px; margin-bottom: 22px; }

/* ---------- Visa categories ---------- */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.visa-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.visa-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-200); }
.visa-tag {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 11px;
  background: rgba(26,75,140,.07);
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  display: grid; place-items: center;
  transition: background .18s ease, color .18s ease;
}
.visa-card:hover .visa-tag { background: var(--navy); color: var(--gold); }
.visa-info .v-name { font-weight: 700; font-size: 15px; color: var(--navy-900); line-height: 1.2; }
.visa-info .v-desc { font-size: 13px; color: var(--slate); margin-top: 3px; }
.visa-foot { margin-top: 38px; text-align: center; }

/* ---------- Blog ---------- */
.blog { background: var(--paper-2); }
.blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-media { position: relative; aspect-ratio: 16/10; }
.blog-date {
  position: absolute;
  left: 16px; bottom: 16px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 9px 13px;
  line-height: 1;
  box-shadow: var(--shadow);
}
.blog-date .d { font-family: var(--serif); font-size: 22px; font-weight: 600; }
.blog-date .m { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.blog-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 19px; line-height: 1.25; margin-bottom: 12px; }
.blog-card h3 a:hover { color: var(--navy); }
.blog-card p { color: var(--slate); font-size: 14.5px; margin-bottom: 20px; flex: 1; }
.blog-card .link-arrow { margin-top: auto; }

/* ---------- CTA strip ---------- */
.cta-strip {
  position: relative;
  background:
    radial-gradient(900px 400px at 15% 120%, rgba(200,168,90,.22), transparent 60%),
    linear-gradient(120deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 24px);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(48px, 6vw, 76px) 0;
  flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); max-width: 640px; }
.cta-inner p { margin-top: 14px; color: rgba(255,255,255,.78); max-width: 540px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: rgba(255,255,255,.7); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.6fr;
  gap: 44px;
  padding: clamp(56px, 7vw, 88px) 0 0;
}
.footer .brand-name { color: #fff; }
.footer .bl-top, .footer .bl-bot { color: rgba(255,255,255,.72); }
.footer .bl-mid { color: #f7902a; }
.footer-about p { margin-top: 20px; font-size: 14.5px; color: rgba(255,255,255,.6); max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: grid; place-items: center;
  color: rgba(255,255,255,.75);
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-950); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer h4 {
  font-family: var(--sans);
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14.5px; color: rgba(255,255,255,.62); transition: color .15s ease, padding .15s ease; }
.footer-links a:hover { color: var(--gold-200); padding-left: 4px; }
.footer-news p { font-size: 14.5px; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.news-form { display: flex; gap: 8px; margin-bottom: 24px; }
.news-form input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 13px 15px;
  color: #fff;
  font-family: inherit;
  font-size: 14.5px;
}
.news-form input::placeholder { color: rgba(255,255,255,.4); }
.news-form input:focus { outline: none; border-color: var(--gold); }
.news-form button { padding: 13px 20px; }
.footer-addr { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-addr a { color: var(--gold-200); }
.footer-bar {
  margin-top: clamp(40px, 5vw, 64px);
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
}
.footer-bar nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bar a:hover { color: #fff; }

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1040px) {
  .nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-news { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .visa-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; }
  .about-img-2 { width: 40%; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .topbar-contact .email-text { display: none; }
  .topbar-right .topbar-social { display: none; }
  .stats { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .stat { display: flex; align-items: baseline; gap: 16px; }
  .stat .lbl { margin-top: 0; }
  .visa-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 50%; transform: translateX(-50%); right: auto; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero-cta .btn, .cta-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
