/* ==========================================================================
   iVisa-Inspired Modern Responsive Stylesheet
   Vanguard Relocation (Landing 2)
   ========================================================================== */

:root {
  --primary: #0d9488;
  --primary-hover: #0f766e;
  --primary-light: #f0fdfa;
  --primary-dark: #115e59;
  --secondary: #1e293b;
  
  --accent-gold: #f59e0b;
  --accent-gold-light: #fef3c7;
  --accent-blue: #2563eb;
  
  --trustpilot-green: #00b67a;
  --trustpilot-bg: #f2faf6;

  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-subtle: #f1f5f9;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  
  --border-light: #e2e8f0;
  --border-focus: #0d9488;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 14px 34px -6px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 40px -10px rgba(13, 148, 136, 0.18);

  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-ar: 'Cairo', 'Inter', -apple-system, sans-serif;
}

/* ── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--text-main);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

html[dir="rtl"] {
  font-family: var(--font-ar);
}

body {
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e293b 0%, #0d9488 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.25);
  flex-shrink: 0;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.btn-lang-toggle:hover {
  background: #e2e8f0;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid #a7f3d0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ── Hero Section ────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
  padding: 40px 0 60px;
  overflow: hidden;
}

.hero-swoop {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  max-width: 800px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

[dir="rtl"] .hero-swoop {
  right: auto;
  left: 0;
  transform: scaleX(-1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trustpilot-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d1fae5;
  box-shadow: var(--shadow-sm);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  width: fit-content;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
}

.trustpilot-stars {
  display: inline-flex;
  gap: 2px;
}

.trustpilot-stars img {
  width: 16px;
  height: 16px;
}

.hero-headline {
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.1rem;
  }
}

.hero-headline-green {
  color: var(--primary);
  display: inline-block;
  position: relative;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 580px;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

/* ── The iVisa Travel Widget ─────────────────────────────────────────────── */
.travel-widget-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .travel-widget-card {
    padding: 30px;
  }
}

.widget-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.widget-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
}

.widget-header-title svg {
  color: var(--primary);
}

.widget-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #b45309;
  background: var(--accent-gold-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid #fde68a;
}

/* Combobox Field Pairs */
.widget-fields-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .widget-fields-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.widget-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.combobox-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  transition: all 0.2s ease;
}

[dir="rtl"] .combobox-btn {
  text-align: right;
}

.combobox-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.combobox-btn:focus,
.combobox-btn.active {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
  outline: none;
}

.combobox-main {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.country-flag-icon {
  font-size: 1.45rem;
  line-height: 1;
  flex-shrink: 0;
}

.country-name-txt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chevron-icon {
  color: var(--text-light);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

/* Pill Option Buttons (Visa Type & Applicant Type) */
.options-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.options-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pill-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  text-align: left;
  transition: all 0.2s ease;
  cursor: pointer;
}

[dir="rtl"] .pill-btn {
  align-items: flex-start;
  text-align: right;
}

.pill-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.pill-btn.active {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary), var(--shadow-sm);
}

.pill-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pill-btn.active .pill-title {
  color: var(--primary);
}

.pill-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Dossier Summary Box */
.dossier-summary-card {
  background: linear-gradient(145deg, #f0fdfa 0%, #f8fafc 100%);
  border: 1px solid #ccfbf1;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dossier-headline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dossier-track-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dossier-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 4px;
}

.metric-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  text-align: center;
}

.metric-number {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
}

.metric-number.gold {
  color: #d97706;
}

.metric-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}

/* The Big Get Started CTA Button */
.btn-get-started {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #0f766e 100%);
  color: #ffffff;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-get-started:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px -8px rgba(13, 148, 136, 0.35);
  background: linear-gradient(135deg, #14b8a6 0%, #115e59 100%);
}

.btn-get-started:active {
  transform: translateY(0);
}

.btn-cta-main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.tg-svg-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-cta-subtext {
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 2px;
}

/* Hero Visual Card (Right Column) */
.hero-visual-card {
  display: none;
  position: relative;
}

@media (min-width: 992px) {
  .hero-visual-card {
    display: block;
  }
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-wrapper:hover .hero-main-img {
  transform: scale(1.02);
}

.floating-review-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
}

[dir="rtl"] .floating-review-badge {
  left: auto;
  right: 24px;
}

.badge-avatar-group {
  display: flex;
}

.badge-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: -8px;
}

.badge-avatar:first-child {
  margin-left: 0;
}

.badge-txt-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
}

.badge-txt-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── "As Featured In" Section ────────────────────────────────────────────── */
.featured-section {
  padding: 30px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.featured-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.featured-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 48px;
}

.featured-logo-item img {
  height: 24px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.featured-logo-item img:hover {
  opacity: 0.95;
  filter: grayscale(0%);
}

/* ── Section Heads ───────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.35rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.55;
}

/* ── "Why Travelers Choose Us" Comparison Section ────────────────────────── */
.comparison-section {
  padding: 70px 0;
  background: var(--bg-page);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr 1.08fr;
    align-items: center;
  }
}

.comp-col-diy {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 30px;
}

.comp-col-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.comp-col-diy .comp-col-title {
  color: var(--text-muted);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.icon-cross {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fee2e2;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.comp-col-us {
  background: #ffffff;
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.comp-badge-recommended {
  position: absolute;
  top: -14px;
  right: 30px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

[dir="rtl"] .comp-badge-recommended {
  right: auto;
  left: 30px;
}

.comp-col-us .comp-col-title {
  color: var(--primary-dark);
}

.icon-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #d1fae5;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── "Three Steps. Zero Hassle." Section ──────────────────────────────────── */
.steps-section {
  padding: 70px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-box {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.step-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-box-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.step-box-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Customer Reviews Section (iVisa Testimonials) ────────────────────────── */
.reviews-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f0fdfa 0%, var(--bg-page) 100%);
  border-top: 1px solid var(--border-light);
}

.trustpilot-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}

.trustpilot-stars-lg {
  display: flex;
  gap: 4px;
}

.trustpilot-stars-lg img {
  width: 24px;
  height: 24px;
}

.trustpilot-score-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
}

.trustpilot-score-text span {
  color: var(--trustpilot-green);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.25s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-card-stars {
  display: flex;
  gap: 3px;
}

.review-card-stars img {
  width: 18px;
  height: 18px;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.author-avatar-initials {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.author-verified-tag {
  font-size: 0.72rem;
  color: var(--trustpilot-green);
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 600;
}

/* ── FAQ Section ─────────────────────────────────────────────────────────── */
.faq-section {
  padding: 70px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-page);
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--primary);
  background: #ffffff;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
}

[dir="rtl"] .faq-question {
  text-align: right;
}

.faq-chevron {
  transition: transform 0.2s ease;
  color: var(--text-light);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  padding: 48px 0 90px;
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 48px 0;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-disclaimer {
  max-width: 650px;
  font-size: 0.78rem;
  color: #64748b;
}

/* ── Sticky Bottom Mobile Bar ────────────────────────────────────────────── */
.mobile-sticky-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (min-width: 768px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.sticky-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sticky-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-sub {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
}

.btn-sticky-get-started {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
  flex-shrink: 0;
}

/* ── Country Search Modal (Bottom Sheet / Modal) ─────────────────────────── */
.country-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

@media (min-width: 640px) {
  .country-modal-overlay {
    align-items: center;
    padding: 20px;
  }
}

.country-modal-overlay.open {
  display: flex;
}

.country-modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  animation: slide-up 0.25s ease-out;
  overflow: hidden;
}

@media (min-width: 640px) {
  .country-modal-container {
    border-radius: var(--radius-xl);
    max-height: 550px;
  }
}

@keyframes slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.modal-header {
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.modal-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.modal-search-box {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.modal-search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  background: #f8fafc;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
}

[dir="rtl"] .modal-search-input {
  padding: 10px 38px 10px 14px;
}

.modal-search-input:focus {
  border-color: var(--primary);
  background: #ffffff;
}

.modal-search-icon {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

[dir="rtl"] .modal-search-icon {
  left: auto;
  right: 32px;
}

.country-options-list {
  overflow-y: auto;
  padding: 8px 12px;
  max-height: 400px;
  list-style: none;
}

.country-option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.country-option-item:hover {
  background: #f1f5f9;
}

.country-option-item.selected {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.country-option-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.country-option-flag {
  font-size: 1.35rem;
  line-height: 1;
}

/* ── Minimal Cookie Toast ────────────────────────────────────────────────── */
.cookie-toast {
  position: fixed;
  bottom: 80px;
  left: 20px;
  right: 20px;
  max-width: 440px;
  z-index: 90;
  background: #0f172a;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .cookie-toast {
    bottom: 24px;
  }
}

.btn-cookie-ok {
  background: var(--primary);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  white-space: nowrap;
}
