/* ================================================================
   DISCOVER TRIPURA — Master Stylesheet
   ================================================================ */

/* ---- Variables ---- */
:root {
  --green:        #1B5E37;
  --green-dark:   #0f3d24;
  --green-light:  #2d7a4f;
  --gold:         #C9A84C;
  --gold-light:   #e2c06a;
  --crimson:      #8B2635;
  --dark:         #1a1109;
  --dark-2:       #2d1e0e;
  --text:         #3d2b1f;
  --text-soft:    #6b5444;
  --bg:           #F9F5F0;
  --bg-2:         #F2ECE4;
  --white:        #ffffff;
  --border:       #DDD5CA;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.14);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s ease;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Lato', system-ui, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ---- Typography ---- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--green); }
.section-title.light, .section-title.light em { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.eyebrow.light { color: var(--gold-light); }

.section-sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lead-text {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 6rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius);
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,94,55,0.35);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--dark);
  padding: 0.7rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.01em;
}
.nav-logo strong { color: var(--gold); }
.logo-star { color: var(--gold); font-size: 0.85rem; }

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

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 0.85rem;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 700;
  padding: 0.55rem 1.4rem;
  margin-left: 0.5rem;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
}
.hero-slide.active {
  opacity: 1;
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,61,36,0.65) 0%,
    rgba(26,17,9,0.55) 50%,
    rgba(26,17,9,0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
.scroll-bar {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
}
.reveal-up.in {
  animation: revealUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.reveal-up:nth-child(2) { animation-delay: 0.15s; }
.reveal-up:nth-child(3) { animation-delay: 0.30s; }
.reveal-up:nth-child(4) { animation-delay: 0.45s; }
.reveal-up:nth-child(5) { animation-delay: 0.60s; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--dark);
  padding: 2rem 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3rem;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.3rem;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* ================================================================
   ABOUT
   ================================================================ */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visuals {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
}
.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 220px;
  height: 175px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  line-height: 1.2;
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.badge-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-text p { color: var(--text-soft); margin-bottom: 1rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.feat {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.feat i {
  font-size: 1.3rem;
  color: var(--green);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.feat strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}
.feat span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* ================================================================
   ITINERARY
   ================================================================ */
.itinerary { background: var(--bg-2); }

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 2rem;
  padding-bottom: 3rem;
}
.tl-item.reverse { direction: rtl; }
.tl-item.reverse > * { direction: ltr; }

.tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.25rem;
}
.tl-day-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-2), 0 0 0 6px var(--green);
}
.tl-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), rgba(27,94,55,0.15));
  margin-top: 0.5rem;
}

.tl-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
}
.tl-item.reverse .tl-card { flex-direction: row-reverse; }
.tl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tl-img {
  position: relative;
  width: 42%;
  flex-shrink: 0;
  min-height: 300px;
  height: auto;
}

@media (max-width: 768px) {
  .tl-card { flex-direction: column !important; }
  .tl-img { width: 100%; height: 240px; min-height: unset; }
}
.tl-day-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}
.tl-highlight-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
}

.tl-body {
  padding: 1.75rem;
}
.tl-body h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.tl-tagline {
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.tl-tagline i { margin-right: 0.3rem; }
.tl-body > p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.tl-activities {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}
.tl-activities li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text);
}
.tl-activities li i {
  color: var(--green);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 14px;
}

.tl-stay {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--bg-2);
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
}
.tl-stay i { color: var(--green); }
.tl-stay.special {
  background: linear-gradient(135deg, #fff7e6, #fff3d4);
  border: 1px solid #e8c76a;
  color: #7a5a10;
}
.tl-stay.special i { color: var(--gold); }
.tl-stay.farewell {
  background: linear-gradient(135deg, #f0f8f4, #e6f4ec);
  border: 1px solid #a8d5b8;
  color: var(--green-dark);
}
.tl-stay.farewell i { color: var(--crimson); }

/* ================================================================
   HIGHLIGHTS
   ================================================================ */
.highlights { background: var(--bg); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hl-card.featured {
  grid-row: span 1;
}

.hl-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.hl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.hl-card.featured .hl-img { height: 260px; }
.hl-img { height: 200px; position: relative; overflow: hidden; }
.hl-img img { transition: transform 0.6s ease; }
.hl-card:hover .hl-img img { transform: scale(1.06); }

.hl-body { padding: 1.4rem; flex: 1; }
.hl-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(27,94,55,0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
}
.hl-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.hl-body p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ================================================================
   INCLUSIONS
   ================================================================ */
.inclusions-inner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--dark-2) 100%);
  padding: 6rem 0;
}

.inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.inc-heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.inc-heading.yes { color: #7dda9a; }
.inc-heading.no  { color: #f08080; }

.inc-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.inc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}
.inc-list li i { font-size: 0.85rem; margin-top: 0.22rem; flex-shrink: 0; }
.inc-list li.yes i { color: #7dda9a; }
.inc-list li.no  i { color: #f08080; }

.best-time-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.best-time-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.best-time-card h4 i { color: var(--gold); }

.month-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}
.mo {
  text-align: center;
  padding: 0.4rem 0;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
}
.mo.best  { background: #22c55e; color: #052e16; }
.mo.good  { background: #86efac; color: #052e16; }
.mo.okay  { background: #fbbf24; color: #451a03; }
.mo.avoid { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); }

.mo-legend {
  display: flex;
  gap: 1rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}
.mo-legend span { display: flex; align-items: center; gap: 0.35rem; }
.legd {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
}
.legd.best  { background: #22c55e; }
.legd.good  { background: #86efac; }
.legd.okay  { background: #fbbf24; }
.legd.avoid { background: rgba(255,255,255,0.2); }

/* ================================================================
   BOOKING / ENQUIRY
   ================================================================ */
.booking { background: var(--bg); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.booking-info p {
  color: var(--text-soft);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-chips {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition);
}
.chip:hover { box-shadow: var(--shadow); }
.chip i {
  font-size: 1.3rem;
  color: var(--green);
  width: 28px;
  text-align: center;
}
.chip strong { display: block; font-size: 0.85rem; color: var(--dark); }
.chip span { font-size: 0.82rem; color: var(--text-soft); }

.trust-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(27,94,55,0.07);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
}

.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field.full {
  grid-column: 1 / -1;
  margin-bottom: 1.25rem;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}
.req { color: var(--crimson); }

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,94,55,0.12);
}
.form-field input.error,
.form-field select.error {
  border-color: var(--crimson);
}

.field-err {
  font-size: 0.75rem;
  color: var(--crimson);
  display: none;
}
.field-err.visible { display: block; }

/* ================================================================
   SUCCESS MODAL
   ================================================================ */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,17,9,0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal-backdrop.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-icon {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.modal-box h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.modal-box p {
  color: var(--text-soft);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); }

.footer-top { padding: 4.5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo strong { color: var(--gold); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-row {
  display: flex;
  gap: 0.6rem;
}
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.86rem;
}
.fc-item i { color: var(--gold); width: 16px; flex-shrink: 0; margin-top: 0.2rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom i { color: var(--crimson); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visuals { max-width: 560px; margin: 0 auto; }
  .about-img-float { right: 0; }
  .about-badge { left: -0.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }

  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: 1fr 1fr; }

  .tl-item { grid-template-columns: 60px 1fr; }
  .tl-day-circle { width: 46px; height: 46px; font-size: 1.1rem; }

  .inc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.7rem 1rem; border-radius: var(--radius); }
  .nav-cta { margin: 0.25rem 0 0; text-align: center; }

  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-scroll-hint { display: none; }

  .stats-inner { gap: 0; }
  .stat { padding: 0.5rem 1.5rem; }
  .stat-sep { height: 30px; }

  .section-pad { padding: 4rem 0; }

  .tl-item { grid-template-columns: 1fr; }
  .tl-item.reverse { direction: ltr; }
  .tl-marker { flex-direction: row; gap: 1rem; align-items: center; margin-bottom: 1rem; }
  .tl-line { width: 100%; height: 2px; margin: 0; background: linear-gradient(to right, var(--green), transparent); }
  .tl-day-circle { box-shadow: 0 0 0 3px var(--bg-2), 0 0 0 5px var(--green); }

  .highlights-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 1.75rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-features { grid-template-columns: 1fr; }
}

/* ================================================================
   HOW TO REACH SECTION
   ================================================================ */
.reach { background: var(--bg-2); }

.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.reach-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.reach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.reach-icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--white);
  font-size: 1.3rem;
}

.reach-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.reach-from {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}
.reach-arrow { color: var(--gold); font-size: 1rem; }
.reach-to {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
}
.reach-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.reach-footer {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.95rem;
  padding: 1.25rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.reach-footer i { color: var(--green); }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 240px; justify-content: center; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-sep { display: none; }
  .stat { padding: 1rem; }
  .month-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-badges { flex-direction: column; }
}
