/* ═══════════════════════════════════════════════════════════════
   Visa Consultation — MentorMinds
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  --orange: #FF6B00;
  --orange-dark: #E05E00;
  --orange-glow: rgba(255, 107, 0, 0.18);
  --navy: #0A1F44;
  --navy-light: #132D5E;
  --white: #FFFFFF;
  --light: #F8F9FA;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --ff: 'Poppins', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); font-size: 16px; line-height: 1.7; color: var(--text-dark); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

.vc-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title { font-family: var(--ff); font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-muted); max-width: 640px; margin: 0 auto 48px; font-size: 1.05rem; }

/* ── Header ─────────────────────────────────────────────────── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); transition: var(--transition); }
.header.scrolled { box-shadow: var(--shadow); }
.top-bar { background: var(--navy); color: var(--white); font-size: 13px; padding: 6px 0; }
.header.scrolled .top-bar { margin-top: -40px; }
.top-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-left i { color: var(--orange); margin-right: 5px; }
.lang-switch { display: flex; background: rgba(255,255,255,.12); border-radius: 50px; overflow: hidden; }
.lang-switch button { padding: 3px 12px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.7); }
.lang-switch button.active { background: var(--orange); color: var(--white); }

.nav-bar { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 700; }
.logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--orange), #ff8a33); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; }
.logo-text span:first-child { color: var(--navy); }
.logo-text span:last-child { color: var(--orange); }
.nav-menu { display: flex; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: flex; align-items: center; gap: 5px; padding: 8px 14px; font-size: 15px; font-weight: 500; color: var(--navy); border-radius: 8px; transition: var(--transition); }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--orange); background: rgba(255,107,0,.06); }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); min-width: 220px; background: var(--white); border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,.12); padding: 10px; opacity: 0; visibility: hidden; transition: opacity .25s; z-index: 100; }
.nav-menu > li:hover > .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu li a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; font-size: 14px; color: var(--navy); border-radius: 10px; }
.dropdown-menu li a:hover { background: rgba(255,107,0,.07); color: var(--orange); }
.dropdown-menu li a i { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: var(--orange-glow); color: var(--orange); border-radius: 8px; font-size: 12px; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-whatsapp { width: 42px; height: 42px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.btn-cta { padding: 10px 24px; background: var(--orange); color: var(--white); font-family: var(--ff); font-size: 14px; font-weight: 600; border-radius: 50px; border: 2px solid var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 10px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(10,31,68,.5); z-index: 1049; opacity: 0; transition: opacity var(--transition); }
.mobile-overlay.show { display: block; opacity: 1; }
.mobile-menu { display: none; position: fixed; top: 0; right: -320px; width: 320px; max-width: 85vw; height: 100vh; background: var(--white); z-index: 1050; padding: 80px 24px 30px; overflow-y: auto; transition: right .35s ease; }
.mobile-menu.open { right: 0; }
.mobile-menu .mobile-nav li { border-bottom: 1px solid rgba(0,0,0,.06); }
.mobile-menu .mobile-nav > li > a { display: block; padding: 14px 0; font-weight: 600; color: var(--navy); }
.mobile-menu .mobile-dropdown { max-height: 0; overflow: hidden; transition: max-height .35s; }
.mobile-menu .mobile-dropdown.open { max-height: 400px; }
.mobile-menu .mobile-dropdown a { display: block; padding: 10px 0 10px 16px; font-size: 14px; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   SECTION 1 — Hero
   ══════════════════════════════════════════════ */
.vc-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 55%, #0d2850 100%);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,107,0,.12) 0%, transparent 60%);
  pointer-events: none;
}
.vc-hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.vc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.35);
  color: #ffb380;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.vc-hero h1 {
  font-family: var(--ff);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.vc-hero-sub {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.vc-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 48px; }
.btn-vc-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--ff);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  transition: var(--transition);
}
.btn-vc-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.btn-vc-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--ff);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6);
  transition: var(--transition);
}
.btn-vc-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.vc-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.vc-hero-stat strong {
  display: block;
  font-family: var(--ff);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange);
}
.vc-hero-stat span { font-size: 14px; color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════
   SECTION 2 — Visa Types (horizontal scroll)
   ══════════════════════════════════════════════ */
.vc-types { padding: 80px 0; background: var(--light); }
.vc-types-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 24px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.vc-types-scroll::-webkit-scrollbar { height: 6px; }
.vc-types-scroll::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }
.visa-type-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,31,68,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.visa-type-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(10,31,68,.12); }
.visa-flag { font-size: 2.5rem; line-height: 1; margin-bottom: 12px; }
.visa-type-card h3 { font-family: var(--ff); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.visa-type-label { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.processing-badge {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.btn-know-req {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 12px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
}
.btn-know-req:hover { background: var(--orange); }

/* ══════════════════════════════════════════════
   SECTION 3 — Visa Process (tabs)
   ══════════════════════════════════════════════ */
.vc-process { padding: 80px 0; }
.process-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.process-tabs { display: flex; flex-direction: column; gap: 8px; }
.process-tab {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  text-align: left;
  border-radius: 14px;
  border: 2px solid transparent;
  background: var(--light);
  transition: var(--transition);
}
.process-tab:hover { border-color: rgba(255,107,0,.25); }
.process-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.process-tab-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-tab.active .process-tab-num { background: var(--white); color: var(--orange); }
.process-tab-text strong { display: block; font-family: var(--ff); font-size: 14px; font-weight: 600; line-height: 1.35; }
.process-tab-text span { font-size: 12px; opacity: .75; display: none; }
.process-panel {
  background: var(--light);
  border-radius: 24px;
  padding: 40px;
  min-height: 320px;
  position: relative;
}
.process-panel-step { display: none; animation: fadeIn .4s ease; }
.process-panel-step.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.process-panel-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-glow);
  color: var(--orange);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.process-panel-step h3 { font-family: var(--ff); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.process-panel-step p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; max-width: 520px; }
.process-panel-step ul { margin-top: 20px; }
.process-panel-step li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 15px;
}
.process-panel-step li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 12px;
}

/* ══════════════════════════════════════════════
   SECTION 4 — Document Checklist
   ══════════════════════════════════════════════ */
.vc-checklist { padding: 80px 0; background: var(--light); }
.doc-accordion { max-width: 800px; margin: 0 auto; }
.doc-accordion .accordion-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: 1px solid rgba(10,31,68,.06);
}
.doc-accordion .accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--ff);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
}
.doc-accordion .accordion-trigger i.flag-icon { font-size: 1.4rem; margin-right: 4px; }
.doc-accordion .accordion-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.doc-accordion .accordion-item.is-open .accordion-icon { transform: rotate(180deg); background: var(--orange-glow); color: var(--orange); }
.doc-accordion .accordion-panel { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.doc-accordion .accordion-item.is-open .accordion-panel { max-height: 600px; }
.doc-accordion .accordion-panel-inner { padding: 0 24px 24px; }
.checklist-grid { display: grid; gap: 10px; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  background: var(--light);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
}
.check-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
  margin-top: 2px;
}

/* ══════════════════════════════════════════════
   SECTION 5 — Stats (navy)
   ══════════════════════════════════════════════ */
.vc-stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
}
.vc-stats .section-title { color: var(--white); }
.vc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.vc-stat-num {
  font-family: var(--ff);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 8px;
}
.vc-stat-label { color: rgba(255,255,255,.8); font-size: 15px; font-weight: 500; }

/* ══════════════════════════════════════════════
   SECTION 6 — FAQ
   ══════════════════════════════════════════════ */
.vc-faq { padding: 80px 0; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-accordion .accordion-item {
  border-bottom: 1px solid rgba(10,31,68,.08);
}
.faq-accordion .accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--ff);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
}
.faq-accordion .accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-accordion .accordion-item.is-open .accordion-icon { transform: rotate(180deg); }
.faq-accordion .accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-accordion .accordion-item.is-open .accordion-panel { max-height: 400px; }
.faq-accordion .accordion-panel-inner { padding-bottom: 22px; color: var(--text-muted); line-height: 1.75; }

/* ══════════════════════════════════════════════
   SECTION 7 — Booking CTA
   ══════════════════════════════════════════════ */
.vc-booking {
  background: var(--orange);
  padding: 80px 24px;
}
.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.booking-text h2 {
  font-family: var(--ff);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 16px;
}
.booking-text p { color: rgba(255,255,255,.9); font-size: 1.05rem; line-height: 1.7; }
.booking-text ul { margin-top: 20px; }
.booking-text li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 10px;
}
.booking-text li i { color: var(--navy); background: var(--white); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.booking-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}
.booking-form-card h3 { font-family: var(--ff); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e8eaed;
  border-radius: 12px;
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--orange); }
.btn-submit-booking {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff);
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-submit-booking:hover { background: var(--navy-light); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 40px 24px; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 16px; }
.footer-links a { font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 13px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 992px) {
  .process-layout { grid-template-columns: 1fr; }
  .process-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .process-tab { flex: 0 0 200px; scroll-snap-align: start; }
  .process-tab-text span { display: block; font-size: 11px; margin-top: 4px; }
  .vc-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .btn-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .vc-hero { padding: 120px 20px 60px; }
  .vc-hero-stats { gap: 24px; }
  .process-panel { padding: 28px 24px; }
  .booking-form-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .vc-stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .visa-type-card { flex: 0 0 260px; }
}
