/* ========================================
   Travel Social - Dark Luxury Theme
   Matches Next.js globals.css + Tailwind config
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@300;400;500;600;700&family=Gilda+Display&display=swap');

:root {
  --dark: #111111;
  --dark-lighter: #1a1a1a;
  --dark-card: #1e1e1e;
  --gold: #c5a47e;
  --gold-dark: #a8885d;
  --gold-light: #d4b896;
  --white: #ffffff;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --red-500: #ef4444;
  --green-500: #22c55e;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--dark);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

body {
  color: var(--white);
  background: var(--dark);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- Container ---- */
.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container-custom { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-custom { padding: 0 2rem; } }

/* ---- Section Spacing ---- */
.section-padding { padding: 4rem 0; }
@media (min-width: 768px) { .section-padding { padding: 6rem 0; } }
.section-padding-sm { padding: 2.5rem 0; }

/* ---- Colors ---- */
.text-gold { color: var(--gold); }
.text-gray-300 { color: var(--gray-300); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-white { color: var(--white); }
.bg-dark { background: var(--dark); }
.bg-dark-lighter { background: var(--dark-lighter); }
.bg-dark-card { background: var(--dark-card); }
.border-gray-800 { border-color: var(--gray-800); }

/* ---- Line Decoration ---- */
.line-decoration {
  width: 4rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.line-decoration.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Typography ---- */
.font-gilda { font-family: 'Gilda Display', serif; }
.font-barlow { font-family: 'Barlow', sans-serif; }
.font-barlow-condensed { font-family: 'Barlow Condensed', sans-serif; }

.section-subtitle {
  color: var(--gold);
  font-size: 0.825rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
}

.section-title {
  font-family: 'Gilda Display', serif;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--white);
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 2.75rem; } }

.section-title.text-center { text-align: center; }

.section-description {
  color: var(--gray-400);
  line-height: 1.8;
  max-width: 48rem;
  font-size: 0.95rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  transition: all 0.3s;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-primary-filled {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary-filled:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-lg { padding: 0.875rem 2.5rem; font-size: 0.9rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.75rem; }

/* ---- Header / Navbar ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all 0.5s;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(8px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 2.75rem;
  width: auto;
}

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

.main-nav a,
.main-nav > button {
  color: var(--gray-300);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a:hover,
.main-nav > button:hover {
  color: var(--gold);
}

.main-nav a.active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

.main-nav .btn-primary {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 0.5rem;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  display: grid;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  width: 560px;
  background: var(--dark-lighter);
  border: 1px solid var(--gray-800);
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  align-items: start;
  gap: 1.5rem;
  z-index: 60;
  transition: opacity 0.15s, visibility 0.15s;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  visibility: visible;
  opacity: 1;
}

.dropdown:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

/* Mega menu — Destinations */
.dropdown-mega {
  left: 50%;
  transform: translateX(-50%);
  width: 960px;
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--dark);
}

.dropdown-mega::-webkit-scrollbar { width: 4px; }
.dropdown-mega::-webkit-scrollbar-track { background: var(--dark); }
.dropdown-mega::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* Tours dropdown */
.dropdown-tours-menu {
  width: 580px;
  grid-template-columns: repeat(2, 1fr);
}

/* Region headings */
.dropdown-col h4 {
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.625rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid rgba(197,164,126,0.2);
}

.dropdown-col h4 a {
  color: inherit;
  transition: color 0.2s;
}
.dropdown-col h4 a:hover {
  color: var(--gold-light);
}

/* State links */
.dropdown-col .nav-state {
  margin-bottom: 0.375rem;
}

.dropdown-col .nav-state > a {
  color: var(--gray-300);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.1875rem 0;
  display: block;
  overflow-wrap: break-word;
  word-break: break-word;
  transition: color 0.2s;
  line-height: 1.35;
}
.dropdown-col .nav-state > a:hover {
  color: var(--gold);
}

/* City links */
.dropdown-col .nav-cities {
  padding-left: 0.75rem;
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}

.dropdown-col .nav-cities a {
  color: var(--gray-500);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.125rem 0;
  display: block;
  overflow-wrap: break-word;
  word-break: break-word;
  transition: color 0.2s;
  line-height: 1.35;
}

.dropdown-col .nav-cities a:hover {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1180px) {
  .dropdown-mega {
    width: 760px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 1px solid var(--gray-800);
    padding: 1rem;
    max-height: 80vh;
    overflow-y: auto;
    gap: 0;
  }
  .main-nav.open a,
  .main-nav.open > button {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    width: 100%;
  }
  .mobile-menu-btn { display: block; }
  .dropdown-menu,
  .dropdown-mega,
  .dropdown-tours-menu {
    position: static;
    width: 100%;
    max-width: none;
    max-height: none;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0.5rem 1rem;
    opacity: 1;
    visibility: visible;
    grid-template-columns: 1fr;
    display: none;
  }
  .main-nav.open .dropdown-menu,
  .main-nav.open .dropdown-mega,
  .main-nav.open .dropdown-tours-menu {
    display: grid;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 4rem 0;
}

.hero h1 {
  font-family: 'Gilda Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 0.5rem 0 1.25rem;
}

.hero h1 span { color: var(--gold-light); }

.hero p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat h4 {
  font-family: 'Gilda Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.hero-stat span {
  font-size: 0.6875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero h1 { font-size: clamp(1.75rem, 8vw, 3rem); }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
}

/* ---- Page Hero ---- */
.page-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.page-hero .container-custom {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.page-hero .breadcrumb a { color: var(--gray-400); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb .sep { color: var(--gray-500); }
.page-hero .breadcrumb .current { color: var(--gold); }

.page-hero .eyebrow {
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-family: 'Gilda Display', serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero .subtitle { color: var(--gray-300); font-size: 0.875rem; margin-bottom: 0.5rem; }

.page-hero p {
  color: var(--gray-400);
  max-width: 32rem;
}

/* ---- Tab Navigation ---- */
.tab-nav {
  background: var(--dark);
  border-bottom: 1px solid var(--gray-800);
  position: sticky;
  top: 72px;
  z-index: 30;
}

.tab-nav .tabs {
  display: flex;
  overflow-x: auto;
}

.tab-nav button {
  padding: 1rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.2s;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--gray-400);
  font-family: 'Barlow', sans-serif;
}

.tab-nav button:hover { color: var(--gray-300); }

.tab-nav button.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ---- Tab Content ---- */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---- Cards ---- */
.card {
  background: var(--dark-card);
  border: 1px solid var(--gray-800);
  overflow: hidden;
  transition: all 0.5s ease-out;
}
.card:hover { transform: translateY(-4px); }

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card:hover .card-image img { transform: scale(1.1); }

.card-body { padding: 1.375rem; }

.card-body h3 {
  font-family: 'Gilda Display', serif;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.card-body p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  color: var(--gray-500);
  margin-bottom: 0.625rem;
}

.duration-badge {
  display: inline-block;
  background: rgba(197,164,126,0.1);
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  margin-bottom: 0.5rem;
}

.text-link {
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.text-link:hover { color: var(--gold-light); }

/* ---- Destination Cards ---- */
.destination-card {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-out;
  display: block;
}

.destination-card:hover { transform: translateY(-4px); }

.destination-card .card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.destination-card .card-img-wrap img,
.destination-card .card-img-wrap .bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.destination-card:hover .card-img-wrap img,
.destination-card:hover .card-img-wrap .bg-img {
  transform: scale(1.1);
}

.overlay-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.destination-card .card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}

.destination-card .card-label h3 {
  font-family: 'Gilda Display', serif;
  color: var(--white);
  transition: color 0.2s;
}
.destination-card:hover .card-label h3 { color: var(--gold); }

.destination-card .card-label span {
  color: var(--gold);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.2s;
}
.destination-card:hover .card-label span { opacity: 1; }

/* ---- City Grid Card ---- */
.city-grid-card {
  display: block;
  transition: all 0.5s ease-out;
}

.city-grid-card:hover { transform: translateY(-4px); }

.city-grid-card .city-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.city-grid-card .city-img .bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.city-grid-card:hover .city-img .bg-img { transform: scale(1.1); }

.city-grid-card h3 {
  font-family: 'Gilda Display', serif;
  font-size: 0.8125rem;
  color: var(--white);
  text-align: center;
  transition: color 0.2s;
}
.city-grid-card:hover h3 { color: var(--gold); }

.city-grid-card .details-label {
  color: var(--gold);
  text-align: center;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.city-grid-card:hover .details-label { opacity: 1; }

/* ---- Testimonial Cards ---- */
.testimonial-card {
  background: var(--dark-card);
  padding: 1.75rem;
  border: 1px solid var(--gray-800);
}

.testimonial-card .quote-icon {
  font-family: 'Gilda Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.testimonial-card .text {
  font-size: 0.9375rem;
  color: var(--gray-300);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 { font-size: 0.875rem; color: var(--white); }
.testimonial-author span { font-size: 0.75rem; color: var(--gray-500); }

/* ---- Feature Cards ---- */
.feature-card {
  background: var(--dark-card);
  padding: 1.75rem;
  text-align: center;
  border: 1px solid var(--gray-800);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(197,164,126,0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}

.feature-card h3 { font-family: 'Gilda Display', serif; font-size: 1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.8125rem; color: var(--gray-400); }

/* ---- Team Cards ---- */
.team-card { text-align: center; }
.team-card img {
  width: 8.75rem;
  height: 8.75rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.875rem;
  border: 2px solid var(--gray-700);
}
.team-card h3 { font-family: 'Gilda Display', serif; font-size: 1rem; margin-bottom: 0.125rem; }
.team-card span { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---- CTA Section ---- */
.cta-section {
  background: var(--dark-lighter);
  text-align: center;
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}

.cta-section p {
  color: var(--gray-400);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

/* ---- FAQ ---- */
.faq-list { max-width: 50rem; margin: 0 auto; }

.faq-item {
  background: var(--dark-card);
  margin-bottom: 0.75rem;
  border: 1px solid var(--gray-800);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.375rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.375rem 1.125rem;
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer { display: block; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--dark-lighter);
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  padding: 3rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  text-align: center;
}

.trust-item h4 { color: var(--gold); font-size: 0.9375rem; margin-bottom: 0.25rem; font-family: 'Gilda Display', serif; }
.trust-item span { color: var(--gray-500); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.05em; }

@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Instagram ---- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.instagram-item:hover img { transform: scale(1.08); }

.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
  font-size: 1.5rem;
}
.instagram-item:hover .instagram-overlay { opacity: 1; }

@media (max-width: 768px) { .instagram-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Mood Tags ---- */
.mood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.mood-tag {
  padding: 0.5rem 1.125rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--gray-700);
  background: transparent;
  color: var(--gray-400);
  transition: all 0.2s;
  font-family: 'Barlow Condensed', sans-serif;
}

.mood-tag:hover,
.mood-tag.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ---- Contact Form ---- */
.contact-form {
  background: var(--dark-card);
  padding: 2rem;
  border: 1px solid var(--gray-800);
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.375rem;
  font-family: 'Barlow Condensed', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  border: 1px solid var(--gray-700);
  border-radius: 0;
  font-size: 0.875rem;
  font-family: 'Barlow', sans-serif;
  color: var(--white);
  background: var(--dark);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { min-height: 7.5rem; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

@media (max-width: 576px) { .form-row { grid-template-columns: 1fr; } }

/* ---- Contact Info ---- */
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.contact-info-icon {
  color: var(--gold);
  font-size: 1.125rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.contact-info-item h4 { font-size: 0.875rem; margin-bottom: 0.125rem; font-weight: 500; }
.contact-info-item p { font-size: 0.8125rem; color: var(--gray-400); }

/* ---- Blog Detail ---- */
.blog-detail-header {
  padding-top: 8rem;
  background: var(--dark);
}

.blog-hero-img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  margin-top: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1.25rem;
  color: var(--gray-500);
  font-size: 0.8125rem;
  margin-top: 0.75rem;
}

.blog-detail-content {
  padding: 2.5rem 0 5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-300);
}

.blog-detail-content h2 {
  margin: 2rem 0 0.75rem;
  font-family: 'Gilda Display', serif;
  font-size: 1.5rem;
  color: var(--white);
}

.blog-detail-content p { margin-bottom: 1rem; }

/* ---- Package Detail ---- */
.package-hero-img {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  margin: 1.5rem 0;
}

.package-meta-bar {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-800);
  margin-bottom: 1.5rem;
}

.package-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.package-meta-item .icon { color: var(--gold); }

.itinerary-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--gray-800);
}

.itinerary-day {
  background: var(--gold);
  color: var(--dark);
  min-width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}
.itinerary-day span { font-size: 1.125rem; }

.itinerary-content h4 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--white); }
.itinerary-content p { font-size: 0.875rem; color: var(--gray-400); }

.included-excluded {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.included-excluded h4 { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }

.included-list li,
.excluded-list li {
  padding: 0.375rem 0;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-300);
}

.included-list li::before { content: '\2713'; color: var(--green-500); font-weight: 700; }
.excluded-list li::before { content: '\2715'; color: var(--red-500); font-weight: 700; }

@media (max-width: 768px) { .included-excluded { grid-template-columns: 1fr; } }

/* ---- Highlights list (state/city) ---- */
.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlights-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--gray-300);
  align-items: flex-start;
}

.highlights-list li .check {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item .bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-lighter);
  transition: transform 0.7s ease;
}

.gallery-item:hover .bg-img { transform: scale(1.1); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-400); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray-500); }
.breadcrumb .current { color: var(--gold); }

/* ---- Footer ---- */
.footer {
  background: var(--dark-lighter);
  border-top: 1px solid var(--gray-800);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 1rem; font-family: 'Gilda Display', serif; }
.footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8125rem;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer a {
  display: block;
  color: var(--gray-400);
  font-size: 0.8125rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--gray-500);
}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- Grids ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }

@media (max-width: 1024px) { .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); } .grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; } }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }
.object-cover { object-fit: cover; }
.rounded-full { border-radius: 9999px; }

/* ---- Video Play Button ---- */
.video-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transition: all 0.3s;
}
.video-play-btn:hover {
  background: rgba(197,164,126,0.2);
}
.video-play-icon {
  color: var(--gold);
  font-size: 1.75rem;
  margin-left: 0.25rem;
  transition: color 0.3s;
}
.video-play-btn:hover .video-play-icon {
  color: var(--white);
}
@media (min-width: 768px) {
  .video-play-btn {
    width: 6rem;
    height: 6rem;
  }
  .video-play-icon {
    font-size: 2rem;
  }
}

/* ---- Testimonial Video Overlay ---- */
.testimonial-author-img-wrap {
  position: relative;
  display: block;
  flex-shrink: 0;
}
.testimonial-author-img-wrap img {
  display: block;
}
.testimonial-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.testimonial-author-img-wrap:hover .testimonial-play-overlay {
  opacity: 1;
}

/* ---- Fade In ---- */
.fade-in {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: all 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Nav JS ---- */
@media (max-width: 1024px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }
}
@media (min-width: 1025px) {
  .mobile-only { display: none; }
  .desktop-only { display: block; }
}
