/* =============================================
   VISA EXPRESS BD - Main Stylesheet v2.0
   Color Palette: Charcoal #2B2B2B | Gold #D4A017 | White #FFFFFF | Grey #F4F4F4
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+Bengali:wght@300;400;500;600;700;800&display=swap');

:root {
  --gold: #D4A017;
  --gold-dark: #B8860B;
  --gold-light: #E8B820;
  --gold-pale: #FDF6E3;
  --charcoal: #2B2B2B;
  --charcoal-soft: #3A3A3A;
  --white: #FFFFFF;
  --grey-light: #F4F4F4;
  --grey-mid: #E0E0E0;
  --grey-text: #555555;
  --font-en: 'Inter', sans-serif;
  --font-bn: 'Noto Sans Bengali', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --shadow-gold: 0 8px 24px rgba(212,160,23,0.30);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-en);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
body.lang-bn { font-family: var(--font-bn); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.bn-text { display: none !important; }
.en-text { display: inline; }
body.lang-bn .en-text { display: none !important; }
body.lang-bn .bn-text { display: inline !important; }

body.lang-bn p.bn-text,
body.lang-bn div.bn-text,
body.lang-bn li.bn-text,
body.lang-bn h1.bn-text,
body.lang-bn h2.bn-text,
body.lang-bn h3.bn-text,
body.lang-bn h4.bn-text,
body.lang-bn h5.bn-text,
body.lang-bn h6.bn-text,
body.lang-bn ul.bn-text,
body.lang-bn a.bn-text { display: block !important; }

p.en-text, div.en-text, li.en-text,
h1.en-text, h2.en-text, h3.en-text,
h4.en-text, h5.en-text, h6.en-text, ul.en-text { display: block; }

body.lang-bn p.en-text, body.lang-bn div.en-text, body.lang-bn li.en-text,
body.lang-bn h1.en-text, body.lang-bn h2.en-text, body.lang-bn h3.en-text,
body.lang-bn h4.en-text, body.lang-bn h5.en-text, body.lang-bn h6.en-text,
body.lang-bn ul.en-text { display: none !important; }

body.lang-bn a.bn-text.btn,
body.lang-bn button.bn-text { display: inline-flex !important; }

/* ---- Utility ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-charcoal { background: var(--charcoal); }
.bg-grey { background: var(--grey-light); }
.bg-gold-pale { background: var(--gold-pale); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { font-size: 1rem; line-height: 1.75; color: var(--grey-text); }
.lead { font-size: 1.15rem; line-height: 1.8; }
.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ---- Divider (gold bar below section title) ---- */
.divider {
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.section-header.center .divider { margin: 0 auto 20px; }

/* Section header: divider is ABOVE eyebrow, title below */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header h2 { margin-bottom: 16px; margin-top: 8px; }
.section-header p { max-width: 600px; }
.section-header.center p { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,160,23,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-white {
  background: var(--white);
  color: var(--charcoal);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ---- Info Bar ---- */
.info-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 9px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.info-bar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.info-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.info-bar a:hover { color: var(--gold); }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(43,43,43,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,160,23,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(43,43,43,0.99);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.navbar-logo img { height: 44px; width: auto; object-fit: contain; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links li { position: relative; }
.nav-links a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.80);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); background: rgba(212,160,23,0.08); }
.nav-links .active > a { color: var(--gold); }
.flag-img { display: inline-block; vertical-align: middle; border-radius: 2px; }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--charcoal-soft);
  border: 1px solid rgba(212,160,23,0.18);
  border-radius: var(--radius-md);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.75);
}
.dropdown-menu li a:hover { color: var(--gold); background: rgba(212,160,23,0.08); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.lang-btn {
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  background: transparent;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { background: var(--gold); color: var(--charcoal); }

/* ---- Mobile Menu Button ---- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Mobile Nav ---- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 360px;
  height: 100%;
  background: var(--charcoal);
  z-index: 2000;
  padding: 24px;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(212,160,23,0.15);
}
.mobile-nav.open { right: 0; box-shadow: -8px 0 48px rgba(0,0,0,0.5); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  padding: 4px 8px;
}
.mobile-nav-close:hover { color: var(--gold); }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-contact-bar { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.mobile-contact-bar a { border-bottom: none; font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.mobile-contact-bar a:hover { color: var(--gold); }

/* ---- Hero (with cover image) ---- */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  overflow: hidden;
  padding-top: 88px;
}
.hero-canvas { display: none; }
.hero-cover-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero-cover-overlay {
  position: absolute;
  right: 0;
  top: 0;
  width: 56%;
  height: 100%;
  background: linear-gradient(to right, var(--charcoal) 0%, var(--charcoal) 20%, rgba(43,43,43,0.92) 45%, rgba(43,43,43,0.4) 75%, rgba(43,43,43,0.1) 100%);
  z-index: 1;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(43,43,43,0.3) 0%, transparent 30%, transparent 70%, rgba(43,43,43,0.6) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 60px 24px;
}
.hero-content {
  max-width: 580px;
  padding-left: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.30);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
}
.hero h1 .highlight { color: var(--gold); }
.hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .number span { color: var(--white); }
.hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; letter-spacing: 0.05em; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ---- Fade In Animations ---- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; will-change: opacity, transform; }
.fade-in.visible { opacity: 1; transform: translateY(0); will-change: auto; }

/* ---- Country Cards ---- */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.country-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  cursor: pointer;
}
.country-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(212,160,23,0.15);
  transform: translateY(-4px);
}
.country-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 0;
}
.country-flag-img { border-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.15); }
.country-card-header h3 { font-size: 1.15rem; margin-bottom: 2px; color: var(--charcoal); }
.country-card-header p { font-size: 0.78rem; color: var(--grey-text); }
.country-card-body { padding: 16px 24px; flex: 1; }
.country-card-body p { font-size: 0.88rem; color: var(--grey-text); line-height: 1.6; }
.country-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag {
  padding: 4px 10px;
  background: var(--grey-light);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--grey-text);
  letter-spacing: 0.02em;
}
.tag-gold { background: rgba(212,160,23,0.12); color: var(--gold-dark); border: 1px solid rgba(212,160,23,0.25); }
.country-card-footer { padding: 16px 24px 24px; border-top: 1px solid var(--grey-mid); margin-top: 8px; }
.link { display: flex; align-items: center; gap: 6px; color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.arrow-icon { transition: transform 0.2s; }
.country-card:hover .arrow-icon { transform: translateX(4px); }

/* ---- Why Us ---- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-item { display: flex; gap: 16px; }
.why-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { font-size: 1rem; margin-bottom: 6px; color: var(--charcoal); }
.why-item p { font-size: 0.88rem; }
.why-visual { display: flex; flex-direction: column; gap: 16px; }
.stats-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 8px; font-weight: 500; }

/* ---- Process Steps ---- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.process-step:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.step-number {
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.process-step h4 { font-size: 1rem; margin-bottom: 12px; }
.process-step p { font-size: 0.88rem; }

/* ---- Service Cards ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--charcoal); }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-info .name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.author-info .country { font-size: 0.78rem; color: var(--grey-text); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--charcoal);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,160,23,0.18) 0%, transparent 65%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 40px; }

/* ---- Footer ---- */
.footer {
  background: #1E1E1E;
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 52px; width: auto; }
.footer-brand p { margin-top: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.footer-col h5 { color: var(--white); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ---- Floating CTA ---- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.floating-btn.whatsapp { background: #25D366; color: #fff; }
.floating-btn.whatsapp:hover { background: #20ba5a; transform: translateX(-4px); }
.floating-btn.consult { background: var(--gold); color: var(--charcoal); }
.floating-btn.consult:hover { background: var(--gold-dark); color: var(--white); transform: translateX(-4px); }
.btn-label { font-size: 0.82rem; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--charcoal);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212,160,23,0.10) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; }
/* Divider in page-hero is gold */
.page-hero .divider { background: var(--gold); margin-bottom: 16px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }

/* ---- Accordion ---- */
.accordion-item { border-bottom: 1px solid var(--grey-mid); }
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  transition: color 0.2s;
}
.accordion-header:hover { color: var(--gold); }
.accordion-header.open { color: var(--gold); }
.accordion-body { display: none; padding: 0 0 20px; }
.accordion-body.open { display: block; }
.accordion-arrow { transition: transform 0.3s; }
.accordion-header.open .accordion-arrow { transform: rotate(180deg); }

/* ---- Info Box ---- */
.info-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--charcoal);
}

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(212,160,23,0.10);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.9rem; margin-bottom: 4px; color: var(--charcoal); }
.contact-item p, .contact-item a { font-size: 0.88rem; color: var(--grey-text); }
.contact-item a:hover { color: var(--gold); }

/* ---- Form ---- */
.contact-form-wrap iframe { border-radius: var(--radius-lg); border: 1px solid var(--grey-mid); }

/* ---- Checklist ---- */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--grey-text);
}
.checklist li span:first-child { color: var(--gold); flex-shrink: 0; font-weight: 700; margin-top: 1px; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-cover-img { width: 100%; opacity: 0.25; }
  .hero-cover-overlay { width: 100%; background: rgba(43,43,43,0.75); }
  .hero-gradient { background: rgba(43,43,43,0.5); }
  .hero-canvas { display: none; }
  .hero .container { min-height: auto; padding: 40px 24px 60px; }
  .hero-stats { gap: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .country-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-btn .btn-label { display: none; }
  .stats-visual-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section-pad { padding: 56px 0; }
  .cta-banner { padding: 56px 0; }
}

/* ---- Compatibility: btn-outline-red = btn-outline-gold ---- */
.btn-outline-red {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-red:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* ---- Larger logo ---- */
.navbar-logo img { height: 52px !important; }

/* ---- Inline cta-banner (inside section, not full-width) ---- */
.cta-banner-inline {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner-inline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,160,23,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-inline > * { position: relative; z-index: 1; }
.cta-banner-inline h3 { color: var(--white); margin-bottom: 16px; }
.cta-banner-inline p { color: rgba(255,255,255,0.75); margin-bottom: 16px; font-size: 0.9rem; }

/* ---- Country Hero (big flag + dark layout) ---- */
.country-hero {
  background: var(--charcoal);
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.country-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.35;
  z-index: 0;
}
.country-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(43,43,43,0.97) 40%, rgba(43,43,43,0.75) 70%, rgba(43,43,43,0.5) 100%);
  z-index: 1;
}
.country-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 72px;
}
.country-hero-flag {
  width: 120px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
  margin-bottom: 24px;
  display: block;
}
.country-hero h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.8rem, 3.5vw, 3rem); }
.country-hero p { color: rgba(255,255,255,0.72); max-width: 600px; margin-bottom: 32px; }
.country-hero .breadcrumb { margin-bottom: 28px; }
