/* ============================================================
   AVALUX TOUR & TRAVEL  |  style.css
   Design: Luxury travel brand – refined, editorial, hand-crafted
   ============================================================ */

/* ---- TOKENS & RESET ---- */
:root {
  --gold: #b89b5e;
  --gold-dark: #96793e;
  --gold-light: #e8d9b8;
  --green-deep: #2c4a34;
  --green-mid: #4a6b52;
  --cream: #f9f7f2;
  --cream-dark: #f0ebe0;
  --charcoal: #1c1c1c;
  --text-dark: #222222;
  --text-mid: #555555;
  --text-light: #888888;
  --white: #ffffff;
  --shadow-soft: 0 2px 16px rgba(0,0,0,0.05);
  --shadow-card: 0 6px 24px rgba(0,0,0,0.08);
  --radius: 6px;
  --nav-height: 72px;
  --transition: 0.35s cubic-bezier(0.25,0.1,0.25,1);
  --transition-slow: 0.6s cubic-bezier(0.25,0.1,0.25,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITIES ---- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.alt-bg {
  background: var(--cream-dark);
}

/* ---- KICKER (small label above headings) ---- */
.kicker {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}

/* ---- IMAGE PLACEHOLDERS ---- */
.img-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.img-placeholder::after {
  content: attr(title);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.65rem;
  font-family: 'Inter', monospace;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}

/* ---- SECTION TITLES ---- */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 3rem;
  position: relative;
  letter-spacing: -0.01em;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin: 1rem auto 0;
}

.section-title-script {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  color: var(--text-dark);
  position: relative;
  letter-spacing: -0.01em;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-gold-outline:hover {
  background: var(--text-dark);
  color: var(--white);
}

.link-gold {
  color: var(--gold-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  transition: color var(--transition);
}

.link-gold:hover { color: var(--gold); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-deep);
  letter-spacing: 0.08em;
}

.logo-placeholder {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-deep);
  letter-spacing: 0.12em;
}

/* Replace logo-placeholder with actual img */
.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.small-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16/9 = 1.777 */
  transform: translate(-50%, -50%) scale(1.12); /* scale up to clip YouTube UI at edges */
  pointer-events: none;
  border: none;
}

/* Transparent overlay blocks any remaining YouTube UI clicks */
.hero-video-container::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,15,10,0.55) 0%,
    rgba(15,15,10,0.2) 50%,
    rgba(15,15,10,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.hero-logo {
  width: 140px;
  height: 70px;
  margin: 0 auto 1.2rem;
  border-radius: 4px;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

/* ============================================================
   DREAM & REALITY
   ============================================================ */
.dream-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 0;
}

.dream-text h2 {
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.dream-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 500;
}

.divider-scroll {
  text-align: center;
  margin-top: 3rem;
  opacity: 0.6;
}

/* ============================================================
   SIGNATURE PACKAGES
   ============================================================ */
.sig-package {
  background: var(--white);
}

.pkg-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pkg-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pkg-row:last-child {
  border-bottom: none;
}

.pkg-row.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.pkg-row.reverse .pkg-image-col {
  order: 2;
}

.pkg-row.reverse .pkg-info-col {
  order: 1;
}

.pkg-img {
  height: 280px;
  box-shadow: none;
  border-radius: var(--radius);
}

.city-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.pkg-info-col p {
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
}

/* ============================================================
   OPEN TRIP SCHEDULE
   ============================================================ */
.trip-schedule {
  background: var(--cream-dark);
}

/* Pull the High Season section tight against the Open Trip section above it */
section.trip-schedule + section.trip-schedule {
  padding-top: 1.5rem;
}
section.trip-schedule:has(+ section.trip-schedule) {
  padding-bottom: 1.5rem;
}

.schedule-divider {
  height: 1.5px;
  background: rgba(0, 0, 0, 0.16);
  margin-bottom: 3rem;
}

.high-season-heading {
  margin-bottom: 1.2rem;
}

.high-season-sub {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  color: var(--text-mid);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* Legend bar */
.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.4rem;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-mid);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-red   { background: #e05252; }
.legend-green { background: #4aad6e; }
.legend-yellow{ background: #d4af37; }

.legend-last-update {
  margin-left: auto;
  font-size: 0.72rem;
  font-style: italic;
  opacity: 0.7;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.month-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.month-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.09);
  border-color: rgba(0,0,0,0.06);
}

.month-header {
  background: linear-gradient(135deg, var(--green-deep), #1e3a24);
  color: var(--white);
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 215, 0, 0.15); /* subtle gold accent line */
}

/* High Season month header — same green as Open Trip, emoji labels add distinction */
.hs-header {
  background: linear-gradient(135deg, var(--green-deep), #1e3a24);
  border-bottom: 2px solid rgba(255, 215, 0, 0.15);
  letter-spacing: 0.08em;
  font-size: 0.73rem;
}

.month-body {
  padding: 0.9rem;
  min-height: 175px;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 500;
}

.month-body p {
  margin-bottom: 0.5rem;
}

/* Trip date underline style */
.trip-date {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(0,0,0,0.2);
}



/* Status indicators */
.dot-yellow { color: #d4af37; font-size: 0.7rem; vertical-align: middle; }

/* Full-booked / private trip text styles */
.trip-full    { color: #e05252; font-style: normal; }
.trip-private { color: #4aad6e; font-style: italic; }

.custom-itinerary {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-top: 1.5rem;
  font-weight: 500;
}


/* ============================================================
   OUR MOMENT GALLERY
   ============================================================ */
.our-moment {
  background: var(--white);
}

.moment-gallery {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.moment-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.moment-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  width: 100%;
  transition: opacity var(--transition);
}

.moment-item:hover {
  opacity: 0.88;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us { background: var(--cream-dark); }

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  text-align: center;
  padding: 1.5rem 1rem;
  flex: 0 0 calc((100% - 6rem) / 4);
  max-width: calc((100% - 6rem) / 4);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
}

.why-icon-fa {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(184, 155, 94, 0.1); /* subtle gold tint */
  border: 2px solid rgba(184, 155, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-icon-fa i {
  font-size: 1.6rem;
  color: var(--gold-dark);
  transition: transform 0.3s ease;
}

.why-item:hover .why-icon-fa {
  background: rgba(184, 155, 94, 0.2);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(184, 155, 94, 0.2);
}

.why-item:hover .why-icon-fa i {
  transform: scale(1.15);
}

.why-label {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.55;
  font-weight: 500;
}

.why-label span {
  font-size: 0.85rem;
  color: var(--text-mid);
}

/* ============================================================
   OUR SERVICE (Home page list)
   ============================================================ */
.our-service {
  background: var(--cream);
}

.service-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.service-list li {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: var(--radius);
}

.service-list li::before {
  content: '\f072';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  font-size: 0.9rem;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
  margin-right: 12px;
}

.service-list li:hover {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transform: translateY(-5px);
  border-bottom-color: transparent;
}

.service-list li:hover::before {
  transform: translateY(-2px) rotate(-15deg) scale(1.1);
  color: var(--gold-dark);
}

/* ============================================================
   DESTINATION PAGES (Our Package)
   ============================================================ */
.destination-section {
  background: var(--cream);
}

.destination-section.alt-bg {
  background: var(--cream-dark);
}

.destination-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.destination-desc {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 0.92rem;
  font-weight: 500;
}

.sub-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.package-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.package-card {
  border-radius: var(--radius);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.package-tier {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.tier-budget {
  background: #f0f0ed;
  color: #666;
}

.tier-premium {
  background: #fcf8ee;
  color: var(--gold-dark);
}

.tier-luxury {
  background: #eef3ef;
  color: var(--green-deep);
}

.image-placeholder-hint {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-light);
  padding: 0.5rem 0.2rem;
  border-top: 1px solid rgba(0,0,0,0.03);
  background: #fafaf8;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  letter-spacing: 0.02em;
}

.pkg-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.itinerary-placeholder {
  display: none;
  width: 100%;
  height: 250px;
  background: #fafaf8;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  padding: 1.5rem;
  text-align: center;
  border-top: 1px dashed rgba(0,0,0,0.08);
}

.itinerary-placeholder::before {
  content: '\f15c';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.itinerary-placeholder .itinerary-hint {
  font-size: 0.8rem;
  font-family: 'Inter', monospace;
  font-weight: 500;
  color: var(--text-dark);
}


.pkg-card-badge {
  background: var(--gold-dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
  display: inline-block;
  margin: 0.6rem 0.8rem 0;
  border-radius: 2px;
  text-transform: uppercase;
}

.pkg-card-info {
  padding: 0.5rem 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
}

.cta-center {
  text-align: center;
  margin: 2rem 0 0;
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */
.about-intro {
  text-align: center;
}

.about-desc {
  max-width: 660px;
  margin: 1.5rem auto 0;
  color: var(--text-mid);
  line-height: 1.95;
  font-weight: 500;
  font-size: 0.95rem;
}

.about-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.about-fact-item {
  background: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.about-fact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.about-fact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.intro-content {
  text-align: justify;
  text-justify: inter-word;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .about-facts-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .about-fact-item {
    text-align: center;
  }
  .intro-content {
    text-align: center;
  }
}

.vision-mission-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.vm-block h2 {
  text-align: left;
}

.mission-list {
  margin-top: 1.2rem;
}

.mission-list li {
  padding: 0.7rem 0;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 500;
}

.mission-list li::before {
  content: '— ';
  color: var(--gold);
  font-weight: 400;
}

.legality-frame {
  margin-top: 2rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

/* ============================================================
   OTHER SERVICE - Service Detail Grid
   ============================================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  transition: border-color var(--transition);
}

.service-detail-card:hover {
  border-color: rgba(0,0,0,0.12);
}

.service-detail-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1rem 0 0.5rem;
}

.service-detail-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-left {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.footer-social p,
.footer-hours p {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  opacity: 0.9;
  font-weight: 500;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-link:hover {
  color: var(--gold-light);
  opacity: 1;
}

.hours-title {
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.6rem !important;
  font-size: 0.78rem !important;
  opacity: 1 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-right {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.75;
  opacity: 0.9;
  font-weight: 500;
}

.company-name {
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  font-size: 0.78rem !important;
  opacity: 1 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-copy {
  text-align: center;
  padding: 1.2rem;
  font-size: 0.8rem;
  opacity: 0.6;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .package-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }


  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .hamburger { display: flex; }

  .nav-links {
    display: flex;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-bottom: 1px solid transparent;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                opacity 0.3s ease,
                transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1),
                padding 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.3s ease;
  }

  .nav-links.open {
    max-height: 380px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 1.5rem 2rem;
    border-bottom-color: rgba(0,0,0,0.06);
  }

  .dream-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dream-text {
    text-align: center;
  }

  .pkg-row,
  .pkg-row.reverse {
    grid-template-columns: 1fr;
  }

  .pkg-row.reverse .pkg-image-col,
  .pkg-row.reverse .pkg-info-col {
    order: unset;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-columns {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .service-list li {
    font-size: 0.85rem;
    padding: 0.6rem 0.5rem;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .package-cards-row {
    grid-template-columns: 1fr;
  }

  .moment-gallery {
    flex-direction: column;
  }

  .moment-item {
    height: 200px !important;
  }

  .why-grid {
    gap: 1rem;
  }
  .why-item {
    flex: 0 0 calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title { font-size: 1.6rem; }
  .destination-title { font-size: 2rem; }
  .dream-text h2 { font-size: 1.8rem; }
  .city-name { font-size: 1.8rem; }
  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .schedule-grid { grid-template-columns: 1fr; }
  .package-cards-row { grid-template-columns: 1fr; }
  .why-grid { gap: 0.5rem; }
  .why-item {
    flex: 0 0 calc((100% - 0.5rem) / 2);
    max-width: calc((100% - 0.5rem) / 2);
    padding: 0.8rem 0.25rem;
  }
  .section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
}

@keyframes fadeVideoIn {
  0% { opacity: 0; }
  60% { opacity: 0; }
  100% { opacity: 1; }
}
.dream-image iframe {
  animation: fadeVideoIn 2.5s ease-in-out forwards;
}
