/* ═══════════════════════════════════════════════════
   First Class Immigration — Premium Design System v3
   ═══════════════════════════════════════════════════ */

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

/* ── TOKENS ── */
:root {
  --navy:        #0A2540;
  --navy-dark:   #061828;
  --navy-mid:    #0d2e4e;
  --navy-deep:   #040e1a;
  --gold:        #C6A43F;
  --gold-light:  #e8cc7a;
  --gold-bright: #f5de8a;
  --gold-dim:    rgba(198,164,63,0.18);
  --white:       #ffffff;
  --off-white:   #f6f8fb;
  --surface:     #f0f4f8;
  --text:        #1a2332;
  --text-mid:    #4a5568;
  --text-light:  #8896a8;
  --border:      #e1e8f0;
  --border-light:#eef2f7;
  --green:       #10b981;
  --red:         #ef4444;

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(10,37,64,0.07);
  --shadow:    0 6px 28px rgba(10,37,64,0.11);
  --shadow-lg: 0 16px 56px rgba(10,37,64,0.17);
  --shadow-xl: 0 24px 80px rgba(10,37,64,0.22);
  --glow-gold: 0 8px 32px rgba(198,164,63,0.30);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(18px, 2vw, 23px); font-weight: 600; line-height: 1.3; }
h4 { font-size: 16px; font-weight: 600; }
p  { color: var(--text-mid); line-height: 1.75; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.section-title    { color: var(--navy); margin-bottom: 16px; }
.section-subtitle { color: var(--text-mid); font-size: 17px; max-width: 600px; line-height: 1.7; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 12px;
  font-weight: 700; font-size: 15px; cursor: pointer;
  border: none; transition: all 0.3s var(--spring);
  text-decoration: none; position: relative; overflow: hidden;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.01em;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e8cc7a 100%);
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(198,164,63,0.45), 0 0 20px rgba(198,164,63,0.2);
  position: relative;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(198,164,63,0.6), 0 0 30px rgba(198,164,63,0.35);
}
.btn-primary:active {
  transform: translateY(-2px);
}
.btn-outline {
  background: rgba(255,255,255,0.08); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}
.btn-navy {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10,37,64,0.25);
}
.btn-navy:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--off-white); }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 6px; }

/* ── NAVBAR ── */
#fci-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(6,24,40,0.96);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 32px rgba(0,0,0,0.25);
  transition: all 0.3s var(--ease);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 28px; max-width: 100%; margin: 0;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: rgba(255,255,255,0.65); font-size: 13.5px; font-weight: 500;
  padding: 6px 12px; border-radius: 6px;
  transition: all 0.2s var(--ease); white-space: nowrap;
  position: relative;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-links a.active {
  color: var(--gold);
  background: rgba(198,164,63,0.1);
}
.nav-links a.nav-book {
  background: linear-gradient(135deg, var(--gold) 0%, #d4b24a 100%);
  color: var(--navy); font-weight: 700;
  padding: 8px 18px; margin-left: 10px;
  border-radius: 7px;
  box-shadow: 0 4px 12px rgba(198,164,63,0.3);
}
.nav-links a.nav-book:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: var(--glow-gold);
}
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-hamburger span { width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 28px 24px;
}
.nav-mobile a {
  color: rgba(255,255,255,0.75); padding: 12px 0;
  font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Space Grotesk', sans-serif;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ── LANGUAGE BAR ── */
#lang-bar {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lang-bar-inner {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 28px; max-width: 100%; margin: 0; flex-wrap: wrap;
}
.lang-dropdown {
  position: relative;
}
.lang-dropdown-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 12px; font-weight: 600; padding: 8px 16px; border-radius: 4px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15); cursor: pointer;
  transition: all 0.2s var(--ease); white-space: nowrap; min-width: 120px;
}
.lang-dropdown-btn:hover {
  background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.3);
}
.lang-dropdown-icon {
  font-size: 12px;
}
.lang-dropdown-arrow {
  font-size: 8px; transition: transform 0.2s var(--ease);
}
.lang-dropdown-btn.active .lang-dropdown-arrow {
  transform: rotate(180deg);
}
.lang-dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 4px;
  background: var(--navy-deep); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; min-width: 140px; box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(-8px); z-index: 1000;
  transition: all 0.2s var(--ease);
}
.lang-dropdown-menu.active {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-dropdown-item {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 10px 14px; border: none; background: transparent;
  color: rgba(255,255,255,0.55); font-size: 11px; font-weight: 500;
  cursor: pointer; text-align: left; transition: all 0.15s var(--ease);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lang-dropdown-item:last-child {
  border-bottom: none;
}
.lang-dropdown-item:hover {
  background: rgba(255,255,255,0.08); color: white;
}
.lang-dropdown-item.active {
  background: rgba(198,164,63,0.2); color: var(--gold); font-weight: 700;
}
.lang-full {
  font-size: 9px; color: rgba(255,255,255,0.35); margin-left: 8px;
}

/* ── HERO ── */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(198,164,63,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(13,46,78,0.8) 0%, transparent 50%),
    linear-gradient(150deg, #0A2540 0%, #061828 40%, #0a1f36 100%);
  color: white; padding: 100px 0 88px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 40px 40px;
}
.hero::after {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,164,63,0.08) 0%, transparent 70%);
  right: -100px; top: -100px; z-index: 0;
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 1; }
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(198,164,63,0.12);
  border: 1px solid rgba(198,164,63,0.35);
  color: var(--gold); padding: 7px 16px; border-radius: 24px;
  font-size: 11.5px; font-weight: 600; margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: 1px;
  font-family: 'Space Grotesk', sans-serif;
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: white; margin-bottom: 24px; max-width: 720px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: rgba(255,255,255,0.72); font-size: 18px;
  max-width: 580px; margin-bottom: 40px; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat-num {
  font-size: 32px; font-weight: 700; color: white;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.03em;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.8px; margin-top: 2px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(4,14,26,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap; max-width: 1180px; margin: 0 auto; padding: 0 28px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 500;
}
.trust-item svg { color: var(--gold); }
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.1); }

/* ── CARDS ── */
.card {
  background: white; border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  position: relative;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--gold), transparent 60%) border-box;
  opacity: 0; transition: opacity 0.3s;
}
.card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(10,37,64,0.07) 0%, rgba(198,164,63,0.08) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 24px;
}
.card h3 { color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 14px; }

/* ── PREMIUM CARD (dark) ── */
.premium-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid rgba(198,164,63,0.2);
  color: white; position: relative; overflow: hidden;
  transition: all 0.3s var(--ease);
}
.premium-card::before {
  content: '';
  position: absolute; width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,164,63,0.12) 0%, transparent 70%);
  top: -60px; right: -60px;
}
.premium-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

/* ── COUNTRY CARD ── */
.country-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.3s var(--ease); cursor: pointer;
  text-decoration: none; display: block;
}
.country-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-4px);
  border-color: rgba(198,164,63,0.4);
}
.country-card-flag { height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.country-card-body { padding: 20px 18px; }
.country-flag-emoji { font-size: 30px; margin-bottom: 10px; }
.country-name { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; font-family: 'Space Grotesk', sans-serif; }
.country-tag { font-size: 11px; color: var(--text-light); background: var(--off-white); padding: 3px 8px; border-radius: 4px; display: inline-block; }

/* ── STEPS ── */
.steps { display: flex; gap: 0; }
.step { flex: 1; position: relative; padding: 28px 24px; text-align: center; }
.step:not(:last-child)::after {
  content: '→'; position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%); color: var(--gold); font-size: 22px; z-index: 1;
  font-weight: 700;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: white; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(10,37,64,0.25);
  font-family: 'Space Grotesk', sans-serif;
}
.step h4 { color: var(--navy); margin-bottom: 6px; }
.step p  { font-size: 13px; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: white; border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.testimonial-stars { font-size: 18px; margin-bottom: 14px; color: var(--gold); }
.testimonial-text {
  font-size: 15px; color: var(--text); line-height: 1.75;
  margin-bottom: 22px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px; flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 14px; font-family: 'Space Grotesk', sans-serif; }
.testimonial-detail { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ── FOOTER ── */
#fci-footer {
  background:
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(198,164,63,0.06) 0%, transparent 60%),
    var(--navy-deep);
  color: rgba(255,255,255,0.65);
}
.footer-main { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 13px; line-height: 1.75; margin-top: 14px; color: rgba(255,255,255,0.45); }
.footer-col h5 {
  color: white; font-size: 12px; font-weight: 700;
  margin-bottom: 16px; text-transform: uppercase;
  letter-spacing: 1px; font-family: 'Space Grotesk', sans-serif;
}
.footer-col a {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.45); font-size: 13px;
  padding: 5px 0; transition: color 0.2s;
}
.footer-col a::before {
  content: ''; display: block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: 0;
  transition: opacity 0.2s; flex-shrink: 0;
}
.footer-col a:hover { color: var(--gold); }
.footer-col a:hover::before { opacity: 1; }
/* Inline mailto links inside contact column — override .footer-col a flex/dot styling */
.footer-col a.fci-mailto {
  display: inline; padding: 0; gap: 0;
  color: rgba(255,255,255,0.85); text-decoration: underline;
  text-decoration-color: rgba(198,164,63,0.5);
  text-underline-offset: 3px;
}
.footer-col a.fci-mailto::before { content: none; display: none; }
.footer-col a.fci-mailto:hover { color: var(--gold); text-decoration-color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.25); line-height: 1.7; max-width: 700px; }

/* ── WHATSAPP BUTTON ── */
#wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1da851);
  box-shadow: 0 6px 24px rgba(37,211,102,0.40);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--spring); cursor: pointer;
}
#wa-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
#wa-btn svg { width: 28px; height: 28px; fill: white; }
#wa-tooltip {
  position: fixed; bottom: 34px; right: 98px; z-index: 998;
  background: var(--navy); color: white; padding: 8px 14px;
  border-radius: 8px; font-size: 13px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}
#wa-btn:hover ~ #wa-tooltip, #wa-tooltip:hover { opacity: 1; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background:
    radial-gradient(ellipse 100% 80% at 80% 50%, rgba(198,164,63,0.08) 0%, transparent 55%),
    linear-gradient(140deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white; padding: 60px 0 52px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 36px 36px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(26px, 3.5vw, 42px);
  color: white; margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.65); font-size: 16px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.45); font-size: 13px; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); font-size: 13px; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 7px;
  font-family: 'Space Grotesk', sans-serif;
}
input, select, textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 15px; color: var(--text);
  background: var(--white); transition: all 0.2s var(--ease);
  font-family: 'Inter', sans-serif;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,37,64,0.08);
}
textarea { resize: vertical; min-height: 100px; }

/* ── ACCORDION ── */
.accordion-item { border-bottom: 1px solid var(--border-light); }
.accordion-btn {
  width: 100%; text-align: left; padding: 20px 0;
  background: none; border: none;
  font-size: 16px; font-weight: 600; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Space Grotesk', sans-serif; transition: color 0.2s;
}
.accordion-btn:hover { color: var(--gold); }
.accordion-btn .acc-icon { font-size: 20px; color: var(--gold); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.accordion-btn.open .acc-icon { transform: rotate(45deg); }
.accordion-body {
  font-size: 15px; color: var(--text-mid); line-height: 1.8;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.3s;
}
.accordion-body.open { max-height: 400px; padding-bottom: 20px; }

/* ── BADGE / PILL ── */
.pill { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.pill-gold  { background: rgba(198,164,63,0.12); color: #7a5e0e; }
.pill-navy  { background: rgba(10,37,64,0.08); color: var(--navy); }
.pill-green { background: rgba(16,185,129,0.1); color: #065f46; }
.pill-red   { background: rgba(239,68,68,0.1);  color: #991b1b; }

/* ── TABLE ── */
table { width: 100%; border-collapse: collapse; }
th {
  background: var(--navy); color: white;
  padding: 14px 18px; font-size: 13px; text-align: left;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.02em;
}
th:first-child { border-radius: 8px 0 0 0; }
th:last-child  { border-radius: 0 8px 0 0; }
td { padding: 13px 18px; font-size: 14px; border-bottom: 1px solid var(--border-light); }
tr:hover td { background: var(--off-white); }
tr:last-child td { border-bottom: none; }

/* ── SEARCH BOX ── */
.search-box {
  display: flex; align-items: center;
  border: 2px solid var(--border); border-radius: 10px;
  overflow: hidden; background: white;
  transition: border-color 0.2s;
}
.search-box:focus-within { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,37,64,0.07); }
.search-box input { border: none; padding: 13px 18px; font-size: 15px; flex: 1; }
.search-box input:focus { outline: none; }
.search-box button { background: var(--navy); color: white; border: none; padding: 13px 22px; cursor: pointer; font-size: 15px; transition: background 0.2s; }
.search-box button:hover { background: var(--navy-mid); }

/* ── DARK SECTION UTILITY ── */
.section-dark {
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(198,164,63,0.07) 0%, transparent 60%),
    var(--navy);
  color: white;
}
.section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: rgba(255,255,255,0.65); }
.section-dark .section-label { color: var(--gold); }
.section-dark .section-title { color: white; }

/* ── STAT BOX ── */
.stat-box {
  text-align: center; padding: 28px 20px;
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.stat-box:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.stat-num {
  font-size: 36px; font-weight: 700; color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em; line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-light); margin-top: 6px; }

/* ── ENTRANCE ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slide-right {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animate-up   { animation: fade-up 0.6s var(--ease) both; }
.animate-in   { animation: fade-in 0.5s var(--ease) both; }
.animate-d1   { animation-delay: 0.1s; }
.animate-d2   { animation-delay: 0.2s; }
.animate-d3   { animation-delay: 0.3s; }
.animate-d4   { animation-delay: 0.4s; }

/* ── SCROLL TO TOP ── */
#scroll-top {
  position: fixed; bottom: 96px; right: 30px; z-index: 990;
  width: 42px; height: 42px; border-radius: 10px;
  background: white; border: 1.5px solid var(--border);
  box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: all 0.3s var(--ease);
  color: var(--navy); font-size: 18px;
}
#scroll-top.show { opacity: 1; pointer-events: auto; }
#scroll-top:hover { background: var(--navy); color: white; border-color: var(--navy); transform: translateY(-2px); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; }
  .step:not(:last-child)::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -16px; transform: translateX(-50%); }
  .hero { padding: 72px 0 64px; }
}
@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 14px; }
  .trust-divider { display: none; }
  .container { padding: 0 16px; }
  h1 { font-size: clamp(28px, 8vw, 42px); }
  .section { padding: 56px 0; }
  .page-hero { padding: 56px 0 40px; }
  .nav-mobile { padding: 8px 16px 20px; }
  .nav-mobile a { font-size: 16px; padding: 14px 0; }
}

/* ── RTL ── */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-ctas { flex-direction: row-reverse; }
[dir="rtl"] .step:not(:last-child)::after { content: '←'; right: auto; left: -12px; }
[dir="rtl"] .section-label::before { display: none; }

/* ════════════════════════════════════════════════════════════
   DARK MODE
   ════════════════════════════════════════════════════════════ */
body.dark-mode {
  --bg: #0d1117;
  --card-bg: #161b22;
  --text: #e6edf3;
  --text-light: #8b949e;
  --off-white: #0d1117;
  --white: #161b22;
  background: #0d1117;
  color: #e6edf3;
}
body.dark-mode .card,
body.dark-mode section:not([class*="navy"]):not(.hero):not(#fci-footer):not(.footer-main):not(.footer-bottom) {
  background: #161b22;
  color: #e6edf3;
}
body.dark-mode a:not(.nav-book):not([class*="btn"]) { color: #c6a43f; }
body.dark-mode input, body.dark-mode select, body.dark-mode textarea {
  background: #21262d; color: #e6edf3; border-color: #30363d;
}

/* ════════════════════════════════════════════════════════════
   THEME TOGGLE (in lang bar)
   ════════════════════════════════════════════════════════════ */
#fci-theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid #0a2540; background: transparent;
  color: inherit; cursor: pointer; font-size: 16px;
  margin-left: 10px; transition: all 0.2s;
  display: inline-flex; align-items: center; justify-content: center;
}
#fci-theme-toggle:hover { color: #c6a43f; border-color: #c6a43f; box-shadow: 0 0 0 3px rgba(198,164,63,0.15); }
body.dark-mode #fci-theme-toggle { border-color: #c6a43f; color: #c6a43f; }

/* ════════════════════════════════════════════════════════════
   AI ASSISTANT FLOATING BUTTON + MODAL
   ════════════════════════════════════════════════════════════ */
.fci-ai-float {
  position: fixed; right: 28px; bottom: 100px; z-index: 1499;
  width: 52px; height: 52px; border-radius: 50%;
  background: #0a2540; color: #c6a43f;
  border: 2px solid #c6a43f; cursor: pointer; font-size: 24px;
  box-shadow: 0 6px 20px rgba(10,37,64,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.fci-ai-float:hover { box-shadow: 0 0 0 6px rgba(198,164,63,0.25), 0 6px 20px rgba(10,37,64,0.5); transform: translateY(-2px); }

.fci-ai-modal {
  position: fixed; right: 28px; bottom: 165px; z-index: 1600;
  width: 360px; max-width: calc(100vw - 32px);
  max-height: 520px; height: 70vh;
  background: #fff; border-radius: 12px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  display: flex; flex-direction: column; overflow: hidden;
  font-family: 'Inter', system-ui, sans-serif;
}
.fci-ai-header {
  background: #0a2540; color: #fff;
  padding: 12px 16px; font-weight: 600; font-size: 14px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 2px solid #c6a43f;
}
.fci-ai-close {
  background: none; border: none; color: #fff;
  font-size: 18px; cursor: pointer; line-height: 1;
}
.fci-ai-body {
  flex: 1; overflow-y: auto; padding: 14px;
  background: #f8f7f4; display: flex; flex-direction: column; gap: 10px;
}
.fci-ai-msg-bot, .fci-ai-msg-user {
  max-width: 85%; padding: 9px 13px; border-radius: 12px;
  font-size: 13.5px; line-height: 1.5; word-wrap: break-word;
}
.fci-ai-msg-bot { background: #fff; color: #0a2540; align-self: flex-start; border: 1px solid #e5e1d4; border-bottom-left-radius: 3px; }
.fci-ai-msg-bot a { color: #c6a43f; font-weight: 600; }
.fci-ai-msg-user { background: #0a2540; color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.fci-ai-typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: 8px 12px; }
.fci-ai-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: #0a2540; opacity: 0.4;
  animation: fci-ai-blink 1.2s infinite ease-in-out;
}
.fci-ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.fci-ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes fci-ai-blink {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}
.fci-ai-input-bar {
  display: flex; gap: 8px; padding: 10px;
  background: #fff; border-top: 1px solid #e5e1d4;
}
.fci-ai-input-bar input {
  flex: 1; padding: 9px 12px; border: 1px solid #d6d2c4;
  border-radius: 6px; font-size: 13.5px;
}
.fci-ai-input-bar input:focus { outline: 2px solid #c6a43f; border-color: #c6a43f; }
.fci-ai-input-bar button {
  background: #0a2540; color: #c6a43f; border: none;
  padding: 0 14px; border-radius: 6px; font-weight: 600;
  font-size: 13px; cursor: pointer;
}
.fci-ai-input-bar button:hover { background: #0d2d4f; }

body.dark-mode .fci-ai-modal { background: #161b22; }
body.dark-mode .fci-ai-body { background: #0d1117; }
body.dark-mode .fci-ai-msg-bot { background: #161b22; color: #e6edf3; border-color: #30363d; }
body.dark-mode .fci-ai-input-bar { background: #161b22; border-top-color: #30363d; }
body.dark-mode .fci-ai-input-bar input { background: #21262d; color: #e6edf3; border-color: #30363d; }

/* ════════════════════════════════════════════════════════════
   NOTIFICATION PERMISSION TOAST
   ════════════════════════════════════════════════════════════ */
.fci-notif-toast {
  position: fixed; right: 28px; bottom: 28px; z-index: 1700;
  background: #0a2540; color: #fff;
  border: 1px solid #c6a43f; border-radius: 10px;
  padding: 14px 16px; max-width: 320px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  font-family: 'Inter', system-ui, sans-serif; font-size: 13.5px;
  animation: fci-notif-slide 0.3s ease-out;
}
@keyframes fci-notif-slide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fci-notif-toast-msg { margin-bottom: 10px; line-height: 1.45; }
.fci-notif-toast-actions { display: flex; align-items: center; gap: 14px; justify-content: flex-end; }
.fci-notif-allow {
  background: #c6a43f; color: #0a2540; border: none;
  padding: 7px 14px; border-radius: 6px; font-weight: 700;
  font-size: 13px; cursor: pointer;
}
.fci-notif-allow:hover { background: #d4b14a; }
.fci-notif-dismiss { color: rgba(255,255,255,0.7); font-size: 13px; text-decoration: none; }
.fci-notif-dismiss:hover { color: #fff; text-decoration: underline; }
