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

:root {
  --orange: #F76B1C;
  --orange-light: #FAD961;
  --orange-mid: #f89844;
  --orange-pale: #FFF4EC;
  --orange-border: #FFD4B0;
  --navy: #1E2340;
  --navy-light: #2D3561;
  --white: #ffffff;
  --off-white: #FAFAF8;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(247,107,28,0.10);
  --shadow-lg: 0 12px 48px rgba(247,107,28,0.15);
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

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

/* ─── NAV ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(247,107,28,0.35) !important; color: white !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── MOBILE NAV ──────────────────────────── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: var(--orange-pale); }
}

/* ─── PAGE OFFSET ─────────────────────────── */
.page-content { padding-top: 72px; }

/* ─── HERO ────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #3d2c6e 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250,217,97,0.18);
  border: 1px solid rgba(250,217,97,0.4);
  color: var(--orange-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: white;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(247,107,28,0.4); }
.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 3rem;
  backdrop-filter: blur(8px);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-logo-wrap img { width: 280px; height: auto; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.hero-stat {}
.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; }

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero p { margin: 0 auto 2rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-logo-wrap { padding: 2rem; }
  .hero-logo-wrap img { width: 200px; }
}

/* ─── SECTIONS ────────────────────────────── */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--text);
}
.section-title span {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ─── CARDS ───────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-border);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* ─── GRID ────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

/* ─── ORANGE BAND ─────────────────────────── */
.orange-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}
.orange-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
  color: white;
}
.orange-band p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; }

/* ─── TESTIMONIALS ────────────────────────── */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange-pale);
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
}
.stars { color: var(--orange); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.97rem; color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.97rem; }
.author-loc { font-size: 0.82rem; color: var(--text-light); }

/* ─── CONTACT FORM ────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: var(--navy);
  color: white;
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--orange-light);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.92rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.85rem; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: 0.2s;
}
.social-links a:hover { background: var(--orange); color: white; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── PAGE HERO (inner pages) ─────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  color: white;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--orange-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ─── PACKAGE CARD ────────────────────────── */
.pkg-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  background: white;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.pkg-card-img .country-bg {
  position: absolute;
  inset: 0;
  font-size: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
}
.pkg-card-img-overlay {
  position: relative;
  z-index: 1;
  padding: 1rem 1.25rem;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.pkg-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.4rem;
}
.pkg-card-img h3 { color: white; font-size: 1.3rem; }
.pkg-card-body { padding: 1.5rem; }
.pkg-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.25rem;
}
.pkg-feature {
  font-size: 0.8rem;
  background: var(--orange-pale);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 50px;
  font-weight: 600;
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 1rem;
}
.pkg-price .from { font-size: 0.85rem; color: var(--text-light); }
.pkg-price .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
}
.pkg-price .per { font-size: 0.85rem; color: var(--text-light); }
.pkg-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: white;
  padding: 12px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}
.pkg-btn:hover { opacity: 0.9; }

/* ─── CONTACT INFO CARD ───────────────────── */
.contact-card {
  background: var(--orange-pale);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: white;
}
.contact-card h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: 0.97rem; }
.contact-card a:hover { color: var(--orange); }

/* ─── VISA BADGES ─────────────────────────── */
.visa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1.5px solid var(--orange-border);
  border-radius: 50px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(247,107,28,0.08);
}
.visa-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* ─── WHY US BAND ─────────────────────────── */
.why-band {
  background: var(--orange-pale);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.why-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.why-item:last-child { margin-bottom: 0; }
.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange-border);
  line-height: 1;
  min-width: 40px;
}
.why-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.why-item p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── BACK TO TOP ─────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(247,107,28,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#backToTop.show { opacity: 1; transform: translateY(0); }

/* ─── UTILITY ─────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  border: 1px solid var(--orange-border);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
