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

:root {
  --primary: #0b2d54;
  --primary-dark: #061d39;
  --accent: #e8a020;
  --accent-hover: #d4911a;
  --bg: #f4f6f9;
  --bg-white: #ffffff;
  --text: #333;
  --text-light: #666;
  --text-muted: #999;
  --border: #e0e0e0;
  --card-bg: #fff;
  --footer-bg: #061d39;
  --green: #25d366;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
  --font: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ── DARK MODE ── */
[data-theme="dark"] {
  --primary: #3b82f6;
  --primary-dark: #1e3a5f;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --bg: #0f172a;
  --bg-white: #1e293b;
  --text: #e2e8f0;
  --text-light: #94a3b8;
  --text-muted: #64748b;
  --border: #334155;
  --card-bg: #1e293b;
  --footer-bg: #020617;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
}
[data-theme="dark"] .header { background: #1e293b; }
[data-theme="dark"] .topbar { background: #020617; }
[data-theme="dark"] .nav-links { background: #1e293b; }
[data-theme="dark"] .card { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .testi-card { background: #1e293b; }
[data-theme="dark"] .why-item { background: #1e293b; }
[data-theme="dark"] .form-control { background: #0f172a; border-color: #334155; color: #e2e8f0; }
[data-theme="dark"] .dest-card-body { background: #1e293b; }
[data-theme="dark"] .contact-info-box { background: #1e3a5f; }
[data-theme="dark"] .section-light { background: #1e293b; }
[data-theme="dark"] .section-alt { background: #0f172a; }

/* ── TOP BAR ── */
.topbar {
  background: var(--primary-dark);
  color: #cdd8e8;
  padding: 8px 0;
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: #cdd8e8; }
.topbar a:hover { color: var(--accent); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  background: var(--bg-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 1000;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 75px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}
.logo img { height: 42px; width: auto; border-radius: 4px; }
.logo span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(11,45,84,0.07); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }

.nav-controls { display: flex; align-items: center; gap: 0.8rem; }
.theme-toggle {
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; padding: 5px; transition: transform var(--transition);
  color: var(--text); display: flex; align-items: center; justify-content: center;
  line-height: 0;
}
.theme-toggle svg { display: block; }
.theme-toggle:hover { transform: scale(1.15); }
.mobile-menu-btn {
  display: none; background: none; border: none;
  color: var(--text); cursor: pointer;
  display: none; align-items: center; justify-content: center;
  padding: 5px; line-height: 0;
}
.mobile-menu-btn svg { display: block; }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 20px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,29,57,0.88) 0%, rgba(11,45,84,0.75) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--accent); }
.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,160,32,0.4); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: #fff; }

/* ── STATS ── */
.stats-section {
  background: var(--primary);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.75); margin-top: 0.4rem; }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-light { background: var(--bg-white); }
.section-alt { background: var(--bg); }
.section-dark { background: var(--primary); color: #fff; }
.section-dark .section-title { color: #fff; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

.text-center { text-align: center; }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto 3rem;
}

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.card-body { padding: 2rem; }
.card-icon {
  width: 60px; height: 60px;
  background: rgba(11,45,84,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  transition: all var(--transition);
}
.card:hover .card-icon { background: var(--primary); }
.card-title { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 0.7rem; }
.card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ── WHO WE ARE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-tag { color: var(--accent); font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.8rem; }
.about-title { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 1.2rem; line-height: 1.2; }
.about-text { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }
.about-features { margin: 1.5rem 0; }
.about-feature { display: flex; align-items: center; gap: 10px; margin-bottom: 0.8rem; color: var(--text); font-weight: 500; }
.about-feature::before { content: '✓'; background: var(--accent); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }

/* ── DESTINATION CARDS ── */
.dest-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); cursor: pointer; }
.dest-card-img { height: 200px; width: 100%; object-fit: cover; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.dest-card:hover .dest-card-img { transform: scale(1.05); }
.dest-card-body { padding: 1.3rem 1.5rem; background: #fff; }
.dest-card-flag { font-size: 1.8rem; margin-bottom: 0.5rem; }
.dest-card-title { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 0.3rem; }
.dest-card-text { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.8rem; }
.dest-card-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 4px; }
.dest-card-link:hover { color: var(--accent-hover); }

/* ── TESTIMONIALS ── */
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  transition: all var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: var(--accent); font-size: 1rem; margin-bottom: 1rem; }
.testi-text { font-style: italic; color: var(--text-light); line-height: 1.8; margin-bottom: 1.2rem; }
.testi-author { font-weight: 700; color: var(--primary); }
.testi-country { font-size: 0.85rem; color: var(--text-muted); }

/* ── WHY CHOOSE US ── */
.why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-bottom: 1rem; transition: all var(--transition); }
.why-item:hover { transform: translateX(6px); border-left: 3px solid var(--accent); }
.why-icon { font-size: 1.8rem; flex-shrink: 0; }
.why-text h4 { font-weight: 700; color: var(--primary); margin-bottom: 0.3rem; }
.why-text p { font-size: 0.9rem; color: var(--text-light); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 5rem 20px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── FORMS ── */
.form-group { margin-bottom: 1.4rem; text-align: left; }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); }

/* ── CONTACT INFO ── */
.contact-info-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}
.contact-info-box h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--accent); }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item a { color: rgba(255,255,255,0.85); }
.contact-item a:hover { color: var(--accent); }

/* ── FOOTER ── */
.footer { background: var(--footer-bg); color: rgba(255,255,255,0.75); padding: 5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo span { font-size: 1.2rem; font-weight: 700; color: #fff; }
.footer-logo img { height: 36px; border-radius: 4px; }
.footer-desc { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.footer-col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 1.2rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 0.8rem; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-contact-item span:first-child { color: var(--accent); flex-shrink: 0; }
.social-links { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all var(--transition);
  line-height: 0;
}
.social-icon svg { display: block; flex-shrink: 0; }
.social-icon:hover { background: var(--accent); transform: translateY(-3px); color: #fff; }

/* Topbar SVG icons */
.topbar-item svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: all var(--transition);
  animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); background: #1ebe57; }
@keyframes pulse-green {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}

/* ── LEFT SOCIAL SIDEBAR ── */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.social-sidebar a {
  display: flex; align-items: center;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1.1rem;
}
.social-sidebar a:hover { width: 54px; background: var(--accent); }

/* ── COUNTRY PAGE ── */
.req-list { list-style: disc; margin-left: 1.5rem; margin-top: 0.5rem; line-height: 2; color: var(--text-light); }
.req-heading { color: var(--primary); font-size: 1.1rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: 0.3rem; }

/* ── DROPDOWN ── */
.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; cursor: pointer; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 200px;
  z-index: 2000;
  padding: 0.5rem 0;
  animation: fadeDown 0.2s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-menu li a:hover {
  color: var(--primary);
  background: rgba(11,45,84,0.05);
  border-left-color: var(--accent);
  padding-left: 22px;
}
[data-theme="dark"] .dropdown-menu { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .dropdown-menu li a { color: #e2e8f0; }
[data-theme="dark"] .dropdown-menu li a:hover { background: rgba(255,255,255,0.05); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { display: none; }
}
@media (max-width: 768px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column;
    padding: 1rem; box-shadow: var(--shadow);
    display: none; z-index: 999;
  }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: flex; }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .social-sidebar { display: none; }
  .hero { min-height: 75vh; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: rgba(11,45,84,0.04); padding: 0 0 0 1rem; border-radius: 0; display: none; animation: none; }
  .dropdown.active .dropdown-menu { display: block; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown-menu li a { padding: 8px 12px; font-size: 0.88rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
}
