/* ==========================================================================
   JOGJA GOOD GUIDE (JGG) - Official Design System
   Brand Signature: Fun, Simple, Culture, Niche Market
   Palette: Dominant Clean White, JGG Signature Coral Orange (#F05A36), Sun Gold (#E8C265), Dark Charcoal (#25282A)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* Brand Core Colors (Matched Exactly to JGG Official Logo) */
  --bg-main: #FFFFFF;
  --bg-subtle: #FBFBFC;
  --bg-surface: #FFFFFF;
  --bg-surface-card: #FFFFFF;
  --bg-surface-elevated: #FFFFFF;
  --bg-muted: #F7F5F2;
  
  --jgg-orange: #F05A36;
  --jgg-orange-hover: #D94926;
  --jgg-orange-light: #FFF2EE;
  --jgg-orange-soft: rgba(240, 90, 54, 0.08);
  --jgg-orange-glow: rgba(240, 90, 54, 0.25);

  --jgg-gold: #E8C265;
  --jgg-gold-dark: #C69F3E;
  --jgg-gold-soft: rgba(232, 194, 101, 0.15);

  --jgg-charcoal: #25282A;
  --jgg-charcoal-light: #3D4145;
  --jgg-green-heritage: #16423C;

  --text-main: #25282A;
  --text-muted: #667085;
  --text-light: #98A2B3;
  --text-inverse: #FFFFFF;

  --border-subtle: #EBE6DF;
  --border-card: #EFE9E2;
  --border-focus: #F05A36;

  --shadow-xs: 0 1px 3px rgba(37, 40, 42, 0.04);
  --shadow-sm: 0 4px 12px rgba(37, 40, 42, 0.05);
  --shadow-md: 0 12px 30px rgba(37, 40, 42, 0.07);
  --shadow-lg: 0 24px 50px rgba(37, 40, 42, 0.11);
  --shadow-orange: 0 8px 25px rgba(240, 90, 54, 0.28);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --container-max: 1240px;
  --header-height: 84px;
}

[data-theme="dark"] {
  --bg-main: #131517;
  --bg-subtle: #191B1E;
  --bg-surface: #1E2124;
  --bg-surface-card: #1E2124;
  --bg-surface-elevated: #282C31;
  --bg-muted: #24272B;

  --jgg-orange-light: rgba(240, 90, 54, 0.15);
  --jgg-orange-soft: rgba(240, 90, 54, 0.12);

  --text-main: #F4F5F6;
  --text-muted: #A0A6AD;
  --text-light: #71777E;

  --border-subtle: #2D3237;
  --border-card: #32383E;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 50px rgba(0, 0, 0, 0.5);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Typography & Accents
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 800;
}

.font-serif {
  font-family: var(--font-serif);
}

.text-orange {
  color: var(--jgg-orange);
}

.text-gold {
  color: var(--jgg-gold);
}

.text-charcoal {
  color: var(--jgg-charcoal);
}

.bg-orange-soft {
  background-color: var(--jgg-orange-light);
}

/* Section Header Standards */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: var(--jgg-orange-light);
  color: var(--jgg-orange);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

/* ==========================================================================
   Buttons & Interactive Pills
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.96rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--jgg-orange);
  color: #FFFFFF;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background-color: var(--jgg-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(240, 90, 54, 0.38);
}

.btn-dark {
  background-color: var(--jgg-charcoal);
  color: #FFFFFF;
}

.btn-dark:hover {
  background-color: var(--jgg-charcoal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 1.5px solid var(--border-subtle);
  color: var(--text-main);
  background-color: var(--bg-surface);
}

.btn-outline:hover {
  border-color: var(--jgg-orange);
  color: var(--jgg-orange);
  background-color: var(--jgg-orange-light);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   Navbar & Header
   ========================================================================== */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.navbar-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
}

[data-theme="dark"] .navbar-wrapper.scrolled {
  background: rgba(19, 21, 23, 0.94);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--jgg-orange);
  border-radius: var(--radius-full);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lang-toggle, .theme-toggle {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--bg-muted);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.lang-toggle:hover, .theme-toggle:hover {
  background: var(--jgg-orange-light);
  border-color: var(--jgg-orange);
  color: var(--jgg-orange);
}

.hamburger-btn {
  display: none;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: var(--text-main);
}

/* ==========================================================================
   Hero Section - Compact 1-Screen Viewport Fit
   ========================================================================== */
.hero-section {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--bg-main);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge-fun {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: var(--jgg-orange-light);
  border: 1.5px solid rgba(240, 90, 54, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--jgg-orange);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.1rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
  line-height: 1.15;
  font-weight: 900;
}

.hero-title .highlight-orange {
  color: var(--jgg-orange);
  position: relative;
}

.hero-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  max-width: 510px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 2.5px solid #000000;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--jgg-charcoal);
  display: block;
  line-height: 1.1;
}

[data-theme="dark"] .stat-number {
  color: #FFFFFF;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 0.1rem;
}

/* Hero Media Stack */
.hero-media-wrapper {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}

.hero-main-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 6px 6px 0px #000000;
  border: 2.5px solid #000000;
  max-width: 380px;
  height: 320px;
  max-height: 320px;
  background: #000000;
}

[data-theme="dark"] .hero-main-card {
  border-color: var(--bg-surface);
}

.hero-main-card img,
.hero-main-card video,
.hero-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-main-card:hover img,
.hero-main-card:hover video {
  transform: scale(1.04);
}

/* Floating Fun Stickers */
.hero-sticker {
  position: absolute;
  background: #FFFFFF;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  animation: floatSlow 4s ease-in-out infinite;
}

[data-theme="dark"] .hero-sticker {
  background: var(--bg-surface);
}

.sticker-top-right {
  top: 1.5rem;
  right: -1rem;
  animation-delay: 0s;
}

.sticker-bottom-left {
  bottom: 2rem;
  left: -1rem;
  animation-delay: 2s;
}

.sticker-icon {
  font-size: 1.5rem;
}

.sticker-text-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-main);
}

.sticker-text-sub {
  font-size: 0.75rem;
  color: var(--jgg-orange);
  font-weight: 700;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   Routes Catalog - Clean White Cards with Orange Badges
   ========================================================================== */
.routes-section {
  padding: 6rem 0;
  background-color: var(--bg-subtle);
}

.filter-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1.5px solid var(--border-subtle);
  font-size: 0.92rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--jgg-orange);
  color: var(--jgg-orange);
}

.filter-btn.active {
  background: var(--jgg-orange);
  color: #FFFFFF;
  border-color: var(--jgg-orange);
  box-shadow: var(--shadow-orange);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.25rem;
}

.route-card {
  background: var(--bg-surface-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--jgg-orange);
}

.route-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.route-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.route-card:hover .route-img-wrap img {
  transform: scale(1.06);
}

.route-category-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(37, 40, 42, 0.9);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
}

.route-promo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--jgg-orange);
  color: #FFFFFF;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(240, 90, 54, 0.35);
}

.route-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.route-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  font-weight: 800;
}

.route-card-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  line-height: 1.65;
  flex-grow: 1;
}

.route-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.9rem 0;
  border-top: 1px dashed var(--border-subtle);
  border-bottom: 1px dashed var(--border-subtle);
  margin-bottom: 1.35rem;
}

.route-spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.spec-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
}

.spec-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.route-card-footer {
  display: flex;
  gap: 0.75rem;
}

.route-card-footer .btn {
  flex: 1;
}

/* ==========================================================================
   Weekly Schedule & Live Slots
   ========================================================================== */
.schedule-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.schedule-container {
  background: var(--bg-subtle);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.schedule-header-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.schedule-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.schedule-card {
  display: grid;
  grid-template-columns: 190px 1.4fr 1.1fr 140px 140px;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 1.75rem;
  background: #FFFFFF;
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

[data-theme="dark"] .schedule-card {
  background: var(--bg-surface);
}

.schedule-card:hover {
  border-color: var(--jgg-orange);
  box-shadow: var(--shadow-sm);
}

.sch-date-col {
  display: flex;
  flex-direction: column;
}

.sch-date {
  font-weight: 800;
  font-size: 0.96rem;
  color: var(--text-main);
}

.sch-time {
  font-size: 0.82rem;
  color: var(--jgg-orange);
  font-weight: 700;
}

.sch-route-col {
  display: flex;
  flex-direction: column;
}

.sch-route-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-main);
}

.sch-guide-name {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sch-slot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  width: fit-content;
}

.sch-slot-badge.available {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.sch-slot-badge.almost-full {
  background: var(--jgg-orange-light);
  color: var(--jgg-orange);
}

.sch-slot-badge.last-slot {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  animation: pulseBadge 1.8s infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ==========================================================================
   Interactive Story Map
   ========================================================================== */
.map-section {
  padding: 6rem 0;
  background: var(--bg-subtle);
}

.map-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: center;
}

.map-canvas-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

[data-theme="dark"] .map-canvas-card {
  background: var(--bg-surface);
}

.map-svg-container {
  width: 100%;
  height: 480px;
  position: relative;
  background: #F4EFEA;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

[data-theme="dark"] .map-svg-container {
  background: #1C2023;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  transition: transform var(--transition-fast);
}

.map-pin:hover, .map-pin.active {
  transform: translate(-50%, -50%) scale(1.25);
  z-index: 20;
}

.pin-marker {
  width: 36px;
  height: 36px;
  background: var(--jgg-orange);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 3px solid #FFFFFF;
  box-shadow: 0 6px 14px rgba(240, 90, 54, 0.4);
  position: relative;
}

.pin-pulse {
  position: absolute;
  inset: -8px;
  border-radius: var(--radius-full);
  border: 2px solid var(--jgg-orange);
  animation: pinPulse 2s infinite;
}

@keyframes pinPulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.map-preview-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

[data-theme="dark"] .map-preview-card {
  background: var(--bg-surface);
}

/* ==========================================================================
   How Pay-As-You-Wish Works (Simple, Fun, Explanatory)
   ========================================================================== */
.how-it-works-section {
  padding: 6rem 0;
  background: var(--jgg-charcoal);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.how-it-works-section .section-title,
.how-it-works-section .section-subtitle {
  color: #FFFFFF;
}

.how-it-works-section .section-subtitle {
  opacity: 0.85;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.5rem;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all var(--transition-smooth);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  border-color: var(--jgg-orange);
}

.step-icon-wrap {
  width: 68px;
  height: 68px;
  background: var(--jgg-orange);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin: 0 auto 1.35rem auto;
  box-shadow: 0 8px 20px rgba(240, 90, 54, 0.4);
}

.step-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
  font-weight: 800;
}

.step-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ==========================================================================
   Storytellers (Guides) Section
   ========================================================================== */
.guides-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.guide-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-smooth);
}

[data-theme="dark"] .guide-card {
  background: var(--bg-surface);
}

.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--jgg-orange);
}

.guide-img-wrap {
  position: relative;
  height: 290px;
}

.guide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-badge-pill {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(37, 40, 42, 0.92);
  color: var(--jgg-gold);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.guide-card-body {
  padding: 1.85rem;
}

.guide-name {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  font-weight: 800;
}

.guide-role {
  color: var(--jgg-orange);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guide-quote {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  line-height: 1.55;
  border-left: 3px solid var(--jgg-orange);
  padding-left: 0.85rem;
}

.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-pill {
  font-size: 0.76rem;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--bg-muted);
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   Private Tour Calculator Banner
   ========================================================================== */
.private-tour-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #25282A 0%, #1A1D1F 100%);
  color: #FFFFFF;
}

.private-banner-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.private-title {
  color: #FFFFFF;
  font-size: 2.35rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.private-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.private-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.priv-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.9);
}

.priv-calc-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  color: var(--text-main);
  box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .priv-calc-box {
  background: var(--bg-surface);
}

.calc-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-subtle);
  background: var(--bg-subtle);
  color: var(--text-main);
  font-size: 0.94rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--jgg-orange);
  background: #FFFFFF;
}

.calc-estimate-result {
  background: var(--jgg-orange-light);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.35rem 0;
}

.est-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--jgg-orange);
}

/* ==========================================================================
   Reviews & Community Wall
   ========================================================================== */
.reviews-section {
  padding: 6rem 0;
  background: var(--bg-subtle);
}

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

.review-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  padding: 2.25rem;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

[data-theme="dark"] .review-card {
  background: var(--bg-surface);
}

.rev-stars {
  color: #F59E0B;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.rev-comment {
  font-size: 0.96rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--jgg-orange);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.rev-info {
  display: flex;
  flex-direction: column;
}

.rev-name {
  font-weight: 800;
  font-size: 0.96rem;
}

.rev-tour {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-main);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  padding: 1.35rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform var(--transition-fast);
  color: var(--jgg-orange);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

/* ==========================================================================
   Footer & Floating Elements
   ========================================================================== */
.footer {
  background: var(--jgg-charcoal);
  color: #FFFFFF;
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-logo {
  height: 58px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.footer-link:hover {
  color: var(--jgg-orange);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating WhatsApp Concierge */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: all var(--transition-fast);
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Modals & Digital Boarding Pass
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(37, 40, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: all var(--transition-smooth);
}

[data-theme="dark"] .modal-box {
  background: var(--bg-surface);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 1.75rem 2.25rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-close-btn {
  font-size: 1.6rem;
  color: var(--text-muted);
}

.modal-close-btn:hover {
  color: var(--jgg-orange);
}

.modal-body {
  padding: 2.25rem;
}

/* Digital Boarding Pass Ticket */
.boarding-pass-card {
  background: #FFFFFF;
  color: #25282A;
  border-radius: var(--radius-md);
  border: 2.5px dashed var(--jgg-orange);
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #EBE6DF;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.ticket-title {
  font-weight: 900;
  color: var(--jgg-orange);
  font-size: 1.15rem;
}

.ticket-code {
  background: var(--jgg-orange-light);
  color: var(--jgg-orange);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: monospace;
  font-weight: 800;
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ticket-field-lbl {
  font-size: 0.75rem;
  color: #667085;
  text-transform: uppercase;
  font-weight: 700;
}

.ticket-field-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #25282A;
}

/* Route Timeline Drawer */
.timeline-list {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--jgg-orange);
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -2.65rem;
  top: 0.15rem;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border: 3px solid var(--jgg-orange);
  border-radius: var(--radius-full);
}

.timeline-time {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--jgg-orange);
}

.timeline-title {
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0.2rem 0;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 2.85rem;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guides-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-layout {
    grid-template-columns: 1fr;
  }
  .schedule-card {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .private-banner-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .nav-menu {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .routes-grid {
    grid-template-columns: 1fr;
  }
  .guides-grid, .reviews-grid, .steps-grid {
    grid-template-columns: 1fr;
  }
  .schedule-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
