:root {
  --navy: #3c3c6f;
  --navy-dark: #1d1d3a;
  --red: #b32335;
  --blue: #0670b7;
  --gold: #0670b7;
  --gray-bg: #F4F6FB;
  --text: #1d1d1b;
  --muted: #6b7280;
  --radius: 10px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 { color: var(--navy); font-weight: 600; }
h2 { font-size: 2rem; margin: 12px 0 18px; }

.kicker {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
}
.kicker.light { color: var(--gold); }

.lead { color: var(--muted); margin-bottom: 18px; }
.lead.light { color: #cfd4e6; }

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity .2s;
}
.btn:hover { opacity: 0.85; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-danger { background: var(--red); color: #fff; }
.btn-light { background: #fff; color: var(--red); }
.btn.sm { padding: 8px 16px; font-size: 0.8rem; }
.btn.full { width: 100%; text-align: center; border: none; cursor: pointer; }

/* Topbar */
.topbar { background: var(--navy-dark); color: #cfd4e6; font-size: 0.78rem; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-contact span { margin-right: 18px; }
.topbar-social a { margin-left: 8px; border: 1px solid #445; border-radius: 50%; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; }

/* Navbar */
.navbar { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 50; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.logo { font-size: 1.5rem; font-weight: 600; color: var(--navy); }
.logo img { height: 40px; display: block; }
.logo span { color: var(--red); }
.logo.light { color: #fff; }
.nav-links { display: flex; gap: 22px; }
.nav-links a { font-weight: 500; font-size: 0.92rem; color: var(--text); }
.nav-links a.active, .nav-links a:hover { color: var(--red); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../images/hero-bg.png') center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,29,61,0.85), rgba(31,42,84,0.65) 70%);
}
.hero-content { position: relative; z-index: 2; text-align: center; margin: 0 auto; }
.eyebrow { letter-spacing: 3px; font-size: 1.05rem; color: var(--gold); display: block; margin-bottom: 18px; }
.hero h1 { color: #fff; font-size: 4.2rem; margin-bottom: 32px; }
.hero-dots { display: flex; justify-content: center; gap: 8px; padding-bottom: 20px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.dot.active { background: var(--red); width: 22px; border-radius: 4px; }

/* Sections */
.section { padding: 70px 0; }
.section.alt { background: var(--gray-bg); }
.section.dark { background: var(--navy); color: #fff; }
.section.dark h2 { color: #fff; }
.text-center { text-align: center; }
.text-center h2 { max-width: 640px; margin-left: auto; margin-right: auto; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.two-col.reverse { grid-template-columns: 1fr 1fr; }

.video-card {
  margin-top: 20px; background: #b9bfd6 center/cover no-repeat; border-radius: var(--radius);
  padding: 40px; display: flex; flex-direction: column; align-items: center; gap: 10px; color: #fff;
  position: relative; min-height: 180px; justify-content: center;
}
.video-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(29,29,58,0.72), rgba(60,60,111,0.55)); border-radius: var(--radius); }
.video-card .play-btn, .video-card span { position: relative; z-index: 1; }
.play-btn { width: 50px; height: 50px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; }

.grid-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-card { background: #fff; border: 1px solid #eee; border-radius: var(--radius); padding: 20px; box-shadow: 0 4px 14px rgba(0,0,0,0.04); }
.mini-card .tag { color: var(--red); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }
.mini-card h4 { font-size: 1.05rem; margin: 6px 0; }
.mini-card p { color: var(--muted); font-size: 0.88rem; margin-bottom: 8px; }
.mini-card a { color: var(--navy); font-weight: 600; font-size: 0.85rem; }

.stat-photo { background: linear-gradient(135deg,#dfe4f2,#c8cfe8) center/cover no-repeat; border-radius: var(--radius); min-height: 280px; position: relative; }
.stat-photo.dark-photo { background: linear-gradient(135deg,#2b3768,#1a2244) center/cover no-repeat; }
.stat-badge, .stat-pill { position: absolute; bottom: 16px; left: 16px; background: var(--red); color: #fff; padding: 14px 18px; border-radius: 8px; font-weight: 800; font-size: 1.4rem; max-width: 220px; }
.stat-badge small, .stat-pill small { display: block; font-weight: 500; font-size: 0.72rem; margin-top: 4px; }

.check-list li { padding-left: 24px; position: relative; margin-bottom: 8px; font-size: 0.92rem; }
.check-list li::before { content: "✔"; color: var(--navy); position: absolute; left: 0; }
.check-list.light li::before { color: var(--gold); }

.support-card { background: #eef1fa; border-radius: var(--radius); padding: 16px 18px; margin: 18px 0; }
.support-card p { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }

.feature-mini { display: flex; gap: 20px; margin: 18px 0; }
.feature-mini strong { display: block; color: #fff; margin-bottom: 4px; }
.feature-mini p { color: #cfd4e6; font-size: 0.85rem; }

.countries { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; margin-top: 30px; }
.country-card { background: #fff; border: 1px solid #eee; border-radius: var(--radius); padding: 0 0 22px; text-align: center; overflow: hidden; }
.country-card .photo { width: 100%; height: 130px; object-fit: cover; display: block; margin-bottom: 14px; }
.country-card .flag { font-size: 1.6rem; margin-bottom: 4px; }
.country-card p { color: var(--muted); font-size: 0.82rem; margin: 6px 0; }
.country-card a { color: var(--red); font-weight: 600; font-size: 0.8rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 36px; }
.step-circle { width: 70px; height: 70px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto 14px; }
.step p { color: var(--muted); font-size: 0.88rem; max-width: 260px; margin: 6px auto 0; }

.cta-strip { background: var(--red); color: #fff; padding: 22px 0; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-weight: 600; }

.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; max-width: 780px; margin-left: auto; margin-right: auto; }
.team-card p { line-height: 1.4; }
.team-card { background: #fff; border-radius: var(--radius); padding: 26px 14px; box-shadow: 0 4px 14px rgba(0,0,0,0.05); }
.avatar { width: 74px; height: 74px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 12px; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.avatar.sm { width: 46px; height: 46px; font-size: 0.85rem; }
.team-card p { color: var(--muted); font-size: 0.85rem; }

.testimonial-mini { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; background: #fff; border-radius: var(--radius); padding: 16px; margin-top: 18px; box-shadow: 0 4px 14px rgba(0,0,0,0.05); }
.testimonial-mini span { display: block; color: var(--muted); font-size: 0.78rem; }

.stats-band { margin-top: 46px; background: var(--navy); border-radius: var(--radius); padding: 30px; display: grid; grid-template-columns: repeat(4,1fr); text-align: center; color: #fff; }
.stats-band strong { font-size: 1.8rem; display: block; color: var(--gold); }
.stats-band span { font-size: 0.78rem; color: #cfd4e6; }

.testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.testimonial-card { background: var(--gray-bg); border-radius: var(--radius); padding: 24px; text-align: left; }
.testimonial-card p { font-style: italic; margin-bottom: 14px; }
.testimonial-card span { display: block; color: var(--muted); font-size: 0.8rem; }

.faq details { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 14px 18px; margin-bottom: 10px; }
.faq summary { font-weight: 600; cursor: pointer; }
.faq p { color: var(--muted); font-size: 0.88rem; margin-top: 8px; }

.contact-card { background: var(--gray-bg); border-radius: var(--radius); padding: 30px; }
.contact-card h3 { margin-bottom: 16px; }
.contact-whatsapp { display: flex; flex-direction: column; justify-content: center; text-align: center; padding: 44px 34px; }
.contact-whatsapp .lead { margin-bottom: 24px; }
.form-row { display: flex; gap: 12px; margin-bottom: 12px; }
.contact-card input, .contact-card select, .contact-card textarea {
  width: 100%; padding: 12px; border: 1px solid #dcdfe8; border-radius: 6px; font-family: inherit; font-size: 0.9rem;
}
.contact-card textarea { min-height: 100px; margin-bottom: 12px; resize: vertical; }

/* Footer */
.footer { background: var(--navy-dark); color: #b7bcd6; padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 30px; padding-bottom: 30px; }
.footer h5 { color: #fff; margin-bottom: 12px; }
.footer a { display: block; color: #b7bcd6; font-size: 0.88rem; margin-bottom: 8px; }
.footer p { font-size: 0.85rem; margin-bottom: 6px; }
.newsletter { display: flex; margin-top: 14px; }
.newsletter input { flex: 1; padding: 10px; border: none; border-radius: 4px 0 0 4px; }
.newsletter button { background: var(--red); color: #fff; border: none; padding: 0 16px; border-radius: 0 4px 4px 0; cursor: pointer; }
.footer-bottom { border-top: 1px solid #2a3358; padding: 16px 20px; display: flex; justify-content: space-between; font-size: 0.78rem; flex-wrap: wrap; gap: 8px; max-width: 1140px; margin: 0 auto; }
.footer-bottom a { display: inline; color: #b7bcd6; }

/* Responsive */
@media (max-width: 900px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .grid-2x2 { grid-template-columns: 1fr; }
  .countries { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: 1fr; }
  .team { grid-template-columns: repeat(2,1fr); }
  .stats-band { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.1rem; }
  .visa-layout { grid-template-columns: 1fr; }
  .attention-grid { grid-template-columns: 1fr 1fr; }
  .visa-sidebar { position: static; }
}

/* Dropdown nav */
.has-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; background: #fff;
  border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); min-width: 200px; padding: 8px 0; z-index: 60;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 18px; font-size: 0.88rem; color: var(--text); }
.dropdown-menu a:hover { background: var(--gray-bg); color: var(--red); }

/* Breadcrumb hero (visa detail pages) */
.breadcrumb-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: #fff; padding: 60px 0 44px; }
.breadcrumb-hero h1 { color: #fff; font-size: 2.4rem; margin-bottom: 12px; }
.crumbs { font-size: 0.85rem; color: #cfd4e6; }
.crumbs a { color: #cfd4e6; }
.crumbs .current { color: var(--gold); }
.badge-featured { display: inline-block; background: var(--blue); color: #fff; font-weight: 600; font-size: 0.68rem; padding: 4px 12px; border-radius: 20px; margin-left: 10px; vertical-align: middle; letter-spacing: 0.4px; }

/* Visa detail layout */
.visa-layout { display: grid; grid-template-columns: 270px 1fr; gap: 34px; padding: 54px 0; align-items: start; }
.visa-sidebar { position: sticky; top: 90px; }
.category-list { background: #fff; border: 1px solid #eee; border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; }
.category-list a { display: block; padding: 13px 18px; font-weight: 600; font-size: 0.88rem; border-bottom: 1px solid #f0f0f0; color: var(--text); }
.category-list a:last-child { border-bottom: none; }
.category-list a.active, .category-list a:hover { background: var(--navy); color: #fff; }
.sidebar-cta { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: #fff; border-radius: var(--radius); padding: 24px 18px; text-align: center; }
.sidebar-cta .icon-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 1.15rem; }
.sidebar-cta h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.sidebar-cta .btn { display: block; margin-bottom: 10px; width: 100%; text-align: center; }
.sidebar-cta .btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff; }

.visa-hero-image { border-radius: var(--radius); min-height: 200px; background: linear-gradient(135deg,#2b3768,#1a2244); position: relative; margin-bottom: 24px; overflow: hidden; }
.visa-hero-image .flag-tag { position: absolute; bottom: 14px; left: 14px; background: rgba(0,0,0,0.55); color: #fff; padding: 10px 16px; border-radius: 8px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.92rem; }
.visa-hero-image .flag-tag .flag-emoji { font-size: 1.5rem; }

.attention-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 18px; }
.attention-item { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 14px; }
.attention-item .ic { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.05rem; flex-shrink: 0; }
.attention-item .ic.navy { background: var(--navy); }
.attention-item .ic.red { background: var(--red); }
.attention-item strong { font-size: 0.84rem; display: block; }

.category-section { padding-top: 24px; margin-top: 24px; border-top: 1px solid #eee; }
.category-section h3 { margin-bottom: 8px; }
.category-section ul { margin: 10px 0 0 0; }
.category-section ul li { padding-left: 18px; position: relative; margin-bottom: 6px; font-size: 0.88rem; color: var(--muted); }
.category-section ul li::before { content: "—"; position: absolute; left: 0; color: var(--red); }
