:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-warm: #fff7ed;
  --ink: #10232b;
  --text: #263f49;
  --muted: #627782;
  --line: #d7e2e2;
  --brand: #006060;
  --brand-dark: #004545;
  --accent: #faaa34;
  --sun: #faaa34;
  --forest: #003636;
  --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
  --shadow-strong: 0 20px 60px -15px rgba(0,0,0,0.12);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
.action-link {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

button:hover,
.action-link:hover {
  transform: translateY(-2px);
}

button:active,
.action-link:active {
  transform: scale(0.98);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(244, 179, 66, 0.72);
  outline-offset: 3px;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.offer-strip {
  background: linear-gradient(90deg, var(--forest), var(--brand-dark), var(--accent));
  color: #ffffff;
  overflow: hidden;
}

.offer-track {
  display: flex;
  padding: 0.58rem 0;
  width: max-content;
  animation: marquee 16s linear infinite;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .offer-strip:hover .offer-track {
    animation-play-state: paused;
  }
}

.marquee-content {
  display: flex;
  gap: 4rem;
  padding-right: 4rem;
  font-size: 0.86rem;
  font-weight: 800;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease-out);
}

.site-header.hide-on-scroll {
  transform: translateY(-100%);
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
  border-bottom-color: transparent;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto auto minmax(220px, 300px) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.86rem 0;
}

.logo {
  color: var(--ink);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.logo-brand {
  color: var(--brand);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-nav-fullscreen {
  display: none;
}

.main-nav a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.2s var(--ease-out);
}
.main-nav a:hover {
  opacity: 0.7;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 42px;
  padding: 0 0.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-box span {
  color: var(--muted);
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 50;
}

.mobile-drawer,
.mobile-drawer-overlay {
  display: none;
}

.solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.64rem 1rem;
  color: #10232b;
  font-weight: 700;
  background: var(--accent);
  box-shadow: 0 10px 18px rgba(250, 170, 52, 0.22);
}

.solid:hover {
  background: #f19d22;
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 0.94rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 560px;
  height: 70svh;
  max-height: 680px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 50%, rgba(8, 28, 33, 0.82) 0%, rgba(8, 28, 33, 0.42) 60%, rgba(8, 28, 33, 0.1) 100%),
    url("https://images.unsplash.com/photo-1514282401047-d79a71a590e8?auto=format&fit=crop&w=1800&q=82");
  background-position: center 42%;
  background-size: cover;
}

.hero-content {
  padding: 2.2rem 0;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0.45rem 0 0;
  color: #ffffff;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.hero-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.planner-form {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr auto;
  gap: 0.75rem;
  max-width: 1040px;
  margin-top: 1.6rem;
  padding: 0.75rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.planner-form label {
  display: grid;
  gap: 0.34rem;
}

.planner-form span,
.newsletter-form span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.planner-form input,
.planner-form select,
.newsletter-form input {
  min-width: 0;
  min-height: 42px;
  padding: 0.62rem 0.7rem;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.planner-form input:focus,
.planner-form select:focus,
.newsletter-form input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 96, 96, 0.15);
  outline: none;
}

.planner-form button {
  align-self: end;
}

.hero-metrics {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
}

.hero-metrics article {
  flex: 1;
  padding: 1.2rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.hero-metrics h3,
.hero-metrics p {
  margin: 0;
}

.hero-metrics h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-metrics p {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 500;
}

@media (max-width: 576px) {
  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    overflow: visible;
  }
  
  .hero-metrics article {
    padding: 1rem 0.8rem;
  }
  
  .hero-metrics article:nth-child(3) {
    grid-column: 1 / -1;
  }
}
.chips-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.chips {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.9rem 0;
  scrollbar-width: thin;
}

.chip {
  flex: 0 0 auto;
  padding: 0.5rem 0.82rem;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.chip:hover {
  transform: translateY(-1px);
  background: var(--bg);
}

.chip.active {
  color: var(--brand-dark);
  border-color: var(--brand);
  background: #ebfffd;
}

.section {
  padding: 7rem 0;
}

.section-soft {
  background: #edf3f1;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.2rem;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-head a {
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration: none;
}

.section-head.centered {
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head.centered p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.tour-card,
.mini-card,
.stats-grid article,
.reviews-grid article {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  will-change: transform;
}

.tour-card:hover,
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.tour-card img {
  display: block;
  width: 100%;
  height: 218px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.tour-card:hover img {
  transform: scale(1.05);
}

.tour-card > div {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card h3,
.mini-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

.tour-card p,
.mini-card p {
  margin: 0.46rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.card-foot span {
  color: var(--muted);
  font-size: 0.82rem;
}

.card-foot strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.themes-grid article {
  text-align: center;
  cursor: pointer;
}

.themes-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 4px solid #ffffff;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.themes-grid h3 {
  margin: 0.6rem 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.themes-grid article:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.themes-grid article:hover h3 {
  color: var(--brand);
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.stacked-cards {
  display: grid;
  gap: 0.85rem;
}

.mini-card {
  display: grid;
  grid-template-columns: 145px 1fr;
}

.mini-card img {
  width: 100%;
  height: 100%;
  min-height: 136px;
  object-fit: cover;
}

.mini-card div {
  padding: 0.85rem;
}

.tab-list {
  display: inline-flex;
  gap: 0.5rem;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0.5rem;
}

.tab-button {
  padding: 0.6rem 1.4rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-button:hover {
  background: var(--bg);
  border-color: #cbd5e1;
}

.tab-button.is-active {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(0, 96, 96, 0.25);
}

.tab-panels {
  margin-top: 1rem;
}

.panel {
  display: none;
}

.panel.is-active {
  display: block;
}

.destinations-grid article {
  position: relative;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s var(--ease-out);
  cursor: pointer;
  background: #081c21;
}

.destinations-grid article:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.destinations-grid article .dest-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.destinations-grid article:hover .dest-bg {
  transform: scale(1.08);
}

.destinations-grid article .dest-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  color: #ffffff;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 21, 27, 0.7) 50%, rgba(6, 21, 27, 0.95) 100%);
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.destinations-grid article:hover .dest-content {
  padding-bottom: 2rem;
}

.destinations-grid h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.destinations-grid p {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  color: #ffffff;
  background: linear-gradient(120deg, var(--forest), var(--brand-dark) 54%, var(--accent));
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.cta-band h2 {
  margin: 0;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cta-band p {
  max-width: 62ch;
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.ghost.light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}

.stats-grid,
.reviews-grid {
  display: grid;
  gap: 0.85rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-grid article,
.reviews-grid article {
  padding: 1rem;
}

.stats-grid article {
  text-align: center;
}

.stats-grid h3 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 1.45rem;
}

.stats-grid p,
.reviews-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.stats-grid p,
.reviews-grid p,
.reviews-grid h3 {
  margin: 0;
}

.reviews-grid p {
  color: #38515c;
}

.reviews-grid h3 {
  margin-top: 1rem;
  color: var(--ink);
  font-size: 1rem;
}

.site-footer {
  margin-top: 3rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-top-band {
  background: var(--bg);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
}

.flex-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.engagement-newsletter {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.engagement-newsletter h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
}

.engagement-newsletter .small {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px; /* Matches the brand's pill shape */
  min-width: 260px;
  background: var(--surface);
}

.engagement-socials h4 {
  margin: 0 0 0.8rem;
  color: var(--ink);
  font-size: 1.1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 96, 96, 0.25);
}

.footer-mobile-brand {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4.5rem 0 3rem;
}

.footer-brand-col h4 {
  margin-top: 0;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: var(--muted);
}

.footer-contact-info svg {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-info a {
  display: inline;
  margin: 0;
}

.footer-grid h4 {
  margin: 0 0 1.5rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.footer-grid a:hover {
  color: var(--brand);
  transform: translateX(6px);
}

.small {
  font-size: 0.85rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-bottom a {
  margin-left: 1.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--brand);
}
.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #ffffff;
  font-size: 1.3rem;
  text-decoration: none;
  background: #16a34a;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.35);
}


/* --- UI Audited Styles --- */
.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}
.intent-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.intent-card:hover,
.intent-card.active {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--brand);
}
.intent-card svg {
  color: var(--brand);
  margin-bottom: 1.2rem;
}
.intent-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
}
.intent-card p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.trust-section {
  background: var(--surface-warm);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border-radius: 16px;
}
.trust-card svg {
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.trust-card h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
}
.trust-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Reviews Styles */
.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--line);
}
.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.review-author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.review-tag {
  font-size: 0.75rem;
  background: var(--surface-warm);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  color: var(--muted);
  margin-left: 0.5rem;
  font-weight: normal;
}
.review-date {
  font-size: 0.8rem;
  color: var(--muted);
}
.review-stars {
  display: flex;
  gap: 0.2rem;
}
.review-card h4 {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.review-card > p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}
.review-photos {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  overflow-x: auto;
}
.review-photos img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
/* --- End UI Audited Styles --- */

@media (max-width: 1024px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    padding: 0.72rem 0;
  }

  .search-box,
  .header-actions .ghost,
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .planner-form,
  .cards-3,
  .themes-grid,
  .split-layout,
  .stats-grid,
  .reviews-grid,
  .intent-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .planner-form button {
    grid-column: 1 / -1;
  }

  .mobile-drawer-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(16, 35, 43, 0.6);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  body.nav-open .mobile-drawer-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 340px;
    max-width: 85vw;
    height: 100svh;
    background: var(--surface);
    z-index: 100;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.35s var(--ease-out);
  }

  body.nav-open .mobile-drawer {
    right: 0;
  }

  body.nav-open .site-header .logo {
    opacity: 0;
    transition: opacity 0.2s;
  }

  body.nav-open .site-header .mobile-menu-toggle {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }

  .mobile-drawer-header,
  .mobile-drawer-body,
  .mobile-drawer-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
  }

  .mobile-drawer-close {
    background: none;
    border: none;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: -0.25rem;
  }

  .mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mobile-drawer-nav a {
    color: var(--ink);
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    letter-spacing: 0.01em;
  }

  .mobile-drawer-footer {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--line);
  }

  .mobile-plan-btn {
    display: block !important;
    text-align: center;
    width: 100%;
    padding: 1rem !important;
    font-size: 1.1rem;
    border-radius: 999px;
  }

  .nav-dropdown-wrapper {
    width: 100%;
  }

  .mega-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 1rem;
    border-left: 2px solid var(--line);
    margin-top: 1rem;
    width: 100%;
    border-radius: 0;
  }

  .mega-menu-inner {
    padding: 0;
  }

  .has-dropdown.active + .mega-menu {
    display: block;
  }
}

@media (max-width: 760px) {

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .logo {
    font-size: 1.65rem;
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    align-items: start;
    padding: 1.55rem 0 1rem;
    background-position: center;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 0.98rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .section-head h2 {
    font-size: 1.82rem;
    margin-bottom: 1rem;
  }

  .tab-panels {
    margin-top: 2rem;
  }

  .intent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .planner-form,
  .split-layout,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    padding: 3rem 0 2rem;
  }
  
  .footer-brand-col {
    grid-column: span 2;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .cards-3,
  .themes-grid,
  .reviews-grid,
  .stacked-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    width: 100vw;
    margin-left: -4vw;
    padding: 0 4vw 1.5rem 4vw;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .cards-3::-webkit-scrollbar,
  .themes-grid::-webkit-scrollbar,
  .reviews-grid::-webkit-scrollbar,
  .stacked-cards::-webkit-scrollbar {
    display: none;
  }

  .cards-3 > article,
  .reviews-grid > article,
  .stacked-cards > article {
    flex: 0 0 82%;
    scroll-snap-align: start;
    max-width: none;
  }

  .themes-grid > article {
    flex: 0 0 42%;
    scroll-snap-align: start;
    max-width: none;
  }

  .planner-form {
    margin-top: 1rem;
    padding: 0.65rem;
  }

  .destinations-grid article {
    aspect-ratio: 16 / 9;
  }

  .destinations-grid h3 {
    font-size: 1.25rem;
  }

  .themes-grid img {
    max-width: 110px;
    margin: 0 auto;
  }

  .intent-grid article {
    padding: 1.25rem 0.5rem;
  }

  .stats-grid article {
    padding: 1rem 0.5rem;
  }

  .stats-grid h3 {
    font-size: 1.5rem;
  }

  .stats-grid p {
    font-size: 0.85rem;
  }

  .intent-grid h3 {
    font-size: 1.1rem;
  }

  .mini-card {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .mini-card img {
    height: 196px;
  }

  .card-foot,
  .cta-band,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .footer-bottom a {
    margin-right: 0.75rem;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}



/* MEGA MENU */
.nav-dropdown-wrapper { position: relative; display: flex; align-items: center; height: 100%; }
.has-dropdown { display: flex; align-items: center; gap: 0.25rem; padding: 1.2rem 0; }
.chevron { transition: transform 0.2s ease; }
@media (min-width: 1081px) {
  .nav-dropdown-wrapper:hover .chevron { transform: rotate(180deg); }
  .nav-dropdown-wrapper:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
}
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); width: 420px; background: #ffffff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); opacity: 0; visibility: hidden; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); z-index: 100; pointer-events: none; }
.mega-menu-inner { display: grid; grid-template-columns: 1fr; padding: 1.5rem; gap: 2rem; }
.mega-col h4 { margin: 0 0 1rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.style-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.style-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem; border-radius: 8px; transition: background 0.2s ease; }
.style-item:hover { background: var(--bg); }
.style-item .style-icon { font-size: 1.4rem; line-height: 1; }
.style-item h5 { margin: 0; font-size: 0.95rem; color: var(--ink); }
.style-item p { margin: 0.2rem 0 0; font-size: 0.8rem; color: var(--muted); white-space: normal; line-height: 1.3; }
.featured-col { position: relative; border-left: 1px solid var(--line); padding-left: 2rem; }
.featured-menu-card { position: relative; border-radius: 8px; overflow: hidden; }
.featured-menu-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; display: block; }
.featured-menu-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1rem 1rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); color: #fff; }
.featured-menu-content span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--sun); font-weight: 700; display: block; margin-bottom: 0.25rem; }
.featured-menu-content h5 { margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; color: #fff; }
.view-deal { font-size: 0.85rem; font-weight: 700; color: #fff; text-decoration: none; }
.view-deal:hover { text-decoration: underline; }

/* Tourism Partners Animations */
.partner-logo-img {
  filter: grayscale(1) opacity(0.65);
  mix-blend-mode: multiply;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, filter, opacity;
  animation: partnerEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

.partner-logo-img:hover {
  transform: translateY(-4px) scale(1.05);
  filter: grayscale(0) opacity(1);
  mix-blend-mode: normal;
}

@keyframes partnerEntrance {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.tourism-partners .partner-logo-img:nth-child(2) { animation-delay: 0.1s; }
.tourism-partners .partner-logo-img:nth-child(3) { animation-delay: 0.2s; }
.tourism-partners .partner-logo-img:nth-child(4) { animation-delay: 0.3s; }
.tourism-partners .partner-logo-img:nth-child(5) { animation-delay: 0.4s; }
.tourism-partners .partner-logo-img:nth-child(6) { animation-delay: 0.5s; }

/* ==========================================================================
   PACKAGE DETAIL PAGE
   ========================================================================== */

.package-detail-page {
  padding: 3rem 0 6rem;
  background-color: var(--bg);
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--brand);
  margin-bottom: 2rem;
  font-weight: 500;
}
.breadcrumb a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}
.breadcrumb a:hover {
  color: var(--brand-dark);
}
.breadcrumb svg {
  color: var(--muted);
}
#breadcrumb-active {
  color: var(--ink);
}

/* Header Info */
.package-header-info {
  margin-bottom: 2.5rem;
}
.package-title-row {
  margin-bottom: 1rem;
}
.package-title-row h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
}

.quick-glance {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
#pkg-meta {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.15rem;
}

/* Mosaic Gallery */
.package-mosaic-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.mosaic-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}
.mosaic-item img:hover {
  transform: scale(1.05);
}
.mosaic-main {
  grid-row: 1 / span 2;
}

/* Layout */
.package-detail-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
}

/* Left Column */
.detail-section {
  margin-bottom: 4rem;
}
.detail-section h2 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.desc-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 65ch;
}

/* Accordion */
.itinerary-accordion {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}
.itinerary-day {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.day-label {
  background: var(--brand);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.day-content-wrapper h3 {
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 700;
  margin: 0 0 0.75rem 0;
}
.day-content-wrapper p {
  color: var(--text);
  line-height: 1.7;
  margin: 0;
  max-width: 60ch;
}

/* Inclusions & Exclusions */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.inc-card, .exc-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}
.inc-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.exc-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.inc-card ul, .exc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.inc-card li, .exc-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--text);
}
.inc-card li svg {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.exc-card li svg {
  color: var(--muted);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Right Column Sticky Booking Widget */
.package-booking-sidebar {
  position: relative;
}
.sticky-booking-card {
  position: sticky;
  top: 120px;
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  padding: 2.5rem;
}

.price-header {
  margin-bottom: 2rem;
}
.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.unit {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 500;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.booking-form label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.booking-form input,
.booking-form select {
  padding: 1rem 1.2rem;
  border: none;
  border-radius: 8px;
  background: #f8fafc;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: box-shadow 0.2s var(--ease-out);
  width: 100%;
}
.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--sun);
}
.booking-form .submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1.2rem;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  background: var(--sun);
  color: var(--ink);
  border-radius: 8px; /* Based on user feedback in image 2 they might prefer 8px for this specific card button, let's keep it pill using 999px to strictly match the brand */
  border-radius: 999px; 
}
.booking-form .submit-btn:hover {
  background: var(--accent);
}

/* Media Queries for Package Detail */
@media (max-width: 1080px) {
  .package-detail-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .sticky-booking-card {
    position: static;
  }
}
@media (max-width: 760px) {
  .package-title-row h1 {
    font-size: 2.2rem;
  }
  .package-mosaic-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 350px;
    gap: 0;
  }
  .mosaic-item {
    border-radius: 0;
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
  }
  .mosaic-item:not(.mosaic-main) {
    display: none;
  }
  .mosaic-main {
    grid-row: 1;
  }
  .inc-exc-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PACKAGES LISTING PAGE (IMAGE 3 DESIGN)
   ========================================================================== */

.packages-listing-page {
  background-color: #f0f4f8; /* Soft blue-gray background visible in the right side of image 3 */
  padding-bottom: 6rem;
}

/* Immersive Hero */
.packages-hero {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.packages-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.hero-text {
  max-width: 500px;
  color: #fff;
}
.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  color: #fff;
  line-height: 1.1;
}
.hero-text p {
  font-size: 1.25rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Floating Hit Pick Card */
.hit-pick-card {
  width: 420px;
  background: #000; /* Dark card background */
  border-radius: 16px;
  position: relative;
  margin-top: 2rem;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.hit-pick-badge {
  position: absolute;
  top: -16px;
  left: 20px;
  background: #2dd4bf; /* Neon green/teal */
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.hit-pick-badge::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-top: 8px solid #14b8a6;
  border-right: 8px solid transparent;
}
.hit-pick-content {
  padding: 2.5rem 2rem 2rem;
}
.hit-pick-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.3;
}
.hit-pick-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hit-pick-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.hit-pick-features li svg {
  color: #2dd4bf; /* Green check */
}
.hit-pick-footer {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hit-pick-price {
  display: flex;
  flex-direction: column;
}
.hit-pick-price .price {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hit-pick-price .unit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.view-detail-btn {
  background: #2dd4bf;
  color: #000;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 8px; /* Slightly squared button as in screenshot */
}
.view-detail-btn:hover {
  background: #14b8a6;
}

/* Trust Bar */
.trust-bar {
  background: #0f172a; /* Dark blue/slate */
  padding: 1.5rem 0;
  color: #fff;
}
.trust-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.fb-icon {
  background: #1877f2;
  color: #fff;
}
.google-icon {
  background: #fff;
  color: #ea4335;
}
.trophy-icon {
  background: none;
  font-size: 1.8rem;
}
.trust-text {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.trust-text strong {
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.trust-text strong svg {
  color: var(--sun);
}
.trust-review {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 380px;
}
.reviewer-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.trust-review .trust-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}

/* Main Listing Layout */
.packages-main-section {
  padding-top: 3rem;
}
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
}

/* Sidebar Filters */
.filters-sidebar {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  align-self: start;
}
.filter-group h4 {
  font-size: 0.85rem;
  color: var(--brand);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink);
}
.filter-checkbox:last-child {
  margin-bottom: 0;
}
.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--brand);
}

/* Toolbar & Grid */
.packages-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.sort-dropdown {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sort-dropdown span {
  font-size: 0.95rem;
  color: var(--muted);
}
.sort-dropdown select {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background-color: var(--surface);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
}

/* Responsive */
@media (max-width: 1080px) {
  .layout-with-sidebar {
    grid-template-columns: 1fr;
  }
  .filters-sidebar {
    display: none; /* Can be turned into an off-canvas menu for mobile */
  }
  .packages-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .hit-pick-card {
    width: 100%;
  }
}

/* ==========================================================================
   HORIZONTAL PACKAGE CARDS (LISTING PAGE UI REBUILD)
   ========================================================================== */

/* Make the sidebar sticky */
.filters-sidebar {
  position: sticky;
  top: 100px; /* offset from sticky header */
}

/* Redefine grid for horizontal cards */
.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Horizontal Card UI */
.horizontal-package-card {
  display: flex;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s var(--ease-out);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.horizontal-package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.1);
}

/* Left Image Area */
.hpc-image {
  flex: 0 0 320px;
  position: relative;
}
.hpc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hpc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--sun);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Middle Content Area */
.hpc-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-right: 1px dashed var(--line);
}
.hpc-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hpc-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.2;
}
.hpc-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}
.hpc-inclusion-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--bg);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}
.hpc-inclusion-item svg {
  color: var(--brand);
}

/* Right Pricing Area */
.hpc-pricing {
  flex: 0 0 240px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fafbfc;
}
.hpc-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--brand);
  color: #fff;
  align-self: flex-start;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: auto;
}
.hpc-rating span {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}
.price-block {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.strike-price {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 0.2rem;
}
.final-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: block;
}
.price-unit {
  font-size: 0.8rem;
  color: var(--muted);
}
.hpc-pricing .action-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 1080px) {
  .horizontal-package-card {
    flex-direction: column;
  }
  .hpc-image {
    flex: none;
    height: 240px;
  }
  .hpc-content {
    border-right: none;
    border-bottom: 1px dashed var(--line);
  }
  .hpc-pricing {
    flex: none;
    background: transparent;
    padding-top: 1rem;
  }
  .hpc-rating {
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
   TOUR CATALOG PAGE REBUILD
   ========================================================================== */

/* Catalog Header */
.catalog-header {
  padding: 8rem 1rem 4rem;
  background: var(--surface);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.catalog-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.catalog-header p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Search Bar */
.catalog-search-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.catalog-search-wrapper:focus-within {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: var(--brand);
}
.catalog-search-wrapper svg {
  color: var(--muted);
  margin-right: 0.5rem;
}
.catalog-search-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
}
.catalog-search-wrapper input::placeholder {
  color: #a0aec0;
}
.catalog-search-wrapper button {
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

/* Catalog Controls (Sticky Toolbar) */
.catalog-controls-container {
  position: sticky;
  top: 61px; /* Below site header */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 40;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 760px) {
  .catalog-controls {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Filter Chips */
.catalog-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.catalog-filters::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.filter-chip {
  flex-shrink: 0;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-chip:hover {
  border-color: var(--muted);
  color: var(--ink);
}
.filter-chip.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Sorting */
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.catalog-sort label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.catalog-sort select {
  padding: 0.4rem 2rem 0.4rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23718096%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.65rem auto;
}
.catalog-sort select:focus {
  border-color: var(--brand);
}

/* Catalog Grid Wrapper */
.catalog-main {
  padding: 3rem 0 5rem;
  background: var(--bg);
  min-height: 50vh;
}
.catalog-empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
  display: none;
}
.catalog-empty-state h3 {
  color: var(--ink);
  margin-bottom: 0.5rem;
}

/* Dedicated Catalog Card (optimized for comparison) */
.catalog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}
.cc-image {
  height: 200px;
  position: relative;
  background: #edf2f7;
}
.cc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cc-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cc-meta {
  font-size: 0.8rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cc-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.3;
}
.cc-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.cc-price-block {
  display: flex;
  flex-direction: column;
}
.cc-price-label {
  font-size: 0.75rem;
  color: var(--muted);
}
.cc-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.cc-button {
  background: var(--surface);
  color: var(--brand);
  border: 1px solid var(--brand);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}
.catalog-card:hover .cc-button {
  background: var(--brand);
  color: #fff;
}

/* ==========================================================================
   PACKAGE DETAIL PAGE REBUILD
   ========================================================================== */
.package-detail-page {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background: var(--bg);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--brand);
}
.breadcrumb span {
  color: var(--ink);
  font-weight: 500;
}

/* Title Area */
.package-header-info {
  margin-bottom: 2rem;
}
.package-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1rem;
}
.package-title-row h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--surface);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.rating-badge svg {
  width: 16px;
  height: 16px;
  fill: #FFB400; /* gold star */
}
.rating-count {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.25rem;
}

.quick-glance {
  display: flex;
  gap: 1.5rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
  align-items: center;
}
.quick-glance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.quick-glance-item svg {
  color: var(--brand);
}

/* Featured Image */
.package-featured-image {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 4rem;
  background: #edf2f7;
  position: relative;
}
.package-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.package-featured-image:hover img {
  transform: scale(1.02);
}
@media (max-width: 760px) {
  .package-featured-image {
    height: 300px;
    margin-bottom: 3rem;
  }
}

/* Layout */
.package-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1080px) {
  .package-detail-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Left Column Content */
.detail-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line);
}
.detail-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.detail-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.desc-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

/* Package Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.highlight-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.highlight-card svg {
  color: var(--brand);
}
.highlight-card span {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

/* Itinerary Timeline */
.itinerary-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.itinerary-day {
  display: flex;
  gap: 1.5rem;
  position: relative;
}
.itinerary-day::before {
  content: '';
  position: absolute;
  top: 56px;
  bottom: -1.5rem;
  left: 28px;
  width: 2px;
  background: var(--line);
  z-index: 0;
}
.itinerary-day:last-child::before {
  display: none;
}
.day-label {
  width: 56px;
  height: 56px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  z-index: 1;
  border: 4px solid var(--bg);
}
.day-label span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: -4px;
}
.day-content-wrapper {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.5rem;
  border-radius: 16px;
  flex: 1;
}
.day-content-wrapper h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.day-content-wrapper p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* Inclusions / Exclusions */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 760px) {
  .inc-exc-grid {
    grid-template-columns: 1fr;
  }
}
.inc-card, .exc-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--line);
}
.inc-card h4, .exc-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.inc-card h4 { color: #10B981; }
.exc-card h4 { color: #EF4444; }
.inc-card ul, .exc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.inc-card ul li, .exc-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}
.inc-card ul li svg { color: #10B981; flex-shrink: 0; margin-top: 2px;}
.exc-card ul li svg { color: #EF4444; flex-shrink: 0; margin-top: 2px;}
.inc-card ul li span, .exc-card ul li span {
  flex: 1;
}

/* Sticky Booking Widget */
.package-booking-sidebar {
  position: sticky;
  top: 100px; /* Below sticky header */
}
.sticky-booking-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--line);
}
.price-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.price-strike {
  display: block;
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}
.price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.price-unit {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}
.booking-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.booking-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.booking-form input, .booking-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.booking-form input:focus, .booking-form select:focus {
  border-color: var(--brand);
}
.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border-radius: 12px;
  justify-content: center;
}
.booking-trust {
  text-align: center;
  margin-top: 1.25rem;
}
.booking-trust p {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* Similar Tours */
.similar-tours-section {
  padding: 6rem 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.similar-tours-section h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--ink);
}

@media (max-width: 1080px) {
  .package-booking-sidebar {
    position: static;
  }
}

/* ==========================================================================
   DESTINATIONS HUB PAGE
   ========================================================================== */
.destinations-hub-page {
  background: var(--bg);
  padding-bottom: 0;
}

/* Compact Hero */
.hub-hero {
  padding: 6rem 1rem 5rem;
  background: var(--surface);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.hub-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.hub-hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.hub-search-wrapper {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.hub-search-wrapper:focus-within {
  box-shadow: 0 10px 40px rgba(13, 169, 155, 0.15);
  border-color: var(--brand);
}
.hub-search-wrapper svg {
  color: var(--muted);
  flex-shrink: 0;
}
.hub-search-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.7rem 1rem;
  font-size: 1.05rem;
  outline: none;
  font-family: inherit;
  width: 100%;
}
.hub-search-wrapper button {
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Section Common */
.hub-section {
  padding: 5rem 0 0;
}
.hub-section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.hub-section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.hub-section-title p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Premium Destination Card */
.dest-premium-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.dest-premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.1);
}
.dest-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.dest-premium-card:hover .dest-img-wrap img {
  transform: scale(1.05);
}
.dest-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.dest-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dest-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.dest-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.dest-footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}
.dest-stats span {
  display: block;
}
.dest-price-label {
  font-size: 0.75rem;
  color: var(--muted);
}
.dest-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}
.dest-explore-btn {
  background: var(--surface);
  color: var(--brand);
  border: 1px solid var(--brand);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.dest-premium-card:hover .dest-explore-btn {
  background: var(--brand);
  color: #fff;
}

/* Region Layout */
.region-block {
  margin-bottom: 4rem;
}
.region-block h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

/* Trending Mini Cards */
.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.trending-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all 0.2s;
}
.trending-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}
.trending-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.trending-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trending-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.trending-info p {
  font-size: 0.8rem;
  color: var(--brand);
  font-weight: 600;
}

/* Theme Collections */
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1080px) {
  .theme-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .theme-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .theme-grid::-webkit-scrollbar {
    display: none;
  }
  .theme-grid .theme-card {
    flex: 0 0 75%;
    scroll-snap-align: center;
  }
  /* Optional: align first element to start so it's not centered weirdly if it's the only one */
  .theme-grid .theme-card:first-child {
    scroll-snap-align: start;
  }
}
.theme-card {
  position: relative;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.theme-card img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  z-index: 0;
}
.theme-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
  transition: background 0.3s;
}
.theme-card:hover img {
  transform: scale(1.05);
}
.theme-card:hover .theme-overlay {
  background: rgba(0,0,0,0.5);
}
.theme-card h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Inspiration Section */
.inspiration-section {
  background: var(--brand-dark);
  color: #fff;
  padding: 6rem 0;
  text-align: center;
  margin-top: 5rem;
}
.inspiration-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.inspiration-section p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.inspiration-cta {
  background: var(--accent);
  color: var(--ink);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}
.inspiration-cta:hover {
  transform: scale(1.05);
}

/* ==========================================================================
   ABOUT US - BRAND STORYTELLING PAGE
   ========================================================================== */
.about-page {
  background: var(--bg);
  padding-bottom: 0;
}

/* 1. Cinematic Hero */
.about-hero {
  padding: 8rem 1rem 6rem;
  background: linear-gradient(to bottom, rgba(240, 248, 247, 1) 0%, rgba(255, 255, 255, 0) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, var(--brand-light) 0%, transparent 60%);
  z-index: 0;
  opacity: 0.5;
}
.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.about-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-hero-content p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.about-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

/* Common Section Styles */
.about-section {
  padding: 6rem 0;
}
.about-section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.about-section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.about-section-header p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
}

/* 2. Our Story (Editorial) */
.story-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.story-img-main {
  grid-column: 1 / 3;
  border-radius: 20px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.story-img-sub {
  border-radius: 16px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.story-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.story-content p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
@media (max-width: 1080px) {
  .story-editorial { grid-template-columns: 1fr; }
}

/* 3. Mission & Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.mv-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
}
.mv-icon {
  width: 60px; height: 60px;
  background: var(--brand-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--brand);
}
.mv-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
}
.mv-card p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 760px) {
  .mission-vision-grid { grid-template-columns: 1fr; }
}

/* 4. Why Travelers Choose Campfly */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.pillar-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-color: var(--brand-light);
}
.pillar-icon {
  color: var(--brand);
  margin-bottom: 1.25rem;
}
.pillar-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.pillar-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 5. By The Numbers (Stats Bar) */
.about-stats {
  background: var(--brand-dark);
  padding: 5rem 0;
  color: #fff;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
  line-height: 1;
}
.stat-item p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
}
@media (max-width: 760px) {
  .stats-bar-grid { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; }
}

/* 6. Travel Philosophy */
.philosophy-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.philosophy-block:last-child { margin-bottom: 0; }
.philosophy-block.inverted .pb-content { order: 2; }
.philosophy-block.inverted .pb-image { order: 1; }
.pb-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.pb-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.pb-content p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 1080px) {
  .philosophy-block, .philosophy-block.inverted { grid-template-columns: 1fr; }
  .philosophy-block.inverted .pb-content, .philosophy-block.inverted .pb-image { order: unset; }
}

/* 7. How Campfly Works (Timeline) */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 60px; height: 60px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(13, 169, 155, 0.3);
}
.process-step h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.process-step p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
@media (min-width: 993px) {
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--line);
    z-index: 0;
  }
}
@media (max-width: 1080px) {
  .process-timeline { grid-template-columns: 1fr; gap: 3rem; }
}

/* 9. Traveler Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.t-rating {
  color: #FFB400;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.25rem;
}
.t-quote {
  font-size: 1.1rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.t-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.t-author-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.t-author-info span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* 10. The Team / Experts */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.expert-card {
  text-align: center;
}
.expert-img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  background: var(--line);
}
.expert-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.expert-card p {
  font-size: 1rem;
  color: var(--brand);
  font-weight: 500;
}

/* 11. Final CTA */
.about-final-cta {
  background: var(--brand);
  padding: 6rem 1rem;
  text-align: center;
  color: #fff;
}
.about-final-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.about-final-cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}
.about-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.btn-white {
  background: #fff;
  color: var(--brand-dark);
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s;
}
.btn-white:hover { transform: scale(1.05); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--brand-dark);
}

/* ==========================================================================
   CONTACT PAGE REBUILD
   ========================================================================== */

/* Hero */
.contact-hero {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(240,244,248,0.5) 100%);
  border-bottom: 1px solid var(--line);
}
.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.contact-hero .hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.contact-hero .hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Contact Cards */
.contact-cards-section {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.contact-card:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}
.contact-card:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.contact-card .cc-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(13, 169, 155, 0.1);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-card .cc-detail {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-card .cc-detail a {
  color: var(--ink);
  text-decoration: none;
}
.contact-card .cc-sub {
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-card .text-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

/* Inquiry Layout */
.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.premium-form-wrapper {
  padding: 3rem;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.premium-form .form-group {
  margin-bottom: 1.5rem;
}
.premium-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background-color: #f9fafb;
  transition: all 0.2s ease;
}
.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(13, 169, 155, 0.1);
}
.premium-form textarea {
  resize: vertical;
}
.form-assurance {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Sidebar Components */
.quick-planner-card {
  padding: 2rem;
  margin-bottom: 2rem;
}
.quick-planner-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.emergency-support-card {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.emergency-support-card .em-icon {
  width: 48px;
  height: 48px;
  background: #fed7d7;
  color: #e53e3e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.emergency-support-card h4 {
  color: #c53030;
  margin-bottom: 0.5rem;
}
.emergency-support-card p {
  font-size: 0.9rem;
  color: #742a2a;
  margin-bottom: 1rem;
}
.emergency-support-card .em-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #e53e3e;
  text-decoration: none;
  margin-bottom: 1rem;
}
.emergency-support-card .em-badge {
  display: inline-block;
  background: #e53e3e;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.trust-card .trust-icon {
  color: var(--brand);
  margin-bottom: 1rem;
}
.trust-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.trust-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Office & Map */
.office-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.office-location-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.office-location-card h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--brand);
}
.office-location-card p {
  color: var(--ink);
  line-height: 1.6;
}
.map-placeholder {
  background: #e2e8f0;
  border-radius: 16px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #cbd5e1;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  color: var(--brand);
}
.faq-icon {
  color: var(--muted);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Social Cards */
.social-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  transition: all 0.2s ease;
}
.social-card:hover {
  background: var(--surface);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  background: var(--brand);
  padding: 6rem 0;
  color: white;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Overrides */
@media (max-width: 1080px) {
  .inquiry-layout, .office-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .form-row-2, .form-row-3 {
    grid-template-columns: 1fr;
  }
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  .premium-form-wrapper {
    padding: 2rem;
  }
}

/* Utility classes */
.text-center {
  text-align: center !important;
}

/* ==========================================================================
   UNIFIED MOBILE OVERRIDES (Matching Homepage 760px source of truth)
   ========================================================================== */
@media (max-width: 760px) {
  /* Typography Scaling for large headers */
  .packages-hero h1,
  .about-hero-content h1,
  .contact-hero h1,
  .stat-item h3 {
    font-size: 2.25rem;
  }
  
  .catalog-header h1,
  .about-final-cta h2 {
    font-size: 2rem;
  }
  
  .inspiration-section h2,
  .story-content h3,
  .philosophy-block h3 {
    font-size: 1.8rem;
  }
  
  .mv-card h3 {
    font-size: 1.5rem;
  }

  /* Newsletter / Footer Mobile Fixes */
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  
  .newsletter-form input {
    min-width: 0;
    width: 100%;
  }
  
  .engagement-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-top-band {
    padding: 2rem 0;
  }

  .engagement-newsletter {
    gap: 0.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    padding: 2rem 0 1.5rem;
  }
  
  .footer-brand-col {
    grid-column: span 2;
  }

  .footer-mobile-brand {
    display: block;
    margin-bottom: 1.5rem;
  }

  .footer-mobile-brand img {
    margin-bottom: 0.5rem;
  }

  .footer-mobile-brand p {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0;
  }

  /* Hide the "Reach Us" title on mobile as the logo/brand line acts as the column header */
  .footer-brand-col h4 {
    display: none;
  }

  .footer-grid section h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  .footer-grid a {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .footer-grid section:nth-child(4) {
    grid-column: span 2;
  }
  
  .tourism-partners-flex {
    gap: 1.5rem !important;
  }

  .tourism-partners-flex .partner-logo-img {
    height: 32px !important;
    width: 80px !important;
  }

  /* Catalog Page Mobile Overrides */
  .catalog-header {
    padding: 5rem 1rem 2rem;
  }
  .catalog-search-wrapper {
    padding: 0.35rem 0.35rem 0.35rem 1rem;
  }
  .catalog-search-wrapper input {
    font-size: 0.95rem;
  }
  .catalog-search-wrapper button {
    padding: 0.6rem 1.2rem;
  }
  .catalog-controls-container {
    padding: 0.75rem 0;
  }
  .catalog-sort {
    width: 100%;
    margin-top: 0.5rem;
  }
  .catalog-sort select {
    width: 100%;
    padding: 0.6rem 2rem 0.6rem 1rem;
  }
  .catalog-sort label {
    display: none;
  }
  .catalog-main {
    padding: 1.5rem 0 3rem;
  }
  .cc-content {
    padding: 1rem;
  }
  .cc-button {
    padding: 0.6rem 1.2rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Destinations Hub Page Mobile Overrides */
  .hub-hero {
    padding: 5rem 1rem 2rem;
  }
  .hub-hero h1 {
    font-size: 2.25rem;
  }
  .hub-search-wrapper {
    padding: 0.35rem 0.35rem 0.35rem 1rem;
  }
  .hub-search-wrapper input {
    font-size: 0.95rem;
    padding: 0.5rem 0.5rem;
  }
  .hub-search-wrapper button {
    padding: 0.6rem 1.2rem;
  }
  .hub-section {
    padding: 3rem 0 0;
  }
  .hub-section-title h2 {
    font-size: 1.8rem;
  }
  .hub-section-title {
    margin-bottom: 2rem;
    text-align: left;
  }
  .hub-section-title p {
    margin: 0;
  }
  .dest-content {
    padding: 1rem;
  }
  .dest-explore-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .region-block h3 {
    font-size: 1.5rem;
  }
  .inspiration-section {
    padding: 4rem 1rem;
  }
  .inspiration-section h2 {
    font-size: 2rem;
  }
  /* Fix Incredible India & International Escapes Carousel */
  .destinations-hub-page .region-block .cards-3 > a {
    flex: 0 0 75%;
    scroll-snap-align: center;
  }
  .destinations-hub-page .region-block .cards-3 > a:first-child {
    scroll-snap-align: start;
  }
  
  /* Fix Trending Section Carousel */
  .destinations-hub-page .trending-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .destinations-hub-page .trending-grid::-webkit-scrollbar {
    display: none;
  }
  .destinations-hub-page .trending-grid > .trending-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
  .destinations-hub-page .trending-grid > .trending-card:first-child {
    scroll-snap-align: start;
  }

  /* Package Detail Page Mobile Overrides */
  .package-detail-page {
    padding-top: 1rem;
    padding-bottom: 90px;
  }
  .breadcrumb {
    flex-wrap: wrap;
    font-size: 0.85rem;
    line-height: 1.6;
  }
  .package-title-row {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .package-title-row h1 {
    font-size: 2rem;
  }
  .quick-glance {
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
  .package-featured-image {
    height: 250px;
    margin-bottom: 2rem;
  }
  .detail-section {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  
  /* 2x2 Highlights Grid on Mobile */
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .highlight-card {
    padding: 0.85rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .highlight-card span {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .inc-card, .exc-card {
    padding: 1.25rem 1rem;
  }
  
  /* Fixed Bottom Booking Bar */
  .package-booking-sidebar {
    margin: 0;
  }
  .sticky-booking-card {
    position: fixed;
    top: auto;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    width: auto;
    height: auto;
    z-index: 1000;
    border-radius: 99px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--line);
  }
  .sticky-booking-card .price-header {
    margin: 0;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-booking-card .price {
    font-size: 1.4rem;
  }
  .sticky-booking-card .price-unit {
    font-size: 0.85rem;
  }
  .sticky-booking-card .booking-form {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin: 0;
  }
  .sticky-booking-card .form-row {
    display: none;
  }
  .sticky-booking-card .submit-btn {
    width: auto;
    padding: 0.75rem 1.5rem;
    margin: 0;
    border-radius: 99px;
    font-size: 1rem;
  }
  .sticky-booking-card .booking-trust {
    display: none;
  }

  /* Similar Tours Horizontal Swipe */
  .similar-tours-section {
    padding: 3rem 0;
  }
  .similar-tours-section h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
  }
  .similar-tours-section .cards-3 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .similar-tours-section .cards-3::-webkit-scrollbar {
    display: none;
  }
  .similar-tours-section .cards-3 > a {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
  .similar-tours-section .cards-3 > a:first-child {
    scroll-snap-align: start;
  }
  /* About Us Page Mobile Overrides */
  .about-page .about-section {
    padding: 3rem 0;
  }
  .about-page .about-section-header, .about-page .story-content h3 {
    text-align: left;
  }
  .about-page .about-section-header h2, .about-page .story-content h3 {
    font-size: 2rem;
  }
  
  .about-hero-actions, .about-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .about-hero-actions a, .about-cta-btns a {
    width: 100%;
    margin: 0;
  }
  
  .story-images .story-img-main {
    height: 200px;
  }
  .story-images .story-img-sub {
    height: 120px;
  }
  
  .mission-vision-grid, 
  .pillars-grid, 
  .testimonials-grid, 
  .experts-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mission-vision-grid::-webkit-scrollbar, 
  .pillars-grid::-webkit-scrollbar, 
  .testimonials-grid::-webkit-scrollbar, 
  .experts-grid::-webkit-scrollbar {
    display: none;
  }
  
  .mission-vision-grid > div, 
  .pillars-grid > div, 
  .testimonials-grid > div, 
  .experts-grid > div {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  .mission-vision-grid > div:first-child, 
  .pillars-grid > div:first-child, 
  .testimonials-grid > div:first-child, 
  .experts-grid > div:first-child {
    scroll-snap-align: start;
  }
  
  .philosophy-block .pb-image img {
    height: 240px;
  }
  .philosophy-block {
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
  }
  
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px; /* Centers exactly on the 60px step-number */
    width: 2px;
    background: var(--line);
    z-index: 0;
  }
  
  .process-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    position: relative;
    z-index: 1;
  }
  
  .step-number {
    flex-shrink: 0;
    margin: 0;
    box-shadow: 0 0 0 8px var(--surface); /* Cuts out the line behind the circle */
  }
  
  .process-step h4 {
    margin-top: 0.5rem; /* Aligns text nicely with the circle */
  }
  
  .recognition .logos-track {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 2rem !important;
    padding-bottom: 0.5rem;
  }
  .recognition .logos-track::-webkit-scrollbar {
    display: none;
  }
  .recognition .logos-track img {
    flex-shrink: 0;
    height: 45px !important;
  }
  
  /* Stats Glass Grid */
  .about-stats {
    padding: 3rem 0;
  }
  .stats-bar-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0 !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin-right: 0;
    padding-right: 0;
  }
  .stat-item {
    flex: unset;
    background: transparent;
    padding: 2rem 1.5rem;
    border-radius: 0;
    text-align: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .stat-item h3 {
    font-size: 2.2rem;
    margin-bottom: 0.25rem;
  }
  .stat-item p {
    font-size: 0.85rem;
    line-height: 1.3;
    opacity: 0.9;
  }
  
  /* =========================================================
     Contact Us Page Overrides
     ========================================================= */
  .contact-hero {
    padding: 4rem 0 3rem;
  }
  
  .contact-hero .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .contact-hero .hero-ctas a {
    width: 100%;
    justify-content: center;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
  
  .contact-card {
    padding: 1.5rem 1rem;
  }
  
  .contact-card h3 {
    font-size: 1.1rem;
  }
  
  .contact-card .cc-detail {
    font-size: 0.9rem !important;
    word-break: break-word;
  }
  
  #inquiry-form {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .premium-form-wrapper {
    padding: 1.5rem !important;
  }
  
  .page-contact .trust-grid {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem !important;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-right: -1.25rem;
    padding-right: 1.25rem;
  }
  
  .page-contact .trust-grid::-webkit-scrollbar {
    display: none;
  }
  
  .page-contact .trust-card {
    flex: 0 0 75%;
    scroll-snap-align: center;
  }
  
  .page-contact .trust-card:first-child {
    scroll-snap-align: start;
  }
  
  /* Quick Help Section */
  .page-contact section:nth-of-type(5) .container > div {
    flex-direction: column;
    gap: 1rem !important;
  }
  
  .page-contact section:nth-of-type(5) .container > div > div {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 1.25rem !important;
  }
  
  .map-container {
    height: 250px !important;
  }
  
  /* Final CTA */
  .page-contact .cta-section > .container > div {
    flex-direction: column;
    gap: 1rem !important;
  }
  
  .page-contact .cta-section > .container > div > a {
    width: 100%;
  }
}

.tourism-partners-flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tourism-partners-flex::-webkit-scrollbar {
  display: none;
}

.tourism-partners-flex .partners-label {
  flex-shrink: 0;
}

.tourism-partners-flex .partner-logo-img {
  flex-shrink: 0;
  width: 110px;
  height: 45px;
  object-fit: contain;
}

/* Live Review Blinking SVG */
.live-review-svg {
  animation: svg-blink-green 1.5s infinite;
}

@keyframes svg-blink-green {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================================
   AUTHENTICATION UX STYLES
   ========================================= */

/* --- Desktop Header UX --- */
.user-menu-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.user-icon-btn {
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
}
.user-icon-btn:hover {
  background: var(--bg);
  color: var(--ink);
}
.user-icon-btn.logged-in {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0;
  overflow: hidden;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 1rem;
  width: 250px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
  z-index: 1000;
}
.user-menu-wrapper.active .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-header {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.user-dropdown-name {
  font-weight: 600;
  color: var(--ink);
}
.user-dropdown-email {
  font-size: 0.8rem;
  color: var(--muted);
}

.user-dropdown-body {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}
.user-dropdown-body a {
  padding: 0.8rem 1rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.user-dropdown-body a:hover {
  background: var(--bg);
  color: var(--brand);
}

.user-dropdown-body button.logout-action {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.8rem 1rem;
  color: #ef4444;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.user-dropdown-body button.logout-action:hover {
  background: rgba(239, 68, 68, 0.05);
  color: #dc2626;
}

/* --- Mobile Drawer UX --- */
.mobile-auth-card {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(16, 185, 129, 0.05);
  margin-top: 1rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.mobile-auth-card:hover {
  background: rgba(16, 185, 129, 0.1);
}
.mobile-auth-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-right: 1rem;
}
.mobile-auth-avatar.logged-in {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  font-weight: 600;
  font-size: 1.1rem;
}
.mobile-auth-text {
  flex: 1;
}
.mobile-auth-text h4 {
  font-size: 1rem;
  margin: 0 0 0.2rem;
  color: var(--ink);
}
.mobile-auth-text p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}
.mobile-logged-in-links {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-logged-in-links a.mobile-nav-link,
.mobile-logged-in-links button.logout-action {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 0;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.mobile-logged-in-links button.logout-action {
  color: #ef4444 !important;
}

@media (max-width: 1024px) {
  .user-menu-wrapper {
    display: none;
  }
}

/* --- Global Auth Modal --- */
.auth-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.auth-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.auth-modal {
  background: var(--surface);
  width: 90%;
  max-width: 400px;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.auth-modal-overlay.active .auth-modal {
  transform: translateY(0);
}
.auth-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
}
.auth-header h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.auth-header p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.auth-form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.auth-form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.auth-form-group input {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 99px; /* full radius for inputs */
  background: var(--surface);
  color: var(--ink);
  font-size: 16px; /* Prevents iOS zoom */
  transition: all 0.2s ease;
}
.auth-form-group input:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 96, 96, 0.1);
}
.auth-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.auth-actions a {
  color: var(--brand);
}
.auth-btn {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 99px;
}
.auth-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
  font-size: 0.85rem;
  color: var(--muted);
}
.auth-divider::before, .auth-divider::after {
  content: "";
  position: absolute;
  top: 50%; width: 40%;
  height: 1px;
  background: var(--line);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }
.google-btn {
  width: 100%;
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink);
}
.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.auth-footer a {
  color: var(--brand);
}

/* Wishlist Button Styles */
.wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--ink);
  backdrop-filter: blur(4px);
}

.wishlist-btn:hover {
  transform: scale(1.1);
  background: #fff;
  color: #ef4444; /* Red color on hover */
}

.wishlist-btn.saved {
  color: #ef4444;
}

.wishlist-btn.saved svg {
  fill: #ef4444;
  stroke: #ef4444;
}

.catalog-card {
  position: relative;
}

.destinations-grid article {
  position: relative;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}


/* ─── Scroll to Top Button ─── */
#scroll-to-top {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  background: var(--brand);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: var(--shadow-soft);
  border: none;
}
#scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
#scroll-to-top:hover {
  transform: translateY(-3px);
  background: var(--brand-dark);
}
@media (max-width: 760px) {
  #scroll-to-top {
    bottom: 5.5rem;
  }
}

/* --- Performance Optimizations --- */
.site-footer, .packages-hero, .mosaic-item, .trending-packages, .newsletter-section {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}
