
   MANDA CONSULTANTS — Main Stylesheet
   styles.css


/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: #ffffff;
  color: #1e293b;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.sidebar {
  width: 260px;
  min-height: 100vh;
  background: linear-gradient(160deg, #0f1f5c 0%, #1a3490 60%, #0f2d8a 100%);
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 50;
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(-260px);
}

.main-content {
  margin-left: 0;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}

/* ===== SIDEBAR LOGO ===== */
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 4px;
}

.logo-text p {
  color: white;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
}

.logo-text span {
  color: #f97316;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===== NAV ===== */
.nav-section-label {
  padding: 14px 20px 4px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  margin: 2px 10px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.nav-item:hover,
.nav-item.active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.nav-item.active {
  border-left-color: #f97316;
}

.nav-icon {
  font-size: 16px;
  width: 22px;
  text-align: center;
}

.sidebar-cta {
  margin: auto 12px 20px;
}

.sidebar-cta button {
  width: 100%;
  background: #f97316;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
  border-radius: 12px;
  transition: background 0.2s;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.sidebar-cta button:hover { background: #ea6b0a; }

/* ===== TOP BAR ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

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

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #f1f5f9;
  color: #475569;
  cursor: pointer;
  border: none;
}

.page-title {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-green {
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.btn-ask-ai {
  background: #f97316;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 10px;
  transition: background 0.2s;
}

.btn-ask-ai:hover { background: #ea6b0a; }

/* ===== PAGES ===== */
.page { display: none; animation: fadeIn 0.3s ease; }
.page.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== HERO ===== */
/* Slideshow sits behind everything */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Clear, unfiltered images — no blue tint */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Subtle gradient only at the bottom for text legibility — keeps images clear */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 31, 92, 0.15) 0%,
    rgba(15, 31, 92, 0.30) 60%,
    rgba(15, 31, 92, 0.60) 100%
  );
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fdba74;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: white;
}

.hero h1 span { color: #f97316; }

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(14px, 2vw, 18px);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: #f97316;
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 12px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}
.btn-primary:hover { background: #ea6b0a; transform: translateY(-1px); }

.btn-outline-white {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 12px;
  transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.25); }

.btn-outline-navy {
  border: 2px solid #0f1f5c;
  color: #0f1f5c;
  background: transparent;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 32px;
  border-radius: 12px;
  transition: all 0.2s;
}
.btn-outline-navy:hover { background: #0f1f5c; color: white; }

.btn-sm-orange {
  background: #f97316;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 10px;
  transition: background 0.2s;
}
.btn-sm-orange:hover { background: #ea6b0a; }

.btn-sm-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 10px;
  transition: background 0.2s;
}
.btn-sm-ghost:hover { background: rgba(255, 255, 255, 0.25); }

.btn-submit {
  width: 100%;
  background: #f97316;
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border-radius: 12px;
  transition: background 0.2s;
  margin-top: 4px;
}
.btn-submit:hover { background: #ea6b0a; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status { font-size: 13px; font-weight: 600; padding: 10px 12px; border-radius: 8px; margin-bottom: 12px; display: none; }
.form-status.show { display: block; }
.form-status.success { background: #d1fae5; color: #065f46; }
.form-status.error   { background: #fee2e2; color: #991b1b; }

/* ===== STATS ===== */
.stats-row {
  max-width: 900px;
  margin: 20px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-card {
  background: white;
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: #0f1f5c;
  line-height: 1;
}
.stat-num.orange { color: #f97316; }
.stat-label { font-size: 12px; color: #64748b; margin-top: 4px; font-weight: 500; }

/* ===== SECTION ===== */
.section { max-width: 960px; margin: 0 auto; padding: 48px 24px; }
.section-title { font-size: 24px; font-weight: 800; color: #0f1f5c; margin-bottom: 6px; }
.section-sub  { font-size: 14px; color: #64748b; margin-bottom: 28px; }

/* ===== DESTINATION CARDS (Home) ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dest-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.dest-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.14); }
.dest-card img { width: 100%; height: 180px; object-fit: cover; }
.dest-card-body { padding: 16px; }
.dest-card-title { font-size: 15px; font-weight: 700; color: #0f1f5c; margin-bottom: 4px; }
.dest-card-desc  { font-size: 12px; color: #64748b; line-height: 1.5; }

/* ===== PILLS ===== */
.pill {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pill-de     { background: #fef9c3; color: #854d0e; }
.pill-pl     { background: #fee2e2; color: #991b1b; }
.pill-uk     { background: #dbeafe; color: #1e40af; }
.pill-nz     { background: #d1fae5; color: #065f46; }
.pill-au     { background: #fee2e2; color: #b91c1c; }
.pill-ca     { background: #dbeafe; color: #1d4ed8; }
.pill-ie     { background: #d1fae5; color: #047857; }
.pill-mt     { background: #fee2e2; color: #b91c1c; }
.pill-es     { background: #fef9c3; color: #b45309; }
.pill-nl     { background: #ffedd5; color: #c2410c; }
.pill-ae     { background: #d1fae5; color: #065f46; }
.pill-red    { background: #fee2e2; color: #991b1b; }
.pill-blue   { background: #dbeafe; color: #1e40af; }
.pill-green  { background: #d1fae5; color: #065f46; }
.pill-yellow { background: #fef9c3; color: #854d0e; }
.pill-purple { background: #ede9fe; color: #5b21b6; }
.pill-orange { background: #ffedd5; color: #c2410c; }

.see-all-row { text-align: center; margin-top: 28px; }

/* ===== WHY US (dark) ===== */
.why-section { background: #0f1f5c; color: white; padding: 60px 24px; }
.why-inner   { max-width: 960px; margin: 0 auto; }
.why-title   { font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 40px; }
.why-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card    { text-align: center; }
.why-icon    { font-size: 40px; margin-bottom: 14px; }
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ===== DESTINATION FULL CARDS (Destinations Page) ===== */
.dest-full-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-bottom: 24px;
}

.dest-full-img { position: relative; height: 220px; }
.dest-full-img img { width: 100%; height: 100%; object-fit: cover; }

.dest-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.dest-full-overlay h2 { color: white; font-size: 22px; font-weight: 800; }

.dest-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.dest-list h3 { font-size: 14px; font-weight: 700; color: #0f1f5c; margin-bottom: 12px; }
.dest-list li { font-size: 13px; color: #475569; padding: 4px 0; display: flex; gap: 8px; line-height: 1.5; }
.dest-footer  { padding: 0 24px 20px; }

/* ===== PROGRAMS ===== */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.prog-card {
  background: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
  transition: box-shadow 0.2s;
}
.prog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.prog-icon   { font-size: 36px; margin-bottom: 14px; }
.prog-card h3 { font-size: 16px; font-weight: 700; color: #0f1f5c; margin-bottom: 8px; }
.prog-card p  { font-size: 13px; color: #64748b; margin-bottom: 14px; line-height: 1.5; }

.prog-cta {
  background: #0f1f5c;
  border-radius: 18px;
  padding: 36px;
  text-align: center;
  color: white;
  margin-top: 24px;
}
.prog-cta h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.prog-cta p  { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 20px; }
.prog-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== HOW IT WORKS ===== */
.steps { display: flex; flex-direction: column; gap: 16px; }

.step-card {
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #dc2626);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}

.step-card h3 { font-size: 15px; font-weight: 700; color: #0f1f5c; margin-bottom: 5px; }
.step-card p  { font-size: 13px; color: #64748b; line-height: 1.6; }
.steps-cta    { text-align: center; margin-top: 32px; }

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testi-card {
  background: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.testi-card p { font-size: 13px; color: #475569; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.testi-name { font-weight: 700; color: #0f1f5c; font-size: 13px; }
.testi-uni  { font-size: 11px; color: #94a3b8; margin-top: 2px; }

.rating-box {
  background: linear-gradient(135deg, #0f1f5c, #1a3490);
  border-radius: 18px;
  padding: 36px;
  text-align: center;
  color: white;
  margin-top: 24px;
}
.rating-num { font-size: 52px; font-weight: 800; }
.rating-sub { color: rgba(255,255,255,0.65); font-size: 13px; margin-top: 4px; }
.stars      { color: #fbbf24; font-size: 26px; margin-top: 8px; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: white; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq-q span:first-child { font-size: 14px; font-weight: 600; color: #0f1f5c; }
.faq-toggle { color: #f97316; font-size: 22px; font-weight: 700; flex-shrink: 0; line-height: 1; }
.faq-a { display: none; padding: 0 20px 18px; font-size: 13px; color: #64748b; line-height: 1.7; }
.faq-a.open { display: block; }

.faq-prompt {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  margin-top: 24px;
}
.faq-prompt p:first-child    { font-weight: 700; color: #9a3412; margin-bottom: 6px; font-size: 14px; }
.faq-prompt p:last-of-type   { font-size: 13px; color: #c2410c; margin-bottom: 16px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.contact-form h3 { font-size: 17px; font-weight: 700; color: #0f1f5c; margin-bottom: 20px; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: #475569; margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #1a3490; }
.form-group textarea { resize: none; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.info-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-icon   { font-size: 26px; }
.info-card h4 { font-size: 14px; font-weight: 700; color: #0f1f5c; margin-bottom: 4px; }
.info-card p  { font-size: 13px; color: #64748b; line-height: 1.6; }

.social-card { background: #0f1f5c; border-radius: 16px; padding: 20px; }
.social-card h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-btn {
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}
.social-btn:hover { background: rgba(255,255,255,0.22); }

/* ===== CHATBOT ===== */
.chatbot-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #dc2626);
  box-shadow: 0 6px 24px rgba(249,115,22,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  transition: transform 0.2s;
}
.chatbot-fab:hover { transform: scale(1.1); }

.chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  width: 360px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 520px;
}
.chatbot-window.open { display: flex; animation: fadeIn 0.3s ease; }

.chat-header {
  background: linear-gradient(135deg, #0f1f5c, #1a3490);
  color: white;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.chat-header-info p    { font-weight: 700; font-size: 13px; }
.chat-header-info span { font-size: 11px; color: rgba(255,255,255,0.6); }
.chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
}
.chat-close:hover { color: white; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 340px;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }

.msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.55;
}
.msg.bot  { background: #f0f4ff; color: #1e3a8a; border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.user { background: linear-gradient(135deg, #1a3490, #0f1f5c); color: white; border-bottom-right-radius: 4px; align-self: flex-end; }

.quick-btns { display: flex; flex-wrap: wrap; gap: 6px; }
.qbtn {
  font-size: 11px;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #bfdbfe;
  cursor: pointer;
  transition: background 0.15s;
}
.qbtn:hover { background: #dbeafe; }

.typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
  background: #f0f4ff;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}
.typing span {
  width: 7px;
  height: 7px;
  background: #1a3490;
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%            { transform: translateY(-6px); }
}

.chat-input-area {
  padding: 12px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 8px;
}
.chat-input {
  flex: 1;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  outline: none;
}
.chat-input:focus { border-color: #1a3490; }
.chat-send {
  background: #f97316;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.chat-send:hover { background: #ea6b0a; }

/* ===== OVERLAY ===== */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 49; display: none; }
.overlay.show { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-260px); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0 !important; }
  .hamburger { display: flex; }
  .btn-ask-ai { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .dest-body { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .chatbot-window { width: calc(100vw - 40px); right: 20px; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .prog-grid  { grid-template-columns: 1fr; }
  .stats-row  { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 40px 16px 60px; }
  .page-banner { min-height: 200px; padding: 40px 16px; }
  .page-banner h1 { font-size: 24px; }
  .page-banner p { font-size: 12px; }
}

/* ===== PAGE BANNERS (clear background images for inner pages) ===== */
.page-banner {
  position: relative;
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-bottom: 0;
}

.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Subtle dark gradient at the bottom so the title is readable while the image stays clear */
.page-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 31, 92, 0.25) 0%,
    rgba(15, 31, 92, 0.45) 60%,
    rgba(15, 31, 92, 0.70) 100%
  );
}

.page-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 24px;
}

.page-banner h1 {
  color: #ffffff;
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(13px, 1.6vw, 16px);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.page-banner-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.22);
  border: 1px solid rgba(249, 115, 22, 0.55);
  color: #fed7aa;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.6px;
}

/* ===== APPLY NOW BUTTON (hero) ===== */
.btn-apply {
  background: #f97316;
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 12px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.55);
  border: 2px solid #ffffff;
}
.btn-apply:hover { background: #ea6b0a; transform: translateY(-1px); }

/* ===== DESTINATION FOOTER (apply button) ===== */
.dest-footer-apply {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 24px 20px;
}

/* ===== COUNTRY SECTION DIVIDER ===== */
.dest-full-card + .dest-full-card {
  margin-top: 28px;
}
