/* =============================================
   ABROAD CONSULTANCY · DESIGN SYSTEM v2.0
   Colors matched exactly from screenshot
   ============================================= */


/* --- COLOR TOKENS (matched from screenshot) ---
   Hero bg:       warm cream  #FAF0E6
   Services bg:   white       #FFFFFF
   Countries bg:  warm cream  #FAF0E6
   Why Us bg:     warm grey   #EEEBE6
   Reviews bg:    white       #FFFFFF
   Contact bg:    warm grey   #EEEBE6
   Footer bg:     burnt orange #C94A1A  (same as accent)
   CTA button:    burnt orange #C94A1A
   Eyebrow text:  burnt orange #C94A1A
   Headlines:     near black   #1A1A1A
   Body text:     dark grey    #444444
*/
:root {
  --accent:        #C94A1A;
  --accent-dk:     #B03F15;
  --accent-light:  #FDF0EA;

  --surface:       #FAF0E6;   /* hero, countries — warm cream */
  --surface-2:     #EEEBE6;   /* why us, contact — warm light grey */
  --white:         #FFFFFF;   /* services, reviews, cards */

  --ink:           #1A1A1A;   /* headlines */
  --ink-2:         #444444;   /* body text */
  --ink-3:         #666666;   /* muted text */
  --ink-4:         #767676;   /* labels, placeholders — min WCAG AA contrast */

  --gold:          #F5A623;   /* stars */
  --success:       #1A7A48;
  --success-bg:    #E6F4ED;

  --font-head:     'Manrope', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-pill:   100px;

  --shadow-sm:     0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:     0 4px 20px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:     0 12px 48px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.05);
  --shadow-accent: 0 4px 20px rgba(201,74,26,.30);

  --nav-h: 70px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-dk);
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15; color: var(--ink);
}
h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(24px, 3.5vw, 42px); font-weight: 700; letter-spacing: -.015em; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }
p  { color: var(--ink-2); line-height: 1.75; }
.body-sm { font-size: 13px; color: var(--ink-2); }
.label-xs {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-4);
}
.num-display {
  font-family: var(--font-head);
  font-weight: 800; font-variant-numeric: tabular-nums; line-height: 1;
}

/* --- LAYOUT --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
@media(max-width:860px){ .container { padding: 0 20px; } }
body { overflow-x: hidden; }
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: stretch; }
@media(max-width:960px){
  .container { padding: 0 24px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px){
  .container { padding: 0 16px; }
  section { padding: 56px 0; }
  .grid-3,.grid-4 { grid-template-columns: 1fr; }
}

/* --- NAV --- */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-links {
  display: flex; align-items: center; gap: 6px; flex: 1; justify-content: center;
}
.nav-links a {
  padding: 7px 14px; border-radius: 6px;
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-phone {
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  display: flex; flex-direction: column; align-items: center; gap: 2px; line-height: 1.3; white-space: nowrap;
}
.nav-phone span { font-size: 13px; font-weight: 600; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
@media(max-width:860px){
  .nav-links { display: none; }
  .nav-phone { display: none !important; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex !important; flex-direction: column; align-items: flex-start;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; padding: 12px 20px 20px;
    box-shadow: var(--shadow-md); gap: 2px;
  }
  .nav-links.open a { width: 100%; padding: 10px 12px; font-size: 15px; }
}
@media(max-width:960px){ .nav-inner { padding: 0 24px; } }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  transition: all .18s; cursor: pointer; border: 1.5px solid transparent;
  white-space: nowrap; line-height: 1; min-height: 44px;
}
.btn-primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-dk); border-color: var(--accent-dk);
  transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,74,26,.38);
}
.btn-ghost {
  background: transparent; color: var(--ink); border-color: rgba(0,0,0,.18);
}
.btn-ghost:hover { border-color: rgba(0,0,0,.35); background: var(--surface-2); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* --- HERO --- */
.hero { background: var(--surface); padding: 72px 0 80px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-dk);
  margin-bottom: 20px;
}
.hero-tag::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--accent); border-radius: 2px; flex-shrink: 0;
}
.hero h1 { color: var(--ink); margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-desc { font-size: 16px; color: var(--ink-2); margin-bottom: 28px; max-width: 440px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(0,0,0,.08); padding-top: 28px;
}
.hero-stat { flex: 1; padding-right: 24px; border-right: 1px solid rgba(0,0,0,.08); }
.hero-stat:last-child { padding-right: 0; border-right: none; padding-left: 24px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 4px;
}
.hero-stat-label { font-size: 11px; color: var(--ink-4); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

/* Hero image */
.hero-image-wrap { position: relative; }
.hero-img {
  width: 100%; border-radius: var(--radius-xl);
  aspect-ratio: 4/3; object-fit: cover; display: block;
  box-shadow: var(--shadow-lg);
}
.hero-img-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-xl);
  background: var(--surface-2); border: 1px solid rgba(0,0,0,.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-4); font-size: 13px;
}
.hero-float-card {
  position: absolute; bottom: -16px; left: -20px;
  background: #fff; border-radius: var(--radius-lg);
  padding: 16px 20px; box-shadow: var(--shadow-lg); min-width: 170px;
}
.hero-float-num {
  font-family: var(--font-head); font-size: 32px; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.hero-float-bar { height: 3px; background: var(--accent-light); border-radius: 2px; margin: 6px 0; width: 75%; }
.hero-float-sub { font-size: 11px; color: var(--ink-4); }

@media(max-width:860px){
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-img,.hero-img-placeholder { aspect-ratio: 16/9; border-radius: var(--radius-lg); }
  .hero-float-card { display: none; }
  .service-featured-row { flex-direction: column; gap: 12px; }
}
@media(max-width:480px){
  .hero-stats { flex-wrap: wrap; gap: 16px; padding-top: 20px; }
  .hero-stat { flex: 1 1 40%; padding: 0; border: none; }
  .hero-stat-num { font-size: 22px; }
}

/* --- SECTION HEADER --- */
.section-header { margin-bottom: 44px; }
.section-header.center { text-align: center; }
.section-header p { max-width: 520px; margin-top: 10px; }
.section-header.center p { margin: 10px auto 0; }

/* --- SERVICES (white bg) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
/* Featured row spans full width */
.service-featured-row {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px 28px; margin-bottom: 16px;
  border: 2px solid var(--accent);
  display: flex; align-items: center; gap: 24px;
}
.service-featured-row .service-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.service-featured-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.service-featured-row h3 { font-size: 20px; margin-bottom: 6px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px 20px; border: 1px solid rgba(0,0,0,.07);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.service-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.service-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; font-size: 18px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  margin-top: 10px; transition: gap .15s;
}
.service-link:hover { gap: 9px; }

/* --- COUNTRIES (warm cream bg) --- */
.region-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); margin: 36px 0 14px;
}
.region-label::before,.region-label::after { content:''; flex:1; height:1px; background:rgba(0,0,0,.1); }
.region-label:first-of-type { margin-top: 0; }
.countries-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px;
}
.country-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 14px 16px; border: 1px solid rgba(0,0,0,.07);
  transition: transform .15s, box-shadow .15s;
}
.country-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.08); border-bottom: 2px solid #C94A1A; }
.country-header { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.country-flag { width: 26px; height: 18px; border-radius: 3px; object-fit: cover; }
.country-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.country-link {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--ink-3); font-weight: 500;
  transition: color .12s; padding: 2px 0;
}
.country-link:hover { color: var(--accent); }
.country-docs-badge {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 7px; border-radius: var(--radius-pill); margin-left: auto;
}

/* --- WHY US (warm grey bg) --- */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-bottom: 48px;
}
.stats-row-item {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid rgba(0,0,0,.07);
  text-align: center;
}
.stats-row-item .num-display { font-size: 36px; color: var(--accent); margin-bottom: 4px; }
.stats-row-item .label-xs { margin-bottom: 4px; }
.stats-row-item p { font-size: 12px; color: var(--ink-4); margin: 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid rgba(0,0,0,.07);
  display: flex; align-items: flex-start; gap: 16px;
}
.why-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--accent-light); display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
@media(max-width:860px){
  .stats-row { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media(max-width:500px){ .stats-row { grid-template-columns: 1fr 1fr; } }

/* --- REVIEWS CAROUSEL --- */
.review-carousel {
  display: flex; align-items: center; gap: 12px; position: relative;
}
.rc-track-wrap { flex: 1; overflow: hidden; }
.rc-track {
  display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.rc-slide { min-width: 100%; box-sizing: border-box; padding: 0 4px; }
.rc-card {
  max-width: 680px; margin: 0 auto;
}
.rc-arrow {
  background: var(--surface-2); border: 1px solid rgba(0,0,0,.1);
  border-radius: 50%; width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.rc-arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.rc-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.rc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,.15); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 18px; margin: -18px;
  box-sizing: content-box;
}
.rc-dot.active { background: var(--accent); transform: scale(1.3); }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 32px; border: 1px solid rgba(0,0,0,.07);
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; }
.review-text {
  font-size: 14px; color: var(--ink-2); line-height: 1.8; flex: 1;
}
.review-author { font-size: 13px; font-weight: 600; color: var(--ink); }
.review-source { font-size: 11px; color: var(--ink-4); margin-top: 2px; }
@media(max-width:600px){
  .rc-arrow { width: 32px; height: 32px; font-size: 13px; }
  .review-card { padding: 20px; }
}
.review-total-bar {
  background: var(--surface-2); border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  border: 1px solid rgba(0,0,0,.07);
}
.review-total-left { display: flex; align-items: center; gap: 14px; }
.review-total-num { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--ink); }
.review-total-stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.review-total-sub { font-size: 12px; color: var(--ink-4); margin-top: 2px; }
@media(max-width:860px){ .reviews-grid { grid-template-columns: 1fr; } }

/* --- CONTACT (warm grey bg) --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.07);
}
.contact-info-item:first-child { border-top: 1px solid rgba(0,0,0,.07); }
.contact-info-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--accent-light); display: flex; align-items: center;
  justify-content: center; font-size: 15px;
}
.contact-info-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 3px; }
.contact-info-val { font-size: 14px; font-weight: 500; color: var(--ink); }
.contact-info-val a { color: var(--accent); }

/* Form */
.form-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,.05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group.full { grid-column: span 2; }
.form-label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3); }
.form-input {
  width: 100%; padding: 12px 14px;
  background: var(--surface); border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 14px; color: var(--ink);
  transition: border-color .15s, background .15s; outline: none;
}
.form-input::placeholder { color: var(--ink-4); }
.form-input:focus { border-color: var(--accent); background: #fff; }
select.form-input { appearance: none; cursor: pointer; }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.form-note { font-size: 12px; color: var(--ink-4); display: flex; align-items: center; gap: 5px; }
.form-divider {
  text-align: center; font-size: 11px; color: var(--ink-4); margin: 12px 0; position: relative;
}
.form-divider::before,.form-divider::after {
  content: ''; position: absolute; top: 50%; width: calc(50% - 18px); height: 1px; background: rgba(0,0,0,.08);
}
.form-divider::before { left:0; } .form-divider::after { right:0; }
.whatsapp-alt {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: var(--radius-md);
  background: #E6F4ED; color: #1A8A4A;
  font-size: 13px; font-weight: 600; transition: background .15s;
}
.whatsapp-alt:hover { background: #d4eddc; }
@media(max-width:860px){
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}

/* --- STEPS (on warm grey bg) --- */
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step-row { display: flex; align-items: flex-start; gap: 16px; }
.step-num-circle {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
}
.step-row h4 { font-size: 14px; margin-bottom: 2px; }
.step-row p { font-size: 13px; color: var(--ink-3); }

/* --- FOOTER (burnt orange — same as --accent) --- */
.footer { background: var(--accent); padding: 56px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-col-heading {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #ffffff; margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.9); transition: color .15s; }
.footer-col ul a:hover { color: #fff; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.9); line-height: 1.7; margin-top: 10px; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social-btn {
  width: 44px; height: 44px; border-radius: 7px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; transition: background .15s, color .15s;
}
.footer-social-btn:hover { background: rgba(255,255,255,.3); color: #fff; }
.footer-contact-row { font-size: 13px; color: rgba(255,255,255,.9); margin-top: 8px; }
.footer-contact-row a { color: rgba(255,255,255,.9); transition: color .15s; }
.footer-contact-row a:hover { color: #fff; }
.footer-bottom {
  padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.9); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.9); transition: color .15s; }
.footer-bottom-links a:hover { color: #ffffff; }
@media(max-width:860px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media(max-width:500px){ .footer-grid { grid-template-columns: 1fr; } }

/* --- MOBILE FIXES --- */
@media(max-width:600px){
  .services-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr !important; }
}
@media(max-width:860px){
  .form-content-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* --- FAQ ACCORDION --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.1); padding: 4px 0; }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; min-height: 44px;
  font-family: var(--font-head);
}
.faq-question:hover { color: var(--accent-dk); }
.faq-icon {
  font-size: 24px; font-weight: 300; color: var(--accent-dk);
  flex-shrink: 0; transition: transform 0.2s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 0 20px 0; color: var(--ink-2); font-size: 15px; line-height: 1.7; }
.faq-answer[hidden] { display: none; }

/* --- WHATSAPP FAB --- */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s; text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* --- MOBILE STICKY CTA BAR --- */
.mobile-cta-bar {
  display: none;
}
@media(max-width:860px){
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 300;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 -4px 16px rgba(0,0,0,.08);
    padding: 10px 16px;
    gap: 10px;
  }
  .mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 10px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
  }
  .mobile-cta-bar .cta-call {
    background: var(--accent);
    color: #fff;
  }
  .mobile-cta-bar .cta-wa {
    background: #25D366;
    color: #fff;
  }
  /* Push page content up so footer isn't hidden behind bar */
  body { padding-bottom: 70px; }
  /* Hide WhatsApp FAB on mobile — bar replaces it */
  .whatsapp-fab { display: none; }
}

/* --- UTILITIES --- */
.text-center { text-align: center; }
.bg-white    { background: var(--white); }
.bg-surface  { background: var(--surface); }
.bg-surface2 { background: var(--surface-2); }
.mb-8  { margin-bottom: 8px; }  .mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }
.mt-8  { margin-top: 8px; }     .mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }    .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.flex  { display: flex; }
.flex-center  { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }
.gap-8  { gap: 8px; }  .gap-12 { gap: 12px; }
.gap-16 { gap: 16px; } .gap-24 { gap: 24px; }

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; animation: fadeUp .5s ease forwards; animation-play-state: paused; }
.anim.d1 { animation-delay: .08s; } .anim.d2 { animation-delay: .16s; }
.anim.d3 { animation-delay: .24s; } .anim.d4 { animation-delay: .32s; }

/* Fix scroll position behind sticky nav for all anchor sections */
section[id] { scroll-margin-top: 70px; }

/* FAQ accordion */
details.faq-item summary { user-select: none; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item[open] summary span:last-child { transform: rotate(45deg); transition: transform .2s; }
details.faq-item summary span:last-child { transition: transform .2s; display: inline-block; }
details.faq-item[open] { border-color: var(--accent-light) !important; }
