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

:root {
  --navy: #1a4a8a;
  --blue: #2979d4;
  --blue-light: #e3f0ff;
  --orange: #f47c20;
  --orange-light: #fff3e6;
  --green: #3ab54a;
  --sun: #f9c22e;
  --sun-light: #fff8e0;
  --sand: #f7f9fc;
  --white: #ffffff;
  --text-dark: #1a2e4a;
  --text-mid: #4a5a72;
  --text-light: #7a8fa8;
  --border: rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 12px rgba(26,74,138,0.08);
  --shadow-md: 0 6px 28px rgba(26,74,138,0.13);
  --shadow-lg: 0 16px 48px rgba(26,74,138,0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 50px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { background: var(--blue-light); color: var(--blue); }
.nav-links a.active { background: var(--navy); color: var(--white); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-pill) !important;
}
.nav-cta:hover { background: #e06a10 !important; transform: translateY(-1px); }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 52px 40px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img { height: 56px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }

.viator-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.55); }
.viator-pill { background: #f97316; color: #fff; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 10px; letter-spacing: 0.04em; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s;
  letter-spacing: 0.01em;
}

.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 16px rgba(244,124,32,0.4); }
.btn-primary:hover { background: #e06a10; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,124,32,0.45); }

.btn-secondary { background: var(--white); color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-teal { background: var(--blue); color: var(--white); box-shadow: 0 4px 16px rgba(41,121,212,0.35); }
.btn-teal:hover { background: #1a6abf; transform: translateY(-2px); }

/* ── SECTION TITLES ── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: var(--text-mid); max-width: 560px; line-height: 1.7; text-align: center; margin: 0 auto; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.fade-up   { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.45s ease both; }

/* ── NAV dark for black-background logo ── */
.nav {
  background: rgba(20, 30, 50, 0.97) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.nav-links a { color: rgba(255,255,255,0.75) !important; }
.nav-links a:hover { background: rgba(41,121,212,0.3) !important; color: #ffffff !important; }
.nav-links a.active { background: var(--orange) !important; color: #ffffff !important; }

/* ── TOURS BADGE blue ── */
.tours-badge { background: var(--blue-light); color: #1a4a8a; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: var(--radius-pill); }
.viator-link { font-size: 12px; font-weight: 700; color: var(--orange); text-decoration: none; }
.viator-link:hover { color: var(--navy); }

/* ── DESTINATION card hover accent ── */
.dest-card:hover { border-color: var(--blue) !important; }

/* ── REGION NAV sidebar active ── */
.region-nav a:hover { background: var(--blue-light) !important; color: var(--blue) !important; }
.region-nav a.active { background: var(--navy) !important; color: #fff !important; }

/* ── SEARCH button ── */
.page-search button { background: var(--orange) !important; }
.search-bar button { background: var(--orange) !important; }

/* ── VALUE card top borders ── */
.value-card:nth-child(1) { border-top-color: var(--blue) !important; }
.value-card:nth-child(2) { border-top-color: var(--orange) !important; }
.value-card:nth-child(3) { border-top-color: var(--sun) !important; }

/* ── BRAND TEXT LOGO ── */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

.nav-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-brand em {
  font-style: italic;
  color: var(--orange);
}

/* ── RESPONSIVE / MOBILE ── */
@media (max-width: 768px) {

  /* NAV */
  .nav {
    padding: 0 16px;
    height: auto;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    width: 100%;
  }

  .nav-links a {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* BRAND TEXT */
  .nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 0.02em;
  }

  /* SECTION TITLES */
  .section-title { font-size: 26px; }

  /* FOOTER */
  .footer { padding: 36px 20px 20px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* BUTTONS */
  .btn { padding: 12px 22px; font-size: 14px; }
}

@media (max-width: 768px) {

  /* ── HOME PAGE ── */
  .hero { padding: 48px 20px 40px; min-height: auto; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .search-bar { flex-direction: column; border-radius: var(--radius); }
  .search-bar input { border-radius: var(--radius) var(--radius) 0 0; padding: 14px 18px; }
  .search-bar button { border-radius: 0 0 var(--radius) var(--radius); padding: 14px; }

  .trust-bar { gap: 14px; padding: 12px 16px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .trust-item { font-size: 12px; white-space: nowrap; }

  .regions-section { padding: 48px 16px; }
  .regions-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .region-card { min-height: 150px; padding: 20px 16px; }
  .region-card h3 { font-size: 18px; }
  .region-card.all { grid-column: 1 / -1; min-height: 100px; flex-direction: column; gap: 8px; text-align: center; justify-content: center; }

  .why-section { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-card { padding: 22px 16px; }
  .why-icon { font-size: 32px; margin-bottom: 10px; }

  .featured-section { padding: 48px 16px; }
  .featured-section .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .dest-scroll { grid-template-columns: 1fr 1fr; gap: 14px; }

  .cta-section { padding: 48px 20px; }
  .cta-section h2 { font-size: 26px; }
  .cta-section p { font-size: 15px; }
}

@media (max-width: 768px) {

  /* ── DESTINATIONS PAGE ── */
  .page-hero { padding: 40px 20px 36px; }
  .page-hero h1 { font-size: 30px; }
  .page-search { flex-direction: column; border-radius: var(--radius); }
  .page-search input { border-radius: var(--radius) var(--radius) 0 0; padding: 12px 16px; }
  .page-search button { border-radius: 0 0 var(--radius) var(--radius); padding: 12px; }

  .destinations-layout {
    grid-template-columns: 1fr;
    padding: 24px 16px 48px;
    gap: 0;
  }

  .sidebar {
    position: static;
    padding-right: 0;
    margin-bottom: 24px;
  }

  .region-nav { display: flex; flex-wrap: wrap; gap: 8px; }
  .region-nav li { margin-bottom: 0; }
  .region-nav a { padding: 7px 12px; font-size: 13px; border: 1px solid var(--border); border-radius: var(--radius-pill); }
  .region-nav .count { display: none; }

  .coming-soon-box { display: none; }

  .dest-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dest-card-body { padding: 10px 12px 12px; }
  .dest-card-body h3 { font-size: 13px; }
}

@media (max-width: 768px) {

  /* ── ABOUT PAGE ── */
  .story-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 28px;
  }

  .story-visual { height: 260px; order: 2; }
  .story-content { order: 1; }

  .stats-section { padding: 40px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 36px; }

  .values-section { padding: 48px 20px; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }

  .partner-section { padding: 48px 20px; }
  .partner-badge { flex-direction: column; text-align: center; padding: 20px; gap: 14px; }
  .partner-badge p { max-width: 100%; }

  .cta-section { padding: 48px 20px; }
  .cta-section h2 { font-size: 26px; }
}

@media (max-width: 768px) {

  /* ── CONTACT PAGE ── */
  .contact-layout {
    grid-template-columns: 1fr;
    padding: 40px 20px 48px;
    gap: 32px;
  }

  .contact-info { order: 1; }
  .contact-form-wrap { order: 2; }

  .faq-section { padding: 48px 20px; }
  .faq-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .dest-scroll { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
