/* ═══════════════════════════════════════════════════════
   ADAM VISA SERVICES — styles.css
   Palette: Deep Navy #0A1628, Gold #C9A84C, White #FFFFFF
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0A1628;
  --navy2:   #0F1F3D;
  --navy3:   #162847;
  --gold:    #C9A84C;
  --gold2:   #E8C96A;
  --gold3:   #F5E0A0;
  --white:   #FFFFFF;
  --off:     #F8F6F0;
  --gray:    #6B7280;
  --gray2:   #9CA3AF;
  --border:  rgba(201,168,76,0.18);
  --shadow:  0 4px 24px rgba(10,22,40,0.12);
  --shadow2: 0 8px 48px rgba(10,22,40,0.18);
  --radius:  14px;
  --radius2: 22px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-pulse {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.logo-sub { font-size: 0.65rem; font-weight: 500; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin-left: auto;
}
.nav-link {
  display: block; padding: 8px 14px;
  color: rgba(255,255,255,0.82); font-size: 0.88rem; font-weight: 500;
  text-decoration: none; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--gold); background: rgba(201,168,76,0.1); }
.nav-cta {
  margin-left: 8px; padding: 10px 22px;
  background: var(--gold); color: var(--navy);
  font-size: 0.88rem; font-weight: 700;
  border-radius: 50px; text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  background: #25D366; color: #fff;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-whatsapp svg { width: 20px; height: 20px; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* ── SECTION COMMON ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; padding: 6px 18px;
  background: rgba(201,168,76,0.12); color: var(--gold);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 50px; border: 1px solid rgba(201,168,76,0.25);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc { font-size: 1.05rem; color: var(--gray); max-width: 580px; margin: 0 auto; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #060e1c 0%, #0A1628 50%, #0d1f3c 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(201,168,76,1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(201,168,76,0.08); top: -100px; right: -100px; animation: float1 8s ease-in-out infinite; }
.hero-orb-2 { width: 350px; height: 350px; background: rgba(22,40,71,0.6); bottom: -50px; left: -80px; animation: float2 10s ease-in-out infinite; }
.hero-orb-3 { width: 250px; height: 250px; background: rgba(201,168,76,0.05); top: 40%; left: 30%; animation: float1 12s ease-in-out infinite reverse; }
@keyframes float1 { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
@keyframes float2 { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(20px) scale(0.95); } }

.hero-content {
  position: relative; z-index: 1;
  max-width: 780px; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-family: var(--font-head); font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800; color: var(--white); line-height: 1.12;
  margin-bottom: 24px; letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,0.72);
  max-width: 600px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 50px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75); font-size: 0.82rem; font-weight: 500;
}
.trust-badge svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.4; } }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy); padding: 48px 0;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 48px; text-align: center;
}
.stat-number {
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.stat-suffix { font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 6px; letter-spacing: 0.04em; }
.stat-divider { width: 1px; height: 60px; background: rgba(201,168,76,0.2); }

/* ── SERVICES ── */
.services { padding: 100px 0; background: var(--off); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius2);
  padding: 36px 28px; border: 1px solid rgba(10,22,40,0.07);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); border-color: rgba(201,168,76,0.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--gold);
  transition: background var(--transition);
}
.service-icon-wrap svg { width: 26px; height: 26px; }
.service-card:hover .service-icon-wrap { background: rgba(201,168,76,0.18); }
.service-card h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }
.service-arrow {
  position: absolute; bottom: 24px; right: 24px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.service-arrow svg { width: 16px; height: 16px; }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(3px); }

/* ── COUNTRIES ── */
.countries { padding: 100px 0; background: var(--white); }
.countries-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px;
}
.country-card {
  background: var(--white); border-radius: var(--radius2);
  padding: 28px 24px; border: 1px solid rgba(10,22,40,0.08);
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); border-color: rgba(201,168,76,0.25); }
.country-flag { font-size: 2.4rem; line-height: 1; flex-shrink: 0; }
.country-info h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.country-info p { font-size: 0.8rem; color: var(--gray); }
.country-tag {
  position: absolute; top: 12px; right: 12px;
  padding: 3px 10px; border-radius: 50px;
  background: rgba(201,168,76,0.1); color: var(--gold);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.2);
}

/* ── WHY US ── */
.why-us { padding: 100px 0; background: var(--navy); }
.why-us-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center;
}
.why-us-left .section-tag { background: rgba(201,168,76,0.15); }
.why-us-left .section-title { color: var(--white); }
.why-us-desc { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.75; margin-bottom: 32px; }
.why-us-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.why-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius); padding: 22px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.25); }
.why-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.why-icon svg { width: 20px; height: 20px; }
.why-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.why-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ── PROCESS ── */
.process { padding: 100px 0; background: var(--off); }
.process-timeline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.process-step {
  background: var(--white); border-radius: var(--radius2);
  padding: 36px 28px; border: 1px solid rgba(10,22,40,0.07);
  box-shadow: var(--shadow); position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.step-number {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 800;
  color: rgba(201,168,76,0.12); line-height: 1;
  position: absolute; top: 20px; right: 24px;
}
.step-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 18px;
}
.step-icon svg { width: 24px; height: 24px; }
.step-content h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-content p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: var(--off); border-radius: var(--radius2);
  padding: 32px 28px; border: 1px solid rgba(10,22,40,0.07);
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--gray); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); font-weight: 700; }
.testimonial-author span { font-size: 0.78rem; color: var(--gray2); }
.testimonial-visa-tag {
  display: inline-block; padding: 5px 12px; border-radius: 50px;
  background: rgba(201,168,76,0.1); color: var(--gold);
  font-size: 0.75rem; font-weight: 600; border: 1px solid rgba(201,168,76,0.2);
  align-self: flex-start;
}

/* ── WHATSAPP BANNER ── */
.whatsapp-banner {
  position: relative; padding: 72px 0; overflow: hidden;
  background: linear-gradient(135deg, #0d1f3c 0%, #0A1628 100%);
}
.banner-bg { position: absolute; inset: 0; }
.banner-orb {
  position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
}
.banner-orb-1 { width: 400px; height: 400px; background: rgba(201,168,76,0.08); top: -100px; right: -80px; }
.banner-orb-2 { width: 300px; height: 300px; background: rgba(37,211,102,0.06); bottom: -80px; left: -60px; }
.banner-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.banner-icon {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(37,211,102,0.3);
}
.banner-icon svg { width: 38px; height: 38px; color: #fff; }
.banner-text { flex: 1; min-width: 240px; }
.banner-text h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.banner-text p { color: rgba(255,255,255,0.65); font-size: 1rem; }
.btn-banner-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 50px;
  background: #25D366; color: #fff;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-banner-wa svg { width: 18px; height: 18px; }
.btn-banner-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ── ELIGIBILITY CHECKER ── */
.eligibility { padding: 100px 0; background: var(--off); }
.checker-card {
  max-width: 800px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius2);
  padding: 48px; border: 1px solid rgba(10,22,40,0.08);
  box-shadow: var(--shadow2);
}
.checker-form { display: flex; flex-direction: column; gap: 20px; }
.checker-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-group select, .form-group input, .form-group textarea {
  padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid rgba(10,22,40,0.12); background: var(--off);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; width: 100%;
}
.form-group select:focus, .form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; }
.checker-btn { align-self: flex-start; }
.checker-result {
  text-align: center; padding: 40px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.result-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(201,168,76,0.12); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold);
}
.checker-result h3 { font-family: var(--font-head); font-size: 1.6rem; color: var(--navy); }
.checker-result p { color: var(--gray); max-width: 400px; }

/* ── FAQ ── */
.faq { padding: 100px 0; background: var(--white); }
.faq-grid { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--off); border-radius: var(--radius);
  border: 1px solid rgba(10,22,40,0.07); overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--navy);
  text-align: left; transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ── CONTACT ── */
.contact { padding: 100px 0; background: var(--off); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white); border-radius: var(--radius);
  padding: 20px 22px; border: 1px solid rgba(10,22,40,0.07);
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 24px; height: 24px; }
.wa-icon { background: rgba(37,211,102,0.1); color: #25D366; }
.email-icon { background: rgba(201,168,76,0.1); color: var(--gold); }
.location-icon { background: rgba(10,22,40,0.06); color: var(--navy); }
.contact-card h4 { font-size: 0.8rem; font-weight: 600; color: var(--gray2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-card a { font-size: 0.95rem; font-weight: 600; color: var(--navy); text-decoration: none; transition: color var(--transition); }
.contact-card a:hover { color: var(--gold); }
.contact-card span { font-size: 0.9rem; color: var(--gray); }
.contact-map-placeholder {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(10,22,40,0.07); box-shadow: var(--shadow);
  overflow: hidden;
}
.map-inner {
  padding: 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.map-inner svg { width: 60px; height: 80px; }
.map-inner p { font-size: 0.88rem; color: var(--gray); line-height: 1.5; }
.map-cities {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.map-cities span {
  padding: 4px 10px; border-radius: 50px;
  background: rgba(201,168,76,0.08); color: var(--gold);
  font-size: 0.72rem; font-weight: 600; border: 1px solid rgba(201,168,76,0.18);
}
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius2);
  padding: 40px; border: 1px solid rgba(10,22,40,0.07);
  box-shadow: var(--shadow2);
}
.contact-form h3 {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; }
.form-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--gray2); margin-top: 4px;
}
.form-note svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ── FOOTER ── */
.footer { background: var(--navy); }
.footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(201,168,76,0.12); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { margin-bottom: 4px; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-link svg { width: 17px; height: 17px; }
.social-link:hover { background: rgba(201,168,76,0.15); color: var(--gold); border-color: rgba(201,168,76,0.3); }
.footer-links-col h4 {
  font-size: 0.82rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px;
}
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.88rem; color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 24px 0; text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-disclaimer { font-size: 0.75rem !important; color: rgba(255,255,255,0.22) !important; max-width: 700px; margin: 0 auto; }

/* ── REVEAL ANIMATIONS ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(32px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.revealed { opacity: 1 !important; transform: none !important; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 4px; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,22,40,0.98); backdrop-filter: blur(16px); padding: 16px 24px 24px; border-top: 1px solid rgba(201,168,76,0.15); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 14px 0; }
  .navbar.scrolled { padding: 10px 0; }
  .hero { padding: 100px 24px 60px; }
  .hero-trust { gap: 10px; }
  .trust-badge { font-size: 0.75rem; padding: 6px 12px; }
  .stats-grid { gap: 0; }
  .stat-item { padding: 16px 24px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-right { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .checker-card { padding: 28px 20px; }
  .checker-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .banner-content { flex-direction: column; text-align: center; }
  .banner-icon { margin: 0 auto; }
  .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn-primary, .hero-ctas .btn-whatsapp { width: 100%; justify-content: center; }
  .countries-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 12px 16px; }
  .stat-number { font-size: 2.2rem; }
}