/* ================================================
   NEW LIFE EUROPE — Complete Design System
   Phase 1: Replit Static Site
   Paste this into style.css in your Replit project
   ================================================ */

/* --- CSS Custom Properties (Brand Tokens) --- */
:root {
  --blue:        #1E20A5;
  --blue-dark:   #14168a;
  --blue-light:  #eef0fb;
  --green:       #7BC64A;
  --green-dark:  #5a9e30;
  --green-light: #edf7e4;
  --magenta:     #C7287A;
  --magenta-light: #fce8f3;
  --white:       #ffffff;
  --off-white:   #f7f8ff;
  --text-dark:   #14142a;
  --text-mid:    #46466a;
  --text-light:  #8888aa;
  --border:      #e0e2f0;
  --shadow-sm:   0 2px 8px rgba(30,32,165,0.07);
  --shadow-md:   0 6px 24px rgba(30,32,165,0.11);
  --shadow-lg:   0 12px 48px rgba(30,32,165,0.15);
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  28px;
  --r-pill:100px;
  --nav-h: 68px;
  --ease:  all 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Typography Scale --- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.22;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-mid); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.lead { font-size: 1.1rem; color: var(--text-mid); line-height: 1.75; }

/* --- Layout --- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }

section { padding: 5.5rem 0; }
.section-head { margin-bottom: 3.5rem; }
.section-head p { max-width: 580px; margin: 0.75rem auto 0; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.75rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: var(--nav-h);
}
.nav-logo {
  height: 60px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}

.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--ease);
}
.nav-menu a:hover { color: var(--blue); }

.btn-nav {
  background: var(--green);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--r-pill);
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: var(--ease) !important;
}
.btn-nav:hover { background: var(--green-dark) !important; transform: translateY(-1px); }

/* --- Nav Dropdown (Visas) --- */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-btn {
  background: none; border: none; cursor: pointer;
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  display: flex; align-items: center; gap: 4px;
  padding: 0; font-family: inherit; transition: var(--ease);
}
.nav-dropdown-btn:hover { color: var(--blue); }
.nav-arrow { font-size: 9px; transition: transform 0.2s ease; display: inline-block; }
.nav-dropdown.is-open .nav-arrow { transform: rotate(180deg); }
.nav-dropdown-panel {
  display: none; position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: white; border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 0 0 1px var(--border);
  padding: 6px 0; min-width: 210px; z-index: 200;
}
.nav-dropdown.is-open .nav-dropdown-panel { display: block; }
.nav-dropdown-panel a {
  display: block; padding: 10px 18px;
  font-size: 13.5px; font-weight: 500; color: var(--text);
  transition: var(--ease); white-space: nowrap;
}
.nav-dropdown-panel a:hover { color: var(--blue); background: #f5f7fa; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--ease);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,198,74,0.32); }

.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,32,165,0.28); }

.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }

.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 17px 38px; font-size: 16px; }

/* --- WhatsApp Button --- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: var(--ease);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.32); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.42);
  transition: var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  background: linear-gradient(140deg, #0c0e6b 0%, var(--blue) 55%, #2b3fcc 100%);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 40%, rgba(123,198,74,0.08) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(199,40,122,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; padding: 4rem 0; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123,198,74,0.14);
  border: 1px solid rgba(123,198,74,0.28);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 1.75rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero .lead { color: rgba(255,255,255,0.80); max-width: 600px; margin-bottom: 2.5rem; font-size: 1.12rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.trust-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.68); }
.trust-item .tick { color: var(--green); font-size: 15px; }

/* --- Audience Cards (homepage) --- */
.audience-section { background: var(--off-white); }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.aud-card {
  display: block;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 2rem 1.75rem;
  border: 2px solid transparent;
  transition: var(--ease);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.aud-card:hover { border-color: var(--green); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.aud-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.aud-icon.i-blue    { background: var(--blue-light); }
.aud-icon.i-green   { background: var(--green-light); }
.aud-icon.i-magenta { background: var(--magenta-light); }
.aud-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.aud-tag {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  background: var(--blue-light); color: var(--blue);
}
.aud-tag.t-green { background: var(--green-light); color: var(--green-dark); }
.aud-tag.t-magenta { background: var(--magenta-light); color: var(--magenta); }
.aud-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.aud-card p { font-size: 14px; margin-bottom: 1.25rem; line-height: 1.65; }
.aud-arrow { font-size: 13px; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 6px; transition: var(--ease); }
.aud-card:hover .aud-arrow { color: var(--green-dark); gap: 10px; }

/* --- About Teaser --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.25rem; }
.stat-box { background: var(--off-white); border-radius: var(--r-md); padding: 1.25rem; text-align: center; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-lbl { font-size: 12px; color: var(--text-light); margin-top: 5px; line-height: 1.35; }
.about-card {
  background: linear-gradient(145deg, #0d0f72, var(--blue));
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: '✈';
  position: absolute;
  font-size: 140px;
  right: -24px; bottom: -24px;
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}
.about-card h3 { color: white; margin-bottom: 1rem; font-size: 1.35rem; }
.about-card > p { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.7; }
.reloc-list { display: flex; flex-direction: column; gap: 10px; margin-top: 1.75rem; }
.reloc-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 12px 14px;
}
.reloc-item .flag { font-size: 22px; flex-shrink: 0; }
.reloc-item .detail strong { display: block; font-size: 13px; color: white; }
.reloc-item .detail span { font-size: 12px; color: rgba(255,255,255,0.65); }

/* --- How It Works --- */
.how-section { background: var(--off-white); }
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.step-box { text-align: center; }
.step-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-box h4 { margin-bottom: 0.6rem; }
.step-box p { font-size: 14px; }

/* --- Destinations --- */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.dest-card {
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  color: white;
  display: block;
  text-decoration: none;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  opacity: 0;
  transition: var(--ease);
}
.dest-card:hover::after { opacity: 1; }
.dc-1 { background: linear-gradient(135deg, #0c5b44, #1a9a72); }
.dc-2 { background: linear-gradient(135deg, #7a1050, var(--magenta)); }
.dc-3 { background: linear-gradient(135deg, #0c0e6b, #2030cc); }
.dc-4 { background: linear-gradient(135deg, #6b4200, #c07820); }
.dc-5 { background: linear-gradient(135deg, #104060, #1868b0); }
.dc-6 { background: linear-gradient(135deg, #3b0a6b, #7c2ccc); }
.dc-7 { background: linear-gradient(135deg, #0a5c7a, #0fa8cc); }
.dest-card h4 { color: white; margin-bottom: 3px; font-size: 1.1rem; }
.dest-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.dest-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.dest-tag { font-size: 10px; font-weight: 600; background: rgba(255,255,255,0.16); color: white; padding: 3px 9px; border-radius: 20px; }

/* --- CTA Band --- */
.cta-band {
  background: linear-gradient(135deg, #0c0e6b 0%, var(--blue) 100%);
  text-align: center;
  padding: 5.5rem 0;
}
.cta-band h2 { color: white; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 540px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
footer {
  background: #0a0b22;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2.5rem;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem; }
.footer-brand-name { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800; color: white; display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-location { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 0.5rem; line-height: 1.6; }
.footer-contact-line { margin-top: 0.35rem; }
.footer-contact-line a { font-size: 13px; color: rgba(255,255,255,0.55); transition: var(--ease); }
.footer-contact-line a:hover { color: rgba(255,255,255,0.85); }
.footer-col h5 { font-family: 'Montserrat', sans-serif; color: white; font-size: 13px; font-weight: 700; margin-bottom: 1rem; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.55); transition: var(--ease); }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.footer-copy { font-size: 12px; }
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.35); max-width: 520px; line-height: 1.6; }

/* ─── Cookie Consent Banner ──────────────────────────────────────── */
#nle-consent {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 2px solid var(--border);
  box-shadow: 0 -6px 32px rgba(0,0,0,0.10);
  z-index: 9000;
  max-height: 85vh;
  overflow-y: auto;
}
.cc-inner { max-width: 960px; margin: 0 auto; padding: 1.5rem 2rem; }
.cc-top { display: flex; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.cc-text { font-size: 13.5px; color: var(--text); line-height: 1.65; flex: 1 1 300px; margin: 0; }
.cc-policy-link { color: var(--blue); }
.cc-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; flex-shrink: 0; align-items: center; }
.cc-btn {
  padding: 10px 20px; border-radius: var(--r-pill); font-size: 13px;
  font-weight: 700; cursor: pointer; border: none; font-family: inherit;
  white-space: nowrap; transition: var(--ease);
}
.cc-btn-primary  { background: var(--green); color: #fff; }
.cc-btn-primary:hover  { background: var(--green-dark); }
.cc-btn-secondary { background: transparent; border: 2px solid #d0d5dd; color: var(--text); }
.cc-btn-secondary:hover { border-color: var(--text-mid); }
.cc-btn-ghost { background: transparent; color: var(--blue); font-weight: 600; font-size: 13px; padding: 10px 6px; }
.cc-btn-ghost:hover { text-decoration: underline; }
/* Preferences panel */
.cc-prefs-panel { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1.25rem; }
.cc-pref-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid #f0f2f5;
}
.cc-pref-row:last-of-type { border-bottom: none; }
.cc-pref-text { flex: 1; }
.cc-pref-text strong { font-size: 14px; color: var(--text-dark); }
.cc-pref-text p { font-size: 12.5px; color: var(--text-mid); margin: 0.3rem 0 0; line-height: 1.55; }
.cc-always-on {
  display: inline-block; font-size: 11px; font-weight: 700;
  color: var(--green-dark); background: var(--green-light);
  padding: 2px 9px; border-radius: 99px; margin-left: 4px;
}
/* Toggle */
.cc-toggle { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; margin-top: 2px; }
.cc-toggle input { opacity: 0; width: 0; height: 0; }
.cc-slider {
  position: absolute; inset: 0; background: #ccc;
  border-radius: 26px; cursor: pointer; transition: 0.2s;
}
.cc-slider:before {
  content: ''; position: absolute;
  height: 20px; width: 20px; left: 3px; bottom: 3px;
  background: white; border-radius: 50%; transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cc-toggle input:checked + .cc-slider { background: var(--green); }
.cc-toggle input:checked + .cc-slider:before { transform: translateX(20px); }
@media (max-width: 640px) {
  .cc-inner { padding: 1.25rem 1rem; }
  .cc-top { flex-direction: column; gap: 1rem; }
  .cc-actions { width: 100%; }
  .cc-btn { flex: 1 1 auto; text-align: center; }
  .cc-pref-row { flex-direction: column; gap: 0.75rem; }
}

/* ─── Calendly consent gate on book.html ─────────────────────────── */
.nle-calendly-gate {
  background: var(--off-white); border: 2px dashed #d0d5dd;
  border-radius: var(--r-lg); padding: 3rem 2rem; text-align: center;
}
.nle-calendly-gate .gate-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.nle-calendly-gate h3 { margin-bottom: 0.5rem; }
.nle-calendly-gate p { font-size: 14px; color: var(--text-mid); max-width: 460px; margin: 0 auto 1.5rem; line-height: 1.6; }
.nle-calendly-embed { display: none; }

/* ─── Privacy Policy page ────────────────────────────────────────── */
.privacy-section { margin-bottom: 2.75rem; }
.privacy-section h2 {
  font-size: 1.2rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.privacy-section a { color: var(--blue); }
.privacy-section a:hover { text-decoration: underline; }
.privacy-item { margin-bottom: 1.25rem; }
.privacy-item strong { color: var(--text-dark); }
.privacy-item p { font-size: 14px; color: var(--text-mid); margin-top: 0.3rem; line-height: 1.65; }
.privacy-list { list-style: none; padding: 0; margin: 1rem 0; }
.privacy-list li { padding: 0.6rem 0 0.6rem 1.5rem; position: relative; font-size: 14px; border-bottom: 1px solid #f0f2f5; }
.privacy-list li:last-child { border-bottom: none; }
.privacy-list li::before { content: '→'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* --- Inner Page Hero --- */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4.5rem;
  background: linear-gradient(140deg, #0c0e6b 0%, var(--blue) 100%);
}
.page-hero .eyebrow { color: var(--green); }
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 580px; font-size: 1.1rem; }

/* --- Generic content card --- */
.content-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.content-card h3 { margin-bottom: 0.75rem; }
.content-card p { font-size: 14px; }

/* --- Checklist --- */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; }
.check-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--green-light); color: var(--green-dark); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.check-item p { font-size: 14px; }

/* --- Language Picker --- */
.lang-picker {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}
.lang-btn:hover { border-color: var(--blue); background: #f0f4ff; }
.lang-panel {
  display: none !important;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 160px;
  z-index: 2000;
  padding: 6px 0;
  overflow: hidden;
}
.lp-open .lang-panel { display: block !important; }
.lang-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text-dark);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s;
  font-family: 'Inter', sans-serif;
}
.lang-opt:hover { background: #f5f7fa; color: var(--blue); }
.lang-opt.lang-active { color: var(--blue); font-weight: 700; background: #f0f4ff; }

/* Suppress the Google Translate toolbar that appears at top of page */
.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { display: none !important; }

/* Mobile: lang picker stays visible alongside hamburger */
@media (max-width: 640px) {
  .lang-picker { margin-left: 0.5rem; }
  .lang-btn { padding: 4px 8px; font-size: 11px; }
  .lang-panel { right: 0; min-width: 150px; }
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); font-size: 15px; }
  .nav-menu a:last-child { border-bottom: none; }
  .hamburger { display: flex; }
  /* Visas dropdown on mobile: flatten into nav list */
  .nav-dropdown { width: 100%; flex-direction: column; align-items: flex-start; }
  .nav-dropdown-btn { display: none; }
  .nav-dropdown-panel {
    display: block !important; position: static; transform: none;
    box-shadow: none; background: none; padding: 0; min-width: 0; width: 100%;
  }
  .nav-dropdown-panel a {
    padding: 12px 0; width: 100%; font-size: 15px;
    border-bottom: 1px solid var(--border); color: var(--text-mid);
    background: none;
  }
  .hero-inner { padding: 3rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-row { gap: 1rem; }
  section { padding: 3.5rem 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn, .cta-actions .btn-whatsapp { width: 100%; justify-content: center; max-width: 320px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
