/* =========================================================
   ICS — International Consulting Services
   Main Stylesheet
   ========================================================= */

:root {
  --navy: #071A49;
  --blue: #1046BD;
  --dark-blue: #082B87;
  --light-blue: #EDF5FF;
  --orange: #FF8A1F;
  --orange-dark: #E67510;
  --white: #FFFFFF;
  --text-dark: #16213A;
  --text-muted: #68758B;
  --border: #E3EAF5;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(7, 26, 73, 0.06);
  --shadow-md: 0 12px 30px rgba(7, 26, 73, 0.10);
  --shadow-lg: 0 20px 50px rgba(7, 26, 73, 0.14);

  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container-w: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); margin: 0; color: var(--navy); line-height: 1.2; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--blue); color: #fff; padding: 10px 16px; z-index: 999; }
.skip-link:focus { left: 10px; top: 10px; }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--dark-blue); box-shadow: var(--shadow-md); }
.btn-secondary { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-secondary:hover { background: var(--light-blue); }
.btn-cta { background: var(--orange); color: #fff; }
.btn-cta:hover { background: var(--orange-dark); box-shadow: 0 10px 24px rgba(255,138,31,.35); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ===== TOP UTILITY BAR ===== */
.topbar { background: var(--navy); color: #cdd8f2; font-size: 0.82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 24px; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 22px; }
.topbar-left a { display: inline-flex; align-items: center; gap: 6px; color: #cdd8f2; }
.topbar-left a:hover { color: var(--orange); }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.follow-label { opacity: .8; margin-right: 4px; }
.topbar-right a { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.1); display: inline-flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; }
.topbar-right a:hover { background: var(--orange); color: #fff; }
.icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== HEADER / NAV ===== */
.site-header { background: #fff; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 200; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { background: var(--blue); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1rem; width: 46px; height: 46px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; line-height: 1.25; color: var(--navy); }
.logo-light .logo-text { color: #fff; }

.main-nav > ul { display: flex; align-items: center; gap: 30px; }
.main-nav > ul > li > a, .mega-trigger { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); padding: 8px 2px; position: relative; background: none; border: none; display: inline-flex; align-items: center; gap: 4px; }
.main-nav > ul > li > a::after, .mega-trigger::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; background: var(--orange);
  border-radius: 2px; transform: scaleX(0); transition: transform .2s ease;
}
.main-nav > ul > li > a:hover, .mega-trigger:hover { color: var(--blue); }
.main-nav > ul > li > a.active, .has-mega.active .mega-trigger { color: var(--blue); }
.main-nav > ul > li > a.active::after, .has-mega.active .mega-trigger::after { transform: scaleX(1); }
.chev { width: 14px; height: 14px; transition: transform .2s ease; }
.has-mega:hover .chev { transform: rotate(180deg); }

.has-mega { position: static; }
.mega-menu {
  position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  max-height: 74vh; overflow-y: auto; z-index: 100;
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-grid { max-width: var(--container-w); margin: 0 auto; padding: 32px 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px; }
.mega-col { border-left: 3px solid var(--light-blue); padding-left: 16px; }
.mega-country { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 0.98rem; margin-bottom: 10px; display: inline-block; }
.mega-country:hover { color: var(--blue); }
.mega-col ul li { margin-bottom: 6px; }
.mega-col ul li a { font-size: 0.85rem; color: var(--text-muted); }
.mega-col ul li a:hover { color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(7,26,73,.45); opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 290; }
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav {
  position: fixed; top: 0; right: 0; width: min(340px, 86vw); height: 100%; background: #fff; z-index: 300;
  transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; padding: 90px 22px 40px; box-shadow: var(--shadow-lg);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav > ul > li { border-bottom: 1px solid var(--border); }
.mobile-nav > ul > li > a { display: block; padding: 16px 4px; font-weight: 600; }
.mobile-nav .btn { margin: 16px 0; }
.mobile-accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; background: none; border: none; padding: 16px 4px; font-weight: 600; font-size: 1rem; color: var(--text-dark); }
.mobile-accordion-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.mobile-accordion.open .mobile-accordion-panel { max-height: 3000px; }
.mobile-accordion.open .chev { transform: rotate(180deg); }
.mobile-country-block { padding: 6px 0 14px 10px; }
.mobile-country-link { display: block; font-weight: 700; color: var(--navy); padding: 8px 0; }
.mobile-visa-link { display: block; padding: 6px 0 6px 12px; font-size: 0.88rem; color: var(--text-muted); border-left: 2px solid var(--light-blue); }

/* ===== BREADCRUMB ===== */
.breadcrumb-strip { background: var(--light-blue); padding: 14px 0; }
.breadcrumb-strip ol { display: flex; gap: 8px; flex-wrap: wrap; font-size: 0.85rem; }
.breadcrumb-strip li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--text-muted); }
.breadcrumb-strip a { color: var(--blue); font-weight: 500; }
.breadcrumb-strip li[aria-current] { color: var(--text-muted); }

/* ===== SECTION HEADINGS ===== */
.section { padding: 88px 0; }
.section-tight { padding: 60px 0; }
.section-alt { background: var(--light-blue); }
.section-navy { background: var(--navy); color: #fff; }
.eyebrow { display: inline-block; color: var(--blue); font-weight: 700; font-size: 0.8rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.eyebrow::before { content: '◆ '; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 1.02rem; }
.text-accent { color: var(--blue); }

/* ===== HERO ===== */
.hero { background: var(--light-blue); padding: 60px 0 0; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; padding-bottom: 60px; }
.hero-heading { font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: 800; margin-bottom: 20px; }
.hero-desc { color: var(--text-muted); font-size: 1.08rem; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo-wrap { position: relative; width: 100%; max-width: 440px; aspect-ratio: 1/1.05; border-radius: 50% 50% 46% 46% / 55% 55% 45% 45%; background: linear-gradient(160deg, var(--blue), var(--dark-blue)); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo-wrap .placeholder-figure { width: 100%; height: 100%; }
.hero-dots { position: absolute; top: -10px; left: -10px; width: 70px; height: 70px; background-image: radial-gradient(var(--blue) 2px, transparent 2.5px); background-size: 12px 12px; opacity: .5; }
.floating-card { position: absolute; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px; animation: floaty 4.5s ease-in-out infinite; }
.floating-card .fc-num { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--navy); }
.floating-card .fc-label { font-size: 0.75rem; color: var(--text-muted); }
.fc-1 { top: 8%; right: -4%; animation-delay: 0s; }
.fc-2 { bottom: 12%; left: -6%; animation-delay: 1.2s; }
.fc-3 { bottom: -4%; right: 6%; animation-delay: 2.1s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.placeholder-figure {
  background: linear-gradient(135deg, #2f5fd8 0%, var(--dark-blue) 100%);
  position: relative; display: flex; align-items: flex-end; justify-content: center;
}
.placeholder-figure svg { width: 72%; height: auto; }

/* ===== STAT CARDS (inline) ===== */
.stats-inline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 640px; }
.stat-box { background: #fff; border-radius: var(--radius-md); padding: 18px; box-shadow: var(--shadow-sm); text-align: center; }
.stat-box .num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--blue); }
.stat-box .lbl { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ===== CARDS GRID (services / countries) ===== */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.country-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.country-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.country-card .cc-media { height: 160px; background: linear-gradient(135deg, var(--blue), var(--dark-blue)); position: relative; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.country-card .cc-tag { position: absolute; top: 14px; left: 14px; background: var(--orange); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: .03em; }
.country-card .cc-body { padding: 22px; }
.country-card .cc-country { color: var(--blue); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.country-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.country-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.cc-link { color: var(--blue); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.country-card:hover .cc-link { color: var(--orange); }

.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-icon { width: 54px; height: 54px; border-radius: var(--radius-sm); background: var(--light-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--blue); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.06rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }

/* ===== WHY CHOOSE / TWO COLUMN ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.feature-item { display: flex; gap: 14px; }
.feature-item .fi-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--light-blue); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-item .fi-icon svg { width: 20px; height: 20px; }
.feature-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.85rem; color: var(--text-muted); }

.why-visual { position: relative; }
.why-visual .placeholder-figure { border-radius: var(--radius-lg); aspect-ratio: 4/5; }
.why-visual .floating-card { position: absolute; bottom: -20px; right: -20px; }

/* ===== STATS BAND ===== */
.stats-band { background: linear-gradient(120deg, var(--navy), var(--dark-blue)); border-radius: var(--radius-lg); padding: 46px 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0 auto; }
.stats-band .stat { text-align: center; color: #fff; }
.stats-band .stat .num { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; }
.stats-band .stat .lbl { font-size: 0.85rem; opacity: .85; margin-top: 6px; }

/* ===== EXPERTS / TEAM ===== */
.team-card { text-align: center; }
.team-photo { aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; }
.team-card h4 { font-size: 1rem; margin-bottom: 2px; }
.team-card .role { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; }
.team-social { display: flex; justify-content: center; gap: 8px; }
.team-social a { width: 30px; height: 30px; border-radius: 50%; background: var(--light-blue); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; }
.team-social a:hover { background: var(--blue); color: #fff; }

/* ===== EVENTS ===== */
.event-row { display: flex; gap: 16px; align-items: center; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 14px; transition: box-shadow .2s ease; }
.event-row:hover { box-shadow: var(--shadow-sm); }
.event-date { background: var(--light-blue); color: var(--blue); border-radius: var(--radius-sm); text-align: center; padding: 8px 14px; flex-shrink: 0; font-family: var(--font-display); }
.event-date .d { font-weight: 800; font-size: 1.3rem; line-height: 1; }
.event-date .m { font-size: 0.7rem; text-transform: uppercase; }
.event-row h4 { font-size: 0.96rem; margin-bottom: 4px; }
.event-row .meta { font-size: 0.8rem; color: var(--text-muted); }
.event-thumb { width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--blue); flex-shrink: 0; margin-left: auto; }

/* ===== TESTIMONIALS ===== */
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.testimonial-quote { color: var(--blue); font-size: 2rem; font-family: var(--font-display); line-height: 1; }
.testimonial-card p.body { color: var(--text-dark); margin: 14px 0 20px; font-size: 0.95rem; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--light-blue); color: var(--blue); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.testimonial-person h5 { font-size: 0.92rem; margin-bottom: 2px; }
.testimonial-person span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== BLOG ===== */
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease; }
.blog-card:hover { transform: translateY(-6px); }
.blog-card .bc-media { height: 170px; background: linear-gradient(135deg, var(--blue), var(--navy)); position: relative; }
.blog-card .bc-tag { position: absolute; top: 12px; left: 12px; background: var(--orange); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill); }
.blog-card .bc-body { padding: 20px; }
.blog-card .bc-meta { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.blog-card a.read-more { color: var(--blue); font-weight: 700; font-size: 0.86rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: #fff; border: none; padding: 18px 22px; font-weight: 700; font-size: 0.98rem; display: flex; justify-content: space-between; align-items: center; color: var(--navy); }
.faq-question .plus { font-size: 1.3rem; color: var(--blue); transition: transform .25s ease; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-question .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; background: var(--light-blue); }
.faq-answer p { padding: 0 22px 18px; color: var(--text-muted); font-size: 0.92rem; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ===== LEAD FORM ===== */
.lead-form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 32px; border: 1px solid var(--border); }
.lead-form-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.lead-form-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 22px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; font-size: 0.86rem; margin-bottom: 6px; }
.form-row .req { color: var(--orange); }
.form-row .optional { color: var(--text-muted); font-weight: 400; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.92rem; background: #fbfcff; transition: border-color .2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.lead-form-disclaimer { font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

.lead-cta-section { background: linear-gradient(120deg, var(--blue), var(--dark-blue)); border-radius: var(--radius-lg); padding: 50px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; color: #fff; }
.lead-cta-section h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.lead-cta-section p { opacity: .9; }

/* ===== CONTACT STRIP ===== */
.contact-strip { background: var(--light-blue); padding: 30px 0; }
.contact-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.strip-item { display: flex; align-items: center; gap: 12px; }
.strip-item .icon { width: 22px; height: 22px; color: var(--blue); }
.strip-item span { display: block; font-size: 0.76rem; color: var(--text-muted); }
.strip-item strong { font-size: 0.94rem; color: var(--navy); }
.strip-whatsapp:hover strong { color: #25D366; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: #b9c5e0; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 50px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 0.86rem; color: #b9c5e0; }
.footer-col a:hover { color: var(--orange); }
.footer-brand p { font-size: 0.86rem; margin: 16px 0 20px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; }
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; font-size: 0.82rem; flex-wrap: wrap; gap: 10px; }

.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 250; }
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== GENERIC PAGE (country / visa / calculator) ===== */
.page-hero { background: var(--light-blue); padding: 56px 0; }
.page-hero .flag { font-size: 3rem; }
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 12px 0 14px; }
.page-hero p { color: var(--text-muted); max-width: 680px; font-size: 1.02rem; }

.content-two-col { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; }
.info-block { margin-bottom: 40px; }
.info-block h2 { font-size: 1.4rem; margin-bottom: 16px; }
.check-list li { display: flex; gap: 12px; margin-bottom: 12px; font-size: 0.94rem; color: var(--text-dark); }
.check-list li::before { content: '✓'; color: var(--blue); font-weight: 800; flex-shrink: 0; background: var(--light-blue); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; }
.process-steps { counter-reset: step; }
.process-steps li { position: relative; padding-left: 44px; margin-bottom: 18px; font-size: 0.94rem; }
.process-steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: -2px; width: 30px; height: 30px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.82rem; font-family: var(--font-display); }
.doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.doc-chip { background: var(--light-blue); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.86rem; display: flex; align-items: center; gap: 8px; }
.doc-chip::before { content: '📄'; }
.visa-subgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.visa-sublink { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; transition: box-shadow .2s ease, transform .2s ease; }
.visa-sublink:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue); }
.visa-sublink h4 { font-size: 0.96rem; margin-bottom: 6px; color: var(--navy); }
.visa-sublink p { font-size: 0.82rem; color: var(--text-muted); }
.sticky-sidebar { position: sticky; top: 100px; }
.disclaimer-box { background: #FFF6EC; border: 1px solid #FFDCAF; border-radius: var(--radius-md); padding: 18px 20px; font-size: 0.85rem; color: #8a5a1a; margin-top: 20px; }
.disclaimer-box strong { display: block; margin-bottom: 4px; color: #7a4d15; }

/* ===== CALCULATOR ===== */
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.calc-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.calc-form h3 { font-size: 1.1rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.calc-result { position: sticky; top: 100px; background: linear-gradient(150deg, var(--blue), var(--navy)); border-radius: var(--radius-lg); padding: 36px; color: #fff; text-align: center; box-shadow: var(--shadow-lg); }
.calc-result .label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: .06em; opacity: .8; }
.calc-result .score { font-family: var(--font-display); font-weight: 800; font-size: 4rem; margin: 10px 0; transition: all .3s ease; }
.calc-breakdown { text-align: left; margin-top: 24px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 20px; }
.calc-breakdown-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.88rem; border-bottom: 1px dashed rgba(255,255,255,.15); }
.calc-breakdown-row strong { font-family: var(--font-display); }
.calc-verdict { margin-top: 20px; padding: 14px; border-radius: var(--radius-sm); font-weight: 700; background: rgba(255,255,255,.14); }
.progress-track { width: 100%; height: 8px; background: rgba(255,255,255,.2); border-radius: var(--radius-pill); overflow: hidden; margin-top: 18px; }
.progress-fill { height: 100%; background: var(--orange); width: 0%; transition: width .5s ease; }

/* ===== MISC PAGE SECTIONS ===== */
.value-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.value-card { text-align: center; padding: 22px 12px; }
.value-card .vi { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; background: var(--light-blue); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.value-card h4 { font-size: 0.9rem; }

.step-card-num { counter-reset: none; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ===== THANK YOU PAGE ===== */
.thankyou-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 0; }
.thankyou-card { text-align: center; max-width: 480px; }
.thankyou-check { width: 84px; height: 84px; border-radius: 50%; background: var(--light-blue); color: var(--blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 2.4rem; }
.thankyou-card h1 { font-size: 1.8rem; margin-bottom: 12px; }
.thankyou-card p { color: var(--text-muted); margin-bottom: 30px; }
.thankyou-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-result { position: static; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto 20px; }
  .two-col, .content-two-col { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .contact-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .lead-cta-section { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .btn-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 720px) {
  .cards-grid, .cards-grid.cols-3, .cards-grid.cols-2 { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .doc-grid, .visa-subgrid, .calc-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .topbar-left a span.full { display: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 30px 18px; }
  .stats-inline { grid-template-columns: repeat(3, 1fr); }
  .hero-actions .btn { width: 100%; }
  .contact-strip-inner { grid-template-columns: 1fr; }
  .lead-form-card { padding: 22px; }
  .topbar-inner { font-size: 0.72rem; }
}
