:root {
  /* PALETA ESTRICTA: AZUL DEL LOGO Y BLANCO */
  --primary: #24BDC7;
  --primary-hover: #1FA6AE;
  --primary-dark: #18868D;
  --primary-light: #E6FAFB;
  --primary-glow: rgba(36, 189, 199, 0.4);
  --primary-bg-subtle: rgba(36, 189, 199, 0.12);
  --primary-border: rgba(36, 189, 199, 0.35);

  --text-main: #FFFFFF;
  --text-sub: #E6FAFB;
  --text-muted: rgba(255, 255, 255, 0.75);

  --bg-dark: #08121B;
  --bg-card: #0F1F2C;
  --bg-card-hover: #152B3D;
  --border-color: rgba(36, 189, 199, 0.25);
  
  --whatsapp: #24BDC7;
  --whatsapp-hover: #1FA6AE;
  
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.6);
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Header */
.app-header {
  background-color: rgba(15, 31, 44, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  background: #FFFFFF;
  padding: 3px 8px;
}

.badge-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: var(--primary-bg-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--primary-border);
}

.nav-tabs {
  display: flex;
  background: rgba(0,0,0,0.5);
  padding: 0.35rem;
  border-radius: 12px;
  gap: 0.25rem;
  border: 1px solid var(--border-color);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.6rem 1.15rem;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,0.08);
}

.tab-btn.active {
  background: var(--primary);
  color: #08121B;
  font-weight: 900;
  box-shadow: 0 2px 12px var(--primary-glow);
}

.btn-whatsapp-direct {
  background-color: var(--primary);
  color: #08121B;
  padding: 0.65rem 1.35rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-whatsapp-direct:hover {
  background-color: #FFFFFF;
  color: #08121B;
  transform: translateY(-1px);
}

/* Main Container */
.main-container {
  max-width: 1400px;
  width: 100%;
  margin: 1.25rem auto;
  padding: 0 1.5rem;
  flex: 1;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================================= */
/* TAB 0: CINEMA HERO (BICOLOR: AZUL & BLANCO)              */
/* ========================================================= */

.cinema-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 2.5rem 2rem 2.5rem;
  box-shadow: var(--shadow-lg);
  background-color: #08121B;
}

.cinema-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cinema-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 0.4s ease-in-out, opacity 0.3s ease;
  z-index: 1;
  opacity: 1;
}

.cinema-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg, 
    rgba(8, 18, 27, 0.40) 0%, 
    rgba(8, 18, 27, 0.65) 50%, 
    rgba(8, 18, 27, 0.92) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.cinema-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
}

/* SECTUR Official Tourism Badge Overlay */
.sectur-hero-badge {
  position: absolute;
  top: 1.75rem;
  right: 2.25rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(36, 189, 199, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sectur-hero-badge:hover {
  transform: translateY(-2px) scale(1.03);
  background: #FFFFFF;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(36, 189, 199, 0.4);
}

.sectur-logo-img {
  height: 48px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .sectur-hero-badge {
    top: 1rem;
    right: 1.25rem;
    padding: 0.4rem 0.85rem;
  }
  .sectur-logo-img {
    height: 38px;
    max-width: 140px;
  }
}

@media (max-width: 600px) {
  .sectur-hero-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 1rem;
    align-self: flex-start;
  }
}

.hero-top-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.pulse-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-bg-subtle);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: liveBlink 1.5s infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.trust-capsules {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.capsule {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--primary-border);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #FFFFFF;
}

.capsule strong {
  color: var(--primary);
}

.cinema-hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  text-shadow: 0 4px 16px rgba(0,0,0,0.8);
  transition: all 0.25s ease;
}

.cinema-description {
  font-size: 1.05rem;
  color: #E6FAFB;
  line-height: 1.55;
  max-width: 760px;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.cinema-highlights-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hl-item {
  background: var(--primary-bg-subtle);
  border: 1px solid var(--primary-border);
  color: #FFFFFF;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hl-item i {
  color: var(--primary);
}

/* Cinema CTA Card */
.cinema-cta-card {
  background: rgba(10, 24, 37, 0.92);
  backdrop-filter: blur(14px);
  border: 1.5px solid var(--primary);
  border-radius: 16px;
  padding: 1.15rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(36, 189, 199, 0.15);
  box-sizing: border-box;
}

/* Row 1: Pricing & Large Savings Chip */
.cta-top-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cta-price-col {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cta-gyg-strike {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.cta-price-val-row {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.cta-price-val-row span#cinema-direct-price,
.cta-price-val-row span {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.cta-price-val-row small {
  font-size: 0.82rem;
  color: #FFFFFF;
  font-weight: 700;
}

.cta-savings-chip {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 900;
  padding: 0.35rem 0.95rem;
  border-radius: 8px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
  white-space: nowrap;
}

/* Row 2: Pax Counter & Actions */
.cta-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Pax Counter */
.cta-pax-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(36, 189, 199, 0.25);
}

.pax-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #FFFFFF;
}

.pax-btn-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pax-btn {
  background: rgba(36, 189, 199, 0.15);
  border: 1px solid rgba(36, 189, 199, 0.4);
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.pax-btn:hover {
  background: var(--primary);
  color: #08121B;
}

.pax-num {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
  min-width: 20px;
  text-align: center;
}

.hero-total-indicator {
  font-size: 0.82rem;
  color: #FFFFFF;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 0.75rem;
  white-space: nowrap;
}

.hero-total-indicator strong {
  color: var(--primary);
  font-size: 0.98rem;
  font-weight: 900;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-hero-wa {
  background: var(--primary);
  color: #08121B;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(36, 189, 199, 0.4);
  white-space: nowrap;
}

.btn-hero-wa:hover {
  background: #FFFFFF;
  color: #08121B;
  transform: translateY(-1px);
}

.btn-hero-info {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 0.65rem 1.15rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-hero-info:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
}

.btn-hero-info:hover {
  background: #FFFFFF;
  color: #08121B;
}

/* INTERACTIVE TOUR SELECTOR STRIP */
.cinema-cards-strip {
  position: relative;
  z-index: 3;
  margin-top: 2rem;
}

.strip-header {
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.strip-cards-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.65rem;
}

.strip-card {
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  background: var(--bg-card);
}

.strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.strip-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(8, 18, 27, 0.95) 100%);
  padding: 0.55rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.strip-tag {
  font-size: 0.62rem;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  color: var(--primary);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  border: 1px solid var(--primary-border);
  align-self: flex-start;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.strip-card h4 {
  font-size: 0.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.strip-pricing {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.strip-pricing strong {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
}

.strip-pricing strike {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.strip-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--primary);
}

.strip-card:hover img {
  transform: scale(1.1);
}

.strip-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary), 0 8px 24px var(--primary-glow);
  transform: translateY(-4px);
}

@media (max-width: 1100px) and (min-width: 700px) {
  .strip-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
  }
  .strip-card {
    flex: 0 1 calc(25% - 0.65rem);
    min-width: 140px;
    max-width: 200px;
  }
}

@media (max-width: 699px) {
  .strip-cards-grid {
    display: flex;
    overflow-x: auto;
    gap: 0.6rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .strip-card {
    flex: 0 0 145px;
    scroll-snap-align: start;
  }
}

/* ========================================================= */
/* MOSAICO FOTOGRÁFICO INTERACTIVO                           */
/* ========================================================= */

.interactive-section-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.section-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  margin-bottom: 0.5rem;
}

.interactive-section-box h2 {
  font-size: 1.65rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.photo-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

@media (max-width: 900px) {
  .photo-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mosaic-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.mosaic-large {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mosaic-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 18, 27, 0.95) 100%);
  display: flex;
  flex-direction: column;
}

.mosaic-badge {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--primary);
  background: rgba(0,0,0,0.75);
  border: 1px solid var(--primary-border);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 0.35rem;
}

.mosaic-overlay h4 {
  font-size: 1rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.mosaic-overlay small {
  font-size: 0.78rem;
  color: #E6FAFB;
}

.mosaic-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.mosaic-item:hover img {
  transform: scale(1.06);
}

/* ========================================================= */
/* TAB 1: CHAT LAYOUT                                        */
/* ========================================================= */

.chat-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 1.5rem;
  height: 740px;
}

@media (max-width: 950px) {
  .chat-layout {
    grid-template-columns: 1fr;
    height: auto;
  }
}

.chat-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.sidebar-card h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
}

.sidebar-card .subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.scenario-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 4px;
}

.scenario-buttons::-webkit-scrollbar {
  width: 4px;
}
.scenario-buttons::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 2px;
}

.scenario-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  color: #FFFFFF;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
}

.scenario-btn:hover {
  background: var(--primary-bg-subtle);
  border-color: var(--primary);
  transform: translateX(3px);
}

.scenario-btn .icon {
  font-size: 1.25rem;
}

.scenario-btn strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF;
}

.scenario-btn small {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.promo-banner {
  background: var(--primary-bg-subtle);
  border: 1px solid var(--primary);
}

.banner-badge {
  font-size: 0.68rem;
  font-weight: 900;
  color: #08121B;
  background: var(--primary);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.promo-banner h4 {
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
  font-weight: 900;
}

.promo-banner p {
  font-size: 0.8rem;
  color: #E6FAFB;
  line-height: 1.4;
}

/* Chat Box */
.chat-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.chat-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.35);
}

.assistant-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #08121B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  position: relative;
  box-shadow: 0 2px 10px var(--primary-glow);
}

.online-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border: 2px solid var(--bg-card);
  border-radius: 50%;
}

.assistant-info {
  margin-left: 0.85rem;
  flex: 1;
}

.assistant-info h3 {
  font-size: 1rem;
  font-weight: 900;
  color: #FFFFFF;
}

.assistant-info p {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 700;
}

.btn-clear {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-clear:hover {
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
}

.chat-messages {
  flex: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}
.chat-messages::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}

.message {
  display: flex;
  gap: 0.75rem;
  max-width: 85%;
}

.message.user {
  margin-left: auto;
  flex-direction: row-reverse;
}

.message-bubble {
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  font-size: 0.93rem;
  line-height: 1.55;
}

.message.assistant .message-bubble {
  background: #152B3D;
  border: 1px solid var(--primary-border);
  color: #FFFFFF;
  border-top-left-radius: 2px;
}

.message.user .message-bubble {
  background: var(--primary);
  color: #08121B;
  font-weight: 800;
  border-top-right-radius: 2px;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.message-bubble p {
  margin-bottom: 0.5rem;
}
.message-bubble p:last-child {
  margin-bottom: 0;
}

.message-bubble strong {
  color: var(--primary);
}

.message.user .message-bubble strong {
  color: #08121B;
}

.message-bubble ul {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}

.message-bubble li {
  margin-bottom: 0.25rem;
}

/* Embedded Tour Card in Chat */
.chat-tour-preview {
  margin-top: 0.75rem;
  background: #08121B;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  gap: 0.85rem;
}

.chat-tour-img {
  width: 110px;
  height: 90px;
  object-fit: cover;
}

.chat-tour-details {
  padding: 0.5rem 0.75rem 0.5rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chat-tour-details h5 {
  font-size: 0.88rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.chat-tour-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.chat-tour-price .direct-price {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--primary);
}

.chat-tour-price .gyg-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  margin-left: 0.35rem;
}

/* Quotation Box in Chat */
.chat-quote-box {
  margin-top: 0.75rem;
  background: var(--primary-bg-subtle);
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 0.9rem;
}

.quote-header {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quote-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #E6FAFB;
}

.quote-row.highlight {
  font-weight: 900;
  font-size: 1rem;
  color: #FFFFFF;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 0.4rem;
  margin-top: 0.4rem;
}

.quote-savings {
  font-size: 0.82rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-top: 0.4rem;
}

/* Quick Actions Bar */
.quick-actions-bar {
  padding: 0.6rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  background: rgba(0,0,0,0.35);
  border-top: 1px solid var(--border-color);
}

.quick-action-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: #FFFFFF;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.quick-action-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #08121B;
}

.quick-action-pill.btn-wa {
  background: var(--primary);
  color: #08121B;
  border-color: var(--primary);
}

.quick-action-pill.btn-wa:hover {
  background: #FFFFFF;
  color: #08121B;
}

/* Chat Input Form */
.chat-input-form {
  padding: 0.85rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.chat-input-form input {
  flex: 1;
  background: #08121B;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #FFFFFF;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.chat-input-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

.btn-send {
  background: var(--primary);
  color: #08121B;
  border: none;
  border-radius: 10px;
  width: 50px;
  cursor: pointer;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-send:hover {
  background: #FFFFFF;
  transform: scale(1.03);
}

/* TAB 2: CATALOG SECTION */
.section-intro {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.intro-text h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.intro-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.category-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.55rem 1.1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #08121B;
  border-color: var(--primary);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.tour-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tour-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.tour-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-card-image img {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(8, 18, 27, 0.9);
  backdrop-filter: blur(4px);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--primary);
  text-transform: uppercase;
}

.tour-discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #08121B;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px var(--primary-glow);
}

.tour-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-card-header {
  margin-bottom: 0.75rem;
}

.tour-duration {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.tour-card-header h3 {
  font-size: 1.12rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.35;
}

.tour-desc {
  font-size: 0.85rem;
  color: #E6FAFB;
  line-height: 1.45;
  margin-bottom: 1rem;
  flex: 1;
}

.tour-pricing-box {
  background: rgba(0,0,0,0.4);
  border-radius: 10px;
  padding: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border-color);
}

.pricing-labels {
  display: flex;
  flex-direction: column;
}

.gyg-strike {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.direct-price-tag {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary);
}

.direct-price-tag small {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
}

.savings-chip {
  background: var(--primary-bg-subtle);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  text-align: center;
}

.tour-card-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-details {
  background: transparent;
  border: 1px solid var(--border-color);
  color: #FFFFFF;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  flex: 1;
  transition: all 0.2s ease;
}

.btn-details:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
}

.btn-book-wa {
  background: var(--primary);
  color: #08121B;
  border: none;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex: 1.3;
  transition: all 0.2s ease;
}

.btn-book-wa:hover {
  background: #FFFFFF;
  color: #08121B;
}

/* TAB 3: ADMIN SECTION */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-header h2 {
  font-size: 1.6rem;
  font-weight: 900;
}

.admin-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--primary);
  color: #08121B;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-primary:hover {
  background: #FFFFFF;
  color: #08121B;
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.admin-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.settings-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF;
}

.form-group input {
  background: #08121B;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  color: #FFFFFF;
  font-size: 0.92rem;
  outline: none;
}

.form-group input:focus {
  border-color: var(--primary);
}

.form-group small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.table-responsive {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  background: rgba(0,0,0,0.45);
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-color);
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.92rem;
  vertical-align: middle;
}

.admin-table tr:hover {
  background: rgba(255,255,255,0.03);
}

.table-tour-title {
  font-weight: 900;
  color: #FFFFFF;
}

.price-input {
  background: #08121B;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  color: var(--primary);
  font-weight: 900;
  width: 120px;
  font-size: 0.95rem;
  outline: none;
}

.price-input:focus {
  border-color: var(--primary);
}

.discount-input {
  background: #08121B;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  color: #FFFFFF;
  font-weight: 900;
  width: 75px;
  font-size: 0.9rem;
  outline: none;
}

.direct-price-calc {
  font-weight: 900;
  color: var(--primary);
  font-size: 1.1rem;
}

.savings-calc {
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.88rem;
}

.btn-save-row {
  background: var(--primary-bg-subtle);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-save-row:hover {
  background: var(--primary);
  color: #08121B;
}

/* TAB 4: FAQS */
.faqs-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-card.open {
  border-color: var(--primary);
}

.faq-header {
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-header h4 {
  font-size: 1.02rem;
  font-weight: 900;
  color: #FFFFFF;
}

.faq-icon {
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-card.open .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.35rem 1.35rem 1.35rem;
  font-size: 0.93rem;
  color: #E6FAFB;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: none;
}

.faq-card.open .faq-body {
  display: block;
  padding-top: 1rem;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.hidden {
  display: none !important;
}

.modal-card {
  background: #08121B;
  border: 1px solid var(--primary);
  border-radius: 16px;
  max-width: 1160px;
  width: 96%;
  max-height: 94vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(36, 189, 199, 0.2);
  padding: 2.5rem;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--primary-border);
  color: #FFFFFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--primary);
  color: #08121B;
  border-color: var(--primary);
}

/* PANTALLA DEDICADA DE TOUR */
#tour-detail-screen {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.tour-screen-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-back-to-tours {
  background: var(--primary-bg-subtle);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-back-to-tours:hover {
  background: var(--primary);
  color: #08121B;
  transform: translateX(-4px);
}

.tour-screen-breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tour-screen-breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

/* GETYOURGUIDE LUXURY TOUR PRESENTATION STYLES */
.gyg-header-bar {
  margin-bottom: 1.25rem;
}

/* LIGHTBOX FULLSCREEN CAROUSEL */
.lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 18, 27, 0.96);
  backdrop-filter: blur(12px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox-backdrop.hidden {
  display: none !important;
}

.lightbox-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  height: 94vh;
  background: #08121B;
  border: 1px solid var(--primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95), 0 0 40px rgba(36, 189, 199, 0.25);
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--border-color);
}

.lightbox-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lightbox-info strong {
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 800;
}

.lightbox-info span {
  font-size: 0.85rem;
  color: var(--primary);
  background: var(--primary-bg-subtle);
  border: 1px solid var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 700;
}

.lightbox-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  color: #FFFFFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
  background: var(--primary);
  color: #08121B;
  border-color: var(--primary);
}

.lightbox-main-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #000000;
}

.lightbox-img-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.5rem;
}

.lightbox-img-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  transition: opacity 0.2s ease;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 18, 27, 0.85);
  backdrop-filter: blur(8px);
  border: 2px solid var(--primary);
  color: var(--primary);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 30;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.lightbox-nav-btn.prev {
  left: 16px;
}

.lightbox-nav-btn.next {
  right: 16px;
}

.lightbox-nav-btn:hover {
  background: var(--primary);
  color: #08121B;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-thumbs-strip {
  display: flex;
  gap: 0.6rem;
  padding: 0.85rem 1.25rem;
  background: rgba(0, 0, 0, 0.7);
  border-top: 1px solid var(--border-color);
  overflow-x: auto;
  scroll-behavior: smooth;
}

.lightbox-thumbs-strip::-webkit-scrollbar {
  height: 6px;
}

.lightbox-thumbs-strip::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.lightbox-thumb {
  flex: 0 0 80px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-thumb:hover {
  opacity: 0.9;
  border-color: var(--primary-border);
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
  transform: scale(1.05);
}

.gyg-breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.gyg-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.gyg-title {
  font-size: 1.95rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.gyg-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.gyg-rating-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #FFFFFF;
}

.gyg-stars {
  color: #FFB800;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.gyg-reviews-link {
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}

.gyg-provider {
  color: rgba(255, 255, 255, 0.7);
}

.gyg-actions-right {
  display: flex;
  gap: 0.75rem;
}

.gyg-action-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #FFFFFF;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.gyg-action-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* 5-Photo Mosaic Gallery matching Screenshot 4 */
.gyg-photo-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.75rem;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}

.gyg-mosaic-left {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.gyg-mosaic-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.gyg-mosaic-left img:hover {
  transform: scale(1.03);
}

.gyg-mosaic-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  height: 100%;
}

.gyg-mosaic-thumb {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.gyg-mosaic-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.gyg-mosaic-thumb img:hover {
  transform: scale(1.05);
}

.gyg-view-all-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #FFFFFF;
  color: #08121B;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 5;
  transition: all 0.2s ease;
}

.gyg-view-all-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Two-Column Content Layout */
.gyg-content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

/* Key Features / Badges Row */
.gyg-key-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.gyg-feature-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.gyg-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary-bg-subtle);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.gyg-feature-text strong {
  display: block;
  font-size: 0.88rem;
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.gyg-feature-text p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
  margin: 0;
}

/* Verified Reviews Box matching Screenshot 1 */
.gyg-section-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gyg-reviews-carousel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gyg-review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gyg-review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gyg-review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FF5A1F;
  color: #FFFFFF;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.gyg-review-avatar.alt {
  background: var(--primary);
  color: #08121B;
}

.gyg-review-author strong {
  display: block;
  font-size: 0.88rem;
  color: #FFFFFF;
}

.gyg-review-author small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.gyg-review-comment {
  font-size: 0.85rem;
  color: #E6FAFB;
  line-height: 1.5;
  font-style: italic;
}

/* Step-by-Step Timeline Itinerary matching Screenshot 1 */
.gyg-itinerary-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.gyg-timeline {
  position: relative;
  padding-left: 2rem;
}

.gyg-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 10px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, #FF5A1F 100%);
  border-radius: 3px;
}

.gyg-timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.gyg-timeline-item:last-child {
  margin-bottom: 0;
}

.gyg-timeline-bullet {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #08121B;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.gyg-timeline-bullet.start {
  background: #FF5A1F;
  border-color: #FF5A1F;
  color: #FFFFFF;
}

.gyg-timeline-content strong {
  display: block;
  font-size: 0.92rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.gyg-timeline-content span {
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 800;
}

.gyg-timeline-content p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.2rem;
  line-height: 1.35;
}

.gyg-map-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #000;
  height: 100%;
  min-height: 260px;
  position: relative;
}

.gyg-map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bullet Highlights / Qué Harás matching Screenshot 2 */
.gyg-what-you-will-do {
  margin-bottom: 2rem;
}

.gyg-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gyg-bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: #FFFFFF;
  line-height: 1.5;
}

.gyg-bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 900;
}

/* Full Details Section */
.gyg-details-text {
  font-size: 0.92rem;
  color: #E6FAFB;
  line-height: 1.65;
  margin-bottom: 2rem;
  white-space: pre-line;
}

/* Inclusions & Exclusions Checklist */
.gyg-inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gyg-inc-box {
  background: rgba(36, 189, 199, 0.08);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
}

.gyg-exc-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
}

.gyg-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gyg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.gyg-checklist li i.check {
  color: #00E676;
}

.gyg-checklist li i.cross {
  color: #FF5252;
}

/* Meeting Point & Map Box */
.gyg-meeting-point-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.gyg-maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.88rem;
  margin-top: 0.5rem;
  text-decoration: none;
}

.gyg-maps-btn:hover {
  text-decoration: underline;
}

/* Sticky Booking Card (Right Column) matching Screenshot 1 & 2 */
.gyg-sticky-card {
  position: sticky;
  top: 1.5rem;
  background: rgba(15, 31, 44, 0.95);
  backdrop-filter: blur(14px);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.gyg-booking-price-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.gyg-price-from {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.gyg-price-tag-big {
  font-size: 2rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
}

.gyg-price-tag-big strong {
  color: var(--primary);
}

.gyg-savings-ribbon {
  display: inline-block;
  background: var(--primary);
  color: #08121B;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  margin-top: 0.4rem;
}

.gyg-selector-field {
  background: rgba(8, 18, 27, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: #FFFFFF;
  font-size: 0.88rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gyg-selector-field:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

.gyg-field-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  font-size: 0.88rem;
  margin: 0;
  cursor: pointer;
}

.gyg-selector-field select,
.gyg-selector-field input[type="date"] {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 0.6rem;
  outline: none;
  color-scheme: dark;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: right;
}

.gyg-selector-field select:hover,
.gyg-selector-field input[type="date"]:hover,
.gyg-selector-field select:focus,
.gyg-selector-field input[type="date"]:focus {
  border-color: var(--primary);
  background: rgba(36, 189, 199, 0.1);
}

.gyg-selector-field select option {
  background: #08121B;
  color: #FFFFFF;
  padding: 0.5rem;
}

/* CUSTOM INTERACTIVE CALENDAR POPUP */
.date-picker-field {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.custom-date-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-weight: 800;
  color: var(--primary);
  font-size: 0.88rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.date-picker-field:hover .custom-date-display {
  border-color: var(--primary);
  background: rgba(36, 189, 199, 0.12);
  box-shadow: 0 0 10px var(--primary-glow);
}

.custom-calendar-popup {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  background: #08121B;
  border: 2px solid var(--primary);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 30px rgba(36, 189, 199, 0.3);
  padding: 1.15rem;
  z-index: 99999;
  cursor: default;
  animation: calFadeIn 0.2s ease-out;
}

@keyframes calFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.custom-calendar-popup.hidden {
  display: none !important;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-color);
}

.cal-title {
  font-weight: 900;
  font-size: 0.95rem;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.cal-nav-btn {
  background: var(--primary-bg-subtle);
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.8rem;
}

.cal-nav-btn:hover {
  background: var(--primary);
  color: #08121B;
  transform: scale(1.1);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cal-day.empty {
  cursor: default;
}

.cal-day:not(.disabled):not(.empty):hover {
  background: rgba(36, 189, 199, 0.2);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.cal-day.today {
  border-color: var(--primary-border);
  color: var(--primary);
}

.cal-day.selected {
  background: var(--primary) !important;
  color: #08121B !important;
  font-weight: 900 !important;
  box-shadow: 0 0 10px var(--primary-glow);
  transform: scale(1.08);
}

.cal-day.disabled {
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

.cal-quick-picks {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

.cal-quick-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #FFFFFF;
  padding: 0.35rem 0.4rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-align: center;
}

.cal-quick-btn:hover {
  background: var(--primary-bg-subtle);
  border-color: var(--primary);
  color: var(--primary);
}

.gyg-pax-stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gyg-pax-stepper button {
  background: var(--border-color);
  border: 1px solid var(--primary);
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.gyg-pax-stepper span {
  font-weight: 900;
  color: var(--primary);
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.gyg-total-breakdown {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--primary-border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin: 1rem 0;
}

.gyg-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.35rem;
}

.gyg-breakdown-row.total {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-color);
}

.gyg-btn-reserve {
  width: 100%;
  background: #0071EB;
  color: #FFFFFF;
  border: none;
  padding: 0.95rem;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 113, 235, 0.4);
}

.gyg-btn-reserve:hover {
  background: var(--primary);
  color: #08121B;
}

.gyg-guarantees-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0 0;
}

.gyg-guarantees-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.gyg-guarantees-list li i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 2px;
}

/* ========================================================= */
/* COMPREHENSIVE RESPONSIVE MOBILE OPTIMIZATION (< 768px)    */
/* ========================================================= */

@media (max-width: 900px) {
  .gyg-content-grid {
    grid-template-columns: 1fr;
  }
  .gyg-photo-mosaic {
    grid-template-columns: 1fr;
    height: auto;
  }
  .gyg-mosaic-left {
    height: 240px;
  }
  .gyg-mosaic-right {
    height: 160px;
  }
  .gyg-reviews-carousel,
  .gyg-itinerary-container,
  .gyg-key-features,
  .gyg-inclusions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Global / Main Container */
  .main-container {
    padding: 0 0.75rem;
    margin: 0.75rem auto;
  }

  /* Header on Mobile: Single Line, Slim and Subtle */
  .app-header {
    padding: 0.25rem 0.65rem;
    background: rgba(8, 18, 27, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0;
  }
  .header-container .logo-group {
    justify-content: flex-start;
    width: auto;
    flex-shrink: 0;
  }
  .brand-logo-img {
    height: 28px;
    padding: 2px 5px;
    border-radius: 4px;
  }
  .header-actions {
    display: none;
  }
  .nav-tabs {
    width: auto;
    flex: 1;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.12rem 0.2rem;
    gap: 0.2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: flex-end;
  }
  .nav-tabs::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    padding: 0.22rem 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    flex: 0 0 auto;
    border-radius: 5px;
    gap: 0.25rem;
    background: transparent;
    border: none;
  }
  .tab-btn i {
    font-size: 0.7rem;
  }
  .tab-btn.active {
    background: rgba(36, 189, 199, 0.2);
    color: var(--primary);
    border: 1px solid rgba(36, 189, 199, 0.35);
    box-shadow: none;
    font-weight: 800;
  }

  /* Cinema Hero on Mobile: Full 16:9 Uncropped Video & Structured Content */
  .cinema-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #08121B;
    border: 1px solid var(--border-color);
    min-height: auto;
    margin-bottom: 1rem;
  }
  .cinema-bg-video {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    z-index: 1;
  }
  .cinema-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(8, 18, 27, 0.15) 0%,
      rgba(8, 18, 27, 0.4) 60%,
      rgba(8, 18, 27, 0.95) 100%
    );
    z-index: 2;
    pointer-events: none;
  }
  .sectur-hero-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    max-width: none;
    width: auto;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    overflow: visible;
  }
  .sectur-logo-img {
    height: 18px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
  .cinema-content {
    position: relative;
    z-index: 5;
    padding: 0.75rem 0.75rem;
    background: #08121B;
    margin-top: -6px;
  }
  .hero-top-meta {
    flex-direction: row;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.35rem;
    padding-right: 0;
  }
  .pulse-live-badge {
    display: none; /* Hide bulky live badge on mobile to save vertical space */
  }
  .trust-capsules {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .capsule {
    font-size: 0.65rem;
    padding: 0.12rem 0.4rem;
    border-radius: 4px;
  }
  .cinema-hero h1,
  #cinema-title {
    font-size: 1.05rem;
    line-height: 1.25;
    margin: 0.3rem 0;
    font-weight: 900;
  }
  .cinema-description,
  #cinema-desc {
    font-size: 0.75rem;
    line-height: 1.35;
    margin-bottom: 0.45rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cinema-highlights-bar {
    display: none; /* Highlights are in Tour Details to keep mobile hero sleek */
  }
  .cinema-cta-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.5rem 0.5rem;
    border-radius: 10px;
    background: rgba(13, 29, 43, 0.94);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(36, 189, 199, 0.3);
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }
  .cta-price-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.25rem;
  }
  .cta-gyg-strike {
    font-size: 0.65rem;
    display: block;
  }
  .cta-direct-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
  }
  .cta-direct-price span,
  #cinema-direct-price {
    font-size: 1.15rem !important;
    font-weight: 900;
  }
  .cta-direct-price small {
    font-size: 0.65rem;
  }
  .cta-savings-chip,
  #cinema-savings-chip {
    font-size: 0.68rem !important;
    padding: 0.15rem 0.35rem !important;
    border-radius: 4px;
    font-weight: 800;
  }
  .cta-pax-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0.5rem;
    gap: 0.4rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.5);
  }
  .pax-label {
    font-size: 0.7rem;
  }
  .pax-btn-group {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .pax-btn {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    border-radius: 4px;
  }
  .pax-num,
  #hero-pax-count {
    font-size: 0.85rem;
    min-width: 14px;
  }
  .hero-total-indicator {
    font-size: 0.7rem;
    padding-left: 0.4rem;
  }
  .hero-total-indicator strong,
  #hero-total-price {
    font-size: 0.8rem !important;
  }
  .cta-actions {
    display: flex;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
    box-sizing: border-box;
  }
  .btn-hero-wa {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    padding: 0.45rem 0.35rem;
    font-size: 0.72rem;
    border-radius: 6px;
    white-space: nowrap;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .btn-hero-wa i {
    font-size: 0.82rem;
    margin-right: 2px;
  }
  .btn-hero-info {
    flex: 0 0 auto;
    min-width: 0;
    justify-content: center;
    text-align: center;
    padding: 0.45rem 0.5rem;
    font-size: 0.72rem;
    border-radius: 6px;
    white-space: nowrap;
    box-sizing: border-box;
  }
  .btn-hero-info i {
    font-size: 0.75rem;
    margin-right: 2px;
  }

  /* 3D Cards Strip on Mobile */
  .cinema-cards-strip {
    margin-top: 1rem;
  }
  .strip-header {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  .strip-cards-grid {
    gap: 0.65rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .strip-card {
    flex: 0 0 135px;
    height: 170px;
    scroll-snap-align: start;
  }
  .strip-card h4 {
    font-size: 0.8rem;
  }
  .strip-pricing strong {
    font-size: 0.82rem;
  }

  /* Tour Detail Screen (GetYourGuide Luxury on Mobile) */
  .tour-screen-top-bar {
    padding: 0.6rem 0.75rem;
    margin-bottom: 1rem;
  }
  .btn-back-to-tours {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
  }
  .gyg-header-bar {
    margin-bottom: 1rem;
  }
  .gyg-title {
    font-size: 1.3rem;
    line-height: 1.25;
    margin: 0.5rem 0;
  }
  .gyg-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .gyg-actions-right {
    display: none;
  }
  .gyg-photo-mosaic {
    grid-template-columns: 1fr;
    height: auto;
    gap: 0.4rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
  }
  .gyg-mosaic-left {
    height: 220px;
  }
  .gyg-mosaic-right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 65px;
    gap: 0.35rem;
  }
  .gyg-view-all-btn {
    bottom: 0.6rem;
    right: 0.6rem;
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }

  /* Content Grid Stacking on Mobile */
  .gyg-content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .gyg-right-col {
    order: -1;
  }
  .gyg-booking-card {
    position: static;
    padding: 1.15rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px var(--primary-glow);
  }

  /* Custom Interactive Datepicker Mobile Adaptation */
  .custom-calendar-popup {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 0.85rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.95);
  }
  .cal-title {
    font-size: 0.88rem;
  }
  .cal-day {
    font-size: 0.78rem;
    border-radius: 4px;
  }
  .cal-quick-btn {
    font-size: 0.68rem;
    padding: 0.3rem 0.25rem;
  }

  /* Features & Timeline on Mobile */
  .gyg-key-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }
  .gyg-itinerary-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .gyg-map-card {
    height: 200px;
    margin-top: 1rem;
  }
  .gyg-inclusions-grid {
    grid-template-columns: 1fr;
  }
  .gyg-reviews-carousel {
    grid-template-columns: 1fr;
  }

  /* Catalog Grid on Mobile */
  .section-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .section-intro h2 {
    font-size: 1.35rem;
  }
  .category-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.4rem;
    width: 100%;
  }
  .category-filters::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    white-space: nowrap;
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
    flex: 0 0 auto;
  }
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Full-Screen Lightbox on Mobile */
  .lightbox-backdrop {
    padding: 0;
    width: 100%;
    height: 100%;
  }
  .lightbox-container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 0;
    border: none;
  }
  .lightbox-header {
    padding: 0.6rem 0.85rem;
  }
  .lightbox-info {
    gap: 0.5rem;
    max-width: calc(100% - 45px);
  }
  .lightbox-info strong {
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
  }
  .lightbox-info span {
    font-size: 0.75rem;
    padding: 0.15rem 0.45rem;
  }
  .lightbox-close-btn {
    width: 34px;
    height: 34px;
    font-size: 1.3rem;
  }
  .lightbox-img-wrapper {
    padding: 0;
  }
  .lightbox-img-wrapper img {
    border-radius: 0;
    max-height: 80vh;
  }
  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    background: rgba(8, 18, 27, 0.7);
  }
  .lightbox-nav-btn.prev {
    left: 8px;
  }
  .lightbox-nav-btn.next {
    right: 8px;
  }
  .lightbox-thumbs-strip {
    padding: 0.4rem 0.6rem;
    gap: 0.35rem;
  }
  .lightbox-thumb {
    width: 60px;
    height: 48px;
  }

  /* Chat Simulator on Mobile */
  .chat-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .chat-sidebar {
    order: 2;
  }
  .chat-container {
    height: 520px;
  }
  .scenario-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .scenario-btn {
    padding: 0.5rem 0.75rem;
  }
}

/* Footer */
.app-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  background: var(--bg-card);
  text-align: center;
  padding: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* ========================================================= */
/* GETYOURGUIDE OFFICIAL MOBILE APP TEMPLATE (ALL 7 TOURS)   */
/* ========================================================= */

.gyg-app-view {
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.gyg-app-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.gyg-app-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.gyg-app-nav-btn:hover {
  background: var(--primary);
  color: #08121B;
  transform: scale(1.08);
}

.gyg-app-nav-title {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.gyg-app-nav-actions {
  display: flex;
  gap: 0.4rem;
}

/* Photo Mosaic & Dots */
.gyg-app-mosaic-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}

.gyg-app-mosaic {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.gyg-app-mosaic-top {
  height: 240px;
  cursor: pointer;
  overflow: hidden;
}

.gyg-app-mosaic-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gyg-app-mosaic-top:hover img {
  transform: scale(1.04);
}

.gyg-app-mosaic-bottom {
  display: flex;
  gap: 5px;
  height: 120px;
}

.gyg-app-mosaic-sub {
  flex: 1;
  cursor: pointer;
  overflow: hidden;
}

.gyg-app-mosaic-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gyg-app-mosaic-sub:hover img {
  transform: scale(1.05);
}

.gyg-app-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0.85rem 0 1.25rem 0;
}

.gyg-app-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.gyg-app-dots .dot.active {
  width: 18px;
  border-radius: 4px;
  background: #FFFFFF;
}

/* Header Content */
.gyg-app-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.gyg-app-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.gyg-app-star {
  font-weight: 900;
  color: #FFA500;
}

.gyg-app-reviews-link {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
}

.gyg-app-provider {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.gyg-app-summary {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.gyg-app-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 1.25rem 0;
}

/* Key Features List */
.gyg-app-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.gyg-app-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.gyg-app-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #122130;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #FFFFFF;
  flex-shrink: 0;
}

.gyg-app-feat-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
}

.gyg-app-feat-body span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
}

.gyg-learn-more {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 700;
}

/* Travelers Loved */
.gyg-app-travelers-loved {
  margin-bottom: 2.25rem;
}

.gyg-app-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.gyg-app-section-header h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.info-icon {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.gyg-app-review-card {
  background: #0E1D2D;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 0.85rem;
}

.gyg-app-review-stars {
  color: #FFA500;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

.gyg-app-review-user {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.gyg-app-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FF5B37;
  color: #FFFFFF;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.gyg-app-review-user strong {
  display: block;
  font-size: 0.88rem;
  color: #FFFFFF;
}

.gyg-app-review-user small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.gyg-app-review-text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  font-style: italic;
  margin: 0;
}

.gyg-app-btn-more-reviews {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #FFFFFF;
  padding: 0.75rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gyg-app-btn-more-reviews:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

/* Itinerary & Orange Line Timeline */
.gyg-app-itinerary-section {
  margin-bottom: 2.25rem;
}

.gyg-app-link-arrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.gyg-app-map-preview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 170px;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.gyg-app-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.15) brightness(0.9);
}

.gyg-app-map-overlay {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
}

.gyg-app-map-badge {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.gyg-app-map-badge i {
  color: #FF5B37;
}

.gyg-app-timeline-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.gyg-app-timeline {
  position: relative;
  padding-left: 1.85rem;
  border-left: 3px solid #FF5B37;
  margin-left: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.gyg-app-timeline-node {
  position: relative;
}

.gyg-app-node-marker {
  position: absolute;
  left: -1.85rem;
  top: 0;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #08121B;
  border: 2px solid #FF5B37;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF5B37;
  font-size: 0.65rem;
}

.gyg-app-timeline-node.start-node .gyg-app-node-marker {
  background: #FF5B37;
  border-color: #FF5B37;
}

.gyg-app-timeline-node.start-node .start-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
}

.node-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}

.node-title-row strong {
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 800;
}

.node-time-tag {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.node-address {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 700;
  margin: 0;
}

.node-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
  margin: 0;
}

/* Accordions */
.gyg-app-accordions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gyg-app-acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.85rem;
}

.gyg-app-acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.65rem 0;
}

.gyg-app-acc-header h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.acc-icon {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease;
}

.gyg-app-acc-content {
  display: none;
  padding-top: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.gyg-app-acc-item.active .gyg-app-acc-content {
  display: block;
}

.gyg-app-bullet-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.gyg-app-bullet-list li {
  margin-bottom: 0.4rem;
}

.inc-title {
  display: block;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.inc-title.not {
  color: rgba(255, 255, 255, 0.7);
}

/* Booking Box */
.gyg-app-booking-box {
  background: #0B1928;
  border: 1px solid rgba(36, 189, 199, 0.35);
  border-radius: 20px;
  padding: 1.35rem;
  margin-bottom: 5rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7);
}

.gyg-app-booking-box h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.gyg-app-input-field {
  background: #122232;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
  cursor: pointer;
  position: relative;
}

.field-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 700;
}

.field-left i {
  color: var(--primary);
  font-size: 1rem;
}

.pax-accent {
  color: var(--primary);
  font-size: 1rem;
}

.pax-stepper-inline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pax-circle-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1B3148;
  border: 1px solid var(--primary);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.pax-circle-btn:hover {
  background: var(--primary);
  color: #08121B;
}

.gyg-app-select {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.88rem;
  outline: none;
  cursor: pointer;
}

.gyg-app-select option {
  background: #08121B;
  color: #FFFFFF;
}

.gyg-app-price-breakdown {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  margin: 0.85rem 0;
  font-size: 0.82rem;
}

.gyg-app-price-breakdown .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.65);
}

.gyg-app-price-breakdown .row.sav {
  color: var(--primary);
  font-weight: 800;
}

.gyg-app-price-breakdown .row.total {
  font-size: 1.05rem;
  font-weight: 900;
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.45rem;
  margin-top: 0.45rem;
}

.gyg-app-price-breakdown .row.total span:last-child {
  color: var(--primary);
}

.gyg-app-btn-check-avail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #0071EB;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 900;
  padding: 0.95rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 113, 235, 0.4);
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
  border: none;
}

.gyg-app-btn-check-avail:hover {
  background: var(--primary);
  color: #08121B;
}

/* Sticky Floating Bottom Bar */
.gyg-sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0A1624;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
}

.bar-pricing .from-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.bar-pricing .price-val strong {
  font-size: 1.15rem;
  font-weight: 900;
  color: #FFFFFF;
}

.bar-pricing .strike-val {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 0.25rem;
}

.bar-pricing .per-person {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.gyg-app-booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.gyg-app-btn-check-avail.wa {
  background: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.gyg-app-btn-check-avail.wa:hover {
  background: #1EBE5D;
  color: #FFFFFF;
}

.gyg-app-btn-check-avail.email {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
  font-size: 0.95rem;
}

.gyg-app-btn-check-avail.email:hover {
  background: #0071EB;
  border-color: #0071EB;
  color: #FFFFFF;
}

.gyg-sticky-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.gyg-sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.6rem 0.95rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.gyg-sticky-btn.wa {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.gyg-sticky-btn.wa:hover {
  background: #1EBE5D;
  transform: translateY(-1px);
}

.gyg-sticky-btn.email {
  background: #0071EB;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 113, 235, 0.35);
}

.gyg-sticky-btn.email:hover {
  background: #005bb5;
  transform: translateY(-1px);
}


/* ========================================================= */
/* RESERVATION CHANNEL MODAL (WHATSAPP OR EMAIL)             */
/* ========================================================= */

.res-channel-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: opacity 0.25s ease;
}

@media (min-width: 768px) {
  .res-channel-backdrop {
    align-items: center;
  }
}

.res-channel-backdrop.hidden {
  display: none !important;
}

.res-channel-sheet {
  background: #0D1C2B;
  border: 1px solid rgba(36, 189, 199, 0.4);
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 500px;
  padding: 1.25rem 1.5rem 1.75rem 1.5rem;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.9);
  animation: slideUpModal 0.25s ease-out;
  position: relative;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .res-channel-sheet {
    border-radius: 20px;
    padding: 1.75rem;
    animation: fadeInModal 0.25s ease-out;
  }
}

@keyframes slideUpModal {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.sheet-handle-bar {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 auto 0.85rem auto;
}

@media (min-width: 768px) {
  .sheet-handle-bar {
    display: none;
  }
}

.sheet-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.sheet-title-group h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 0.25rem 0;
}

.sheet-title-group p {
  font-size: 0.78rem;
  color: var(--primary);
  margin: 0;
  font-weight: 700;
}

.sheet-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.sheet-close-btn:hover {
  background: var(--primary);
  color: #08121B;
}

.sheet-tour-summary {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(36, 189, 199, 0.25);
  border-radius: 14px;
  padding: 0.95rem 1.15rem;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.summary-name {
  font-size: 0.96rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.55rem;
}

.sheet-controls-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: flex-end;
}

@media (max-width: 580px) {
  .sheet-controls-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 0.65rem;
  }
  .sheet-control-item.sheet-pax-item {
    order: 1;
  }
  .sheet-control-item.sheet-price-item {
    order: 2;
    align-items: flex-end;
    text-align: right;
  }
  .sheet-control-item.sheet-date-item {
    order: 3;
    grid-column: span 2;
  }
}

.sheet-control-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sheet-control-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sheet-control-label i {
  color: var(--primary);
  font-size: 0.82rem;
}

.sheet-pax-stepper {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.3rem 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sheet-pax-btn {
  background: rgba(36, 189, 199, 0.15);
  border: 1px solid rgba(36, 189, 199, 0.4);
  color: #FFFFFF;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.sheet-pax-btn:hover {
  background: var(--primary);
  color: #08121B;
}

.sheet-pax-number {
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
  min-width: 22px;
  text-align: center;
}

.sheet-date-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(36, 189, 199, 0.4);
  padding: 0.52rem 0.85rem;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sheet-date-wrapper:hover {
  border-color: var(--primary);
  background: rgba(36, 189, 199, 0.12);
}

.sheet-date-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  color-scheme: dark;
}

.sheet-date-text {
  font-size: 0.86rem;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  pointer-events: none;
}

.sheet-date-text.placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.sheet-edit-icon {
  font-size: 0.92rem;
  color: var(--primary);
  margin-left: 0.5rem;
  pointer-events: none;
}

.sheet-price-item {
  align-items: flex-end;
  text-align: right;
}

.sheet-total-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.sheet-channels-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.95rem 1.15rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  box-sizing: border-box;
}

.channel-card.wa {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
  border-color: rgba(37, 211, 102, 0.4);
}

.channel-card.wa:hover {
  background: #25D366;
  border-color: #25D366;
  transform: translateY(-2px);
}

.channel-card.email {
  background: linear-gradient(135deg, rgba(0, 113, 235, 0.15), rgba(0, 113, 235, 0.05));
  border-color: rgba(0, 113, 235, 0.4);
}

.channel-card.email:hover {
  background: #0071EB;
  border-color: #0071EB;
  transform: translateY(-2px);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.channel-icon.wa-icon {
  background: #25D366;
  color: #FFFFFF;
}

.channel-card.wa:hover .channel-icon.wa-icon {
  background: #FFFFFF;
  color: #25D366;
}

.channel-icon.email-icon {
  background: #0071EB;
  color: #FFFFFF;
}

.channel-card.email:hover .channel-icon.email-icon {
  background: #FFFFFF;
  color: #0071EB;
}

.channel-info {
  flex: 1;
}

.channel-info strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
}

.channel-info span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.channel-card:hover .channel-info span {
  color: rgba(255, 255, 255, 0.95);
}

.channel-arrow {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.channel-card:hover .channel-arrow {
  color: #FFFFFF;
  transform: translateX(3px);
}

.sheet-footer-guarantee {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.sheet-footer-guarantee i {
  color: var(--primary);
}


/* ========================================================= */
/* BRAND STORY & FOUNDER BUTTONS (HOME TAB)                  */
/* ========================================================= */

.brand-story-actions-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .brand-story-actions-wrapper {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

.brand-story-card-btn {
  background: linear-gradient(135deg, rgba(13, 29, 43, 0.95), rgba(8, 18, 27, 0.9));
  border: 1px solid rgba(36, 189, 199, 0.3);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  width: 100%;
}

.brand-story-card-btn:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(18, 38, 56, 0.98), rgba(10, 24, 36, 0.95));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(36, 189, 199, 0.25);
}

.story-btn-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(36, 189, 199, 0.15);
  border: 1px solid rgba(36, 189, 199, 0.4);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.story-btn-icon.founder {
  background: rgba(255, 165, 0, 0.15);
  border-color: rgba(255, 165, 0, 0.4);
  color: #FFA500;
}

.brand-story-card-btn:hover .story-btn-icon {
  transform: scale(1.08);
}

.story-btn-content {
  flex: 1;
  min-width: 0;
}

.story-btn-content strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.15rem;
}

.story-btn-content span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story-btn-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.brand-story-card-btn:hover .story-btn-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

/* Story Modal */
.story-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}

.story-modal-backdrop.hidden {
  display: none !important;
}

.story-modal-card {
  background: #0B1826;
  border: 1px solid rgba(36, 189, 199, 0.4);
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(36, 189, 199, 0.2);
  animation: fadeInModal 0.25s ease-out;
}

.story-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 0.5rem;
}

.story-nav-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem;
  border-radius: 10px;
  gap: 0.25rem;
}

.story-tab-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
}

.story-tab-btn.active {
  background: var(--primary);
  color: #08121B;
}

.story-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.story-close-btn:hover {
  background: var(--primary);
  color: #08121B;
}

.story-tab-content {
  display: none;
  padding: 1.5rem;
  overflow-y: auto;
}

.story-tab-content.active {
  display: block;
}

.story-hero-banner {
  background: linear-gradient(135deg, rgba(36, 189, 199, 0.15), rgba(8, 18, 27, 0.8));
  border: 1px solid rgba(36, 189, 199, 0.3);
  border-radius: 14px;
  padding: 1.15rem;
  margin-bottom: 1.25rem;
}

.story-badge {
  display: inline-block;
  background: rgba(36, 189, 199, 0.2);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.45rem;
}

.story-hero-banner h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 0.35rem 0;
}

.story-quote {
  font-size: 0.88rem;
  color: #FFFFFF;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

.story-body-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.story-body-text p {
  margin-bottom: 0.85rem;
}

.story-highlight-box {
  background: rgba(0, 0, 0, 0.45);
  border-left: 3px solid var(--primary);
  padding: 0.95rem 1.15rem;
  border-radius: 0 10px 10px 0;
  margin: 1.25rem 0;
}

.story-highlight-box h4 {
  font-size: 0.95rem;
  color: #FFFFFF;
  margin: 0 0 0.45rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.story-highlight-box p {
  margin-bottom: 0.5rem;
  font-size: 0.84rem;
}

.story-highlight-box p:last-child {
  margin-bottom: 0;
}

.story-values-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.story-values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.story-values-list li i {
  color: var(--primary);
  margin-top: 3px;
}

/* Founder Profile Tab */
.founder-profile-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.founder-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.founder-avatar-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5B37, #FF8C42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 2rem;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.founder-verified-badge {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: #24BDC7;
  color: #08121B;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  white-space: nowrap;
}

.founder-profile-info h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #FFFFFF;
  margin: 0 0 0.2rem 0;
}

.founder-role {
  display: block;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.founder-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.founder-tags span {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  color: #FFFFFF;
}

.founder-bio-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.founder-bio-text h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 0.5rem 0;
}

.founder-quote-box {
  background: rgba(36, 189, 199, 0.08);
  border: 1px solid rgba(36, 189, 199, 0.3);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  position: relative;
}

.quote-mark {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  display: block;
}

.founder-quote-box p {
  font-size: 0.88rem;
  font-style: italic;
  color: #FFFFFF;
  margin: 0 0 0.35rem 0;
  line-height: 1.45;
}

.founder-quote-box small {
  display: block;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.78rem;
}
