
/* ===== CSS VARIABLES ===== */
:root {
  --orange: #FF6B1A;
  --orange-light: #FF8C42;
  --orange-dark: #D94F00;
  --navy: #0D1B2A;
  --navy-light: #1B2D42;
  --gold: #FFB800;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --gray: #475569;
  --gray-light: #E2E8F0;
  --text: #111827;
  --shadow: 0 20px 60px rgba(13,27,42,0.15);
  --shadow-orange: 0 10px 40px rgba(255,107,26,0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --brand-logo-height: 74px;
  --footer-logo-height: 86px;
  --loader-logo-height: 142px;
}


/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ===== LOADING SCREEN ===== */
#loading-screen {
  position: fixed; inset: 0; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.8s ease, visibility 0.8s;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; }
/* Failsafe: if JS/CDNs hang, don't trap the user forever */
#loading-screen { animation: lsAutoHide 0.8s ease forwards; animation-delay: 4s; }
@keyframes lsAutoHide { to { opacity: 0; visibility: hidden; } }
@media (prefers-reduced-motion: reduce) { #loading-screen { animation: none; } }

.loader-logo {
  text-align: center;
  animation: pulse 1.5s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.loader-brand-img {
  height: var(--loader-logo-height);
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(255,107,26,0.22));
}
.loader-logo p { color: rgba(255,255,255,0.72); letter-spacing: 3px; font-size: 0.78rem; text-transform: uppercase; margin-top: 14px; }
.loader-bar {
  width: 200px; height: 3px; background: rgba(255,255,255,0.1);
  margin: 20px auto 0; border-radius: 2px; overflow: hidden;
}
.loader-bar::after {
  content: ''; display: block; height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  animation: loading 2s ease forwards;
}
@keyframes loading { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  transition: var(--transition);
  background: rgba(13,27,42,0.35);
  backdrop-filter: blur(10px);
}

nav.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav-logo {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-decoration: none; cursor: pointer;
}
.nav-logo span { font-weight: 300; color: var(--white); -webkit-text-fill-color: var(--white); font-family: 'Source Sans 3', sans-serif; font-size: 0.65rem; display: block; letter-spacing: 3px; text-transform: uppercase; margin-top: -4px; }
.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  transition: var(--transition); cursor: pointer;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(255,107,26,0.15);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--orange); border-radius: 1px;
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 20px; }
.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
  color: var(--white) !important; padding: 10px 24px !important;
  border-radius: 50px !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; transition: var(--transition); border-radius: 1px; }

/* ===== PAGES SYSTEM ===== */
.page { display: none; animation: fadeIn 0.5s ease; }
.page.active { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ===== HERO SECTION ===== */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--navy);
}
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.slide-1 { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80'); }
.slide-2 { background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=80'); }
.slide-3 { background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1920&q=80'); }
.slide-4 { background-image: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1920&q=80'); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.38) 60%, rgba(217,79,0,0.18) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 20px; max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,26,0.2); border: 1px solid rgba(255,107,26,0.4);
  color: var(--orange-light); padding: 8px 20px; border-radius: 50px;
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px; animation: fadeInDown 1s ease 0.3s both;
}
.hero-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 900;
  color: var(--white); line-height: 1.1; margin-bottom: 24px;
  animation: fadeInDown 1s ease 0.5s both;
  text-shadow: 0 6px 18px rgba(0,0,0,0.42), 0 2px 6px rgba(0,0,0,0.26);
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.28));
}
.hero-subtitle {
  font-size: 1.2rem; color: #f7fafc;
  max-width: 720px; margin: 0 auto 40px;
  animation: fadeInDown 1s ease 0.7s both;
  font-weight: 600;
  line-height: 1.72;
  text-shadow: 0 4px 14px rgba(0,0,0,0.34), 0 1px 4px rgba(0,0,0,0.18);
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInDown 1s ease 0.9s both;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; padding: 16px 36px; border-radius: 50px;
  border: none; font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); box-shadow: var(--shadow-orange);
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(255,107,26,0.4); }
.btn-secondary {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  color: white; padding: 16px 36px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }
.hero-stats {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 60px; z-index: 2;
  animation: fadeInUp 1s ease 1.1s both;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 700; color: var(--orange-light); font-family: 'Merriweather', serif; }
.hero-stat span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.slider-controls {
  position: absolute; bottom: 40px; right: 60px; z-index: 2;
  display: flex; gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
}
.slider-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }
.video-toggle {
  position: absolute; top: 100px; right: 40px; z-index: 2;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); color: white;
  padding: 10px 20px; border-radius: 50px; cursor: pointer;
  font-size: 0.85rem; display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.video-toggle:hover { background: rgba(255,107,26,0.3); }
/* Video background */
.hero-video {
  position: absolute; inset: 0; z-index: 0; display: none;
  overflow: hidden;
}
.hero-video iframe {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh; height: 100vh;
  min-width: 100%; min-height: 56.25vw;
  pointer-events: none;
}
.hero-video.active { display: block; }
/* Video URL input */
.video-url-input {
  position: absolute; top: 150px; right: 40px; z-index: 2;
  display: none; flex-direction: column; gap: 8px;
  background: rgba(13,27,42,0.9); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,107,26,0.3); padding: 16px;
  border-radius: 12px; width: 300px;
}
.video-url-input.show { display: flex; }
.video-url-input input {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; padding: 10px; border-radius: 8px; font-size: 0.85rem;
  outline: none; font-family: 'Source Sans 3', sans-serif;
}
.video-url-input input::placeholder { color: rgba(255,255,255,0.4); }
.video-url-input button {
  background: var(--orange); color: white; border: none; padding: 8px;
  border-radius: 8px; cursor: pointer; font-weight: 600;
}

@keyframes fadeInDown { from{opacity:0;transform:translateY(-30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ===== PROMO TICKER ===== */
.promo-ticker {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  padding: 12px 0; overflow: hidden; position: relative; z-index: 5;
}
.ticker-track {
  display: flex; gap: 80px; animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  color: white; font-size: 0.85rem; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.ticker-track span i { color: var(--gold); }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
section { padding: 100px 40px; }
.container { max-width: 1300px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; color: var(--orange); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: var(--navy); line-height: 1.2;
}
.section-title .orange { color: var(--orange); }
.section-desc { color: #1f2937; max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; font-weight: 500; }

/* ===== PACKAGES GRID ===== */
#packages-section { background: var(--cream); }
.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
}
.package-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition); cursor: pointer; position: relative;
  display: flex; flex-direction: column; height: 100%;
  group: true;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.package-img {
  height: 240px; overflow: hidden; position: relative;
}
.package-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover .package-img img { transform: scale(1.08); }
.package-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange); color: white;
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}
.package-badge.hot { background: #e53e3e; }
.package-badge.new { background: #38a169; }
.package-favorite {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px);
  border: none; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); color: var(--gray);
}
.package-favorite.active { color: #e53e3e; }
.package-favorite:hover { transform: scale(1.1); }
.package-duration {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(13,27,42,0.8); backdrop-filter: blur(10px);
  color: white; padding: 6px 12px; border-radius: 50px; font-size: 0.8rem;
  display: flex; align-items: center; gap: 6px;
}
.package-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.package-location {
  display: flex; align-items: center; gap: 6px;
  color: var(--orange); font-size: 0.85rem; font-weight: 500; margin-bottom: 8px;
}
.package-name {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem; font-weight: 800; color: #111827;
  margin-bottom: 10px; line-height: 1.3;
}
.package-desc { color: #1f2937; font-size: 0.95rem; margin-bottom: 16px; line-height: 1.7; font-weight: 500; }
.package-features {
  display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap;
}
.package-feature {
  display: flex; align-items: center; gap: 6px;
  color: #111827; font-size: 0.82rem; font-weight: 600;
}
.package-feature i { color: var(--orange); font-size: 0.9rem; }
.package-footer {
  display: flex; align-items: stretch; justify-content: space-between;
  gap: 18px; padding-top: 18px; margin-top: auto; border-top: 1px solid rgba(15, 23, 42, 0.10);
}
.package-price .from { display: block; font-size: 0.75rem; color: #334155; font-weight: 700; }
.package-price strong {
  font-size: 1.8rem; font-weight: 700;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  font-family: 'Merriweather', serif;
}
.package-price span { color: #334155; font-size: 0.85rem; font-weight: 600; }
.btn-view {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; border: none; padding: 12px 24px; border-radius: 50px;
  font-weight: 600; cursor: pointer; transition: var(--transition);
  font-size: 0.9rem; font-family: 'Source Sans 3', sans-serif;
}
.btn-view:hover { transform: scale(1.05); box-shadow: var(--shadow-orange); }
.package-rating {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.8rem; color: var(--gold); margin-bottom: 12px;
}
.package-rating span { color: #334155; margin-left: 4px; font-weight: 700; }

/* ===== PACKAGE MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(13,27,42,0.85);
  backdrop-filter: blur(8px); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 900px; width: 100%; max-height: 90vh;
  overflow-y: auto; transform: scale(0.9) translateY(30px);
  transition: var(--transition); position: relative;
}
.modal-overlay.show .modal { transform: scale(1) translateY(0); }
.modal-hero {
  height: 300px; position: relative; overflow: hidden;
}
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.modal-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 0%, transparent 60%);
}
.modal-hero-content {
  position: absolute; bottom: 24px; left: 32px; right: 32px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.modal-title {
  font-family: 'Merriweather', serif;
  font-size: 2rem; font-weight: 900; color: white;
}
.modal-location { color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; font-size: 0.9rem; margin-top: 4px; }
.modal-price-tag {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; padding: 12px 24px; border-radius: 12px; text-align: center;
}
.modal-price-tag .from { font-size: 0.7rem; opacity: 0.8; display: block; }
.modal-price-tag strong { font-size: 1.8rem; font-family: 'Merriweather', serif; display: block; }
.modal-price-tag span { font-size: 0.75rem; opacity: 0.8; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(10px);
  border: none; color: white; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 1.1rem; z-index: 10;
}
.modal-close:hover { background: var(--orange); }
.modal-body { padding: 32px; }
.modal-tabs {
  display: flex; gap: 0; border-bottom: 2px solid var(--gray-light);
  margin-bottom: 28px; overflow-x: auto;
}
.modal-tab {
  padding: 12px 24px; border: none; background: none; cursor: pointer;
  font-weight: 600; font-size: 0.9rem; color: var(--gray); transition: var(--transition);
  border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap;
  font-family: 'Source Sans 3', sans-serif;
}
.modal-tab.active { color: var(--orange); border-bottom-color: var(--orange); }
.modal-tab-content { display: none; }
.modal-tab-content.active { display: block; animation: fadeIn 0.3s ease; }
.modal-description { color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.modal-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.highlight-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--cream); border-radius: var(--radius);
}
.highlight-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; flex-shrink: 0;
}
.highlight-text strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.highlight-text span { color: var(--gray); font-size: 0.85rem; }
.itinerary-accordion { display: grid; gap: 12px; }
.itinerary-day {
  position: relative;
  border: 1px solid rgba(255,107,26,0.12);
  border-left: 4px solid var(--orange);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15,23,42,0.05);
  overflow: hidden;
}
.itinerary-day::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,107,26,0.05), rgba(255,107,26,0.35), rgba(255,107,26,0.08));
}
.itinerary-day-btn {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 16px 18px 16px 42px;
  cursor: pointer;
}
.itinerary-day-main { display: grid; gap: 4px; }
.day-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 11px;
  border-radius: 10px;
  box-shadow: 0 12px 22px rgba(255,107,26,0.18);
}
.day-title { font-family: 'Merriweather', serif; font-size: 1.04rem; color: var(--navy); margin: 0; line-height: 1.28; }
.day-toggle {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,26,0.08);
  color: var(--orange);
  font-size: 1rem;
  transition: transform 0.28s ease, background 0.28s ease;
}
.itinerary-day.open .day-toggle { transform: rotate(180deg); background: rgba(255,107,26,0.14); }
.itinerary-day-content {
  display: none;
  padding: 0 18px 16px 42px;
}
.itinerary-day.open .itinerary-day-content { display: block; }
.day-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.7; white-space: pre-line; }
.included-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.included-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); font-size: 0.9rem;
}
.included-list li i { color: #38a169; font-size: 1rem; }
.included-list li.no i { color: #e53e3e; }
.modal-cta {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: gap;
}
.modal-cta-price { }
.modal-cta-price .label { font-size: 0.85rem; color: var(--gray); }
.modal-cta-price strong { font-size: 2.2rem; font-family: 'Merriweather', serif; color: var(--orange); display: block; }
.modal-cta-price .per { font-size: 0.85rem; color: var(--gray); }
.modal-buttons { display: flex; gap: 12px; }
.btn-reserve {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; border: none; padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition);
  font-family: 'Source Sans 3', sans-serif; display: flex; align-items: center; gap: 8px;
}
.btn-reserve:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-whatsapp {
  background: #25D366; color: white; border: none; padding: 14px 24px;
  border-radius: 50px; font-weight: 600; cursor: pointer; transition: var(--transition);
  font-family: 'Source Sans 3', sans-serif; display: flex; align-items: center; gap: 8px;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); }

/* ===== EVENTS CALENDAR ===== */
#events-section { background: var(--navy); }
#events-section .section-title { color: var(--white); }
#events-section .section-desc { color: var(--gray); }
.calendar-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.mini-calendar {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(10px);
}
.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.calendar-header h3 { color: white; font-size: 1.1rem; font-weight: 600; }
.cal-nav { background: none; border: none; color: var(--orange); cursor: pointer; font-size: 1rem; transition: var(--transition); }
.cal-nav:hover { transform: scale(1.2); }
.calendar-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.cal-day-header { color: var(--gray); font-size: 0.75rem; text-align: center; padding: 8px 0; font-weight: 600; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.7);
  cursor: pointer; transition: var(--transition);
}
.cal-day:hover { background: rgba(255,107,26,0.2); color: white; }
.cal-day.today { background: var(--orange); color: white; font-weight: 700; }
.cal-day.has-event { color: var(--gold); font-weight: 700; position: relative; }
.cal-day.has-event::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.cal-day.empty { color: transparent; pointer-events: none; }
.cal-day.other-month { color: rgba(255,255,255,0.2); }
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 20px; transition: var(--transition);
  display: flex; gap: 16px; align-items: flex-start;
  cursor: pointer;
}
.event-card:hover { background: rgba(255,107,26,0.1); border-color: rgba(255,107,26,0.3); }
.event-date-box {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px; padding: 10px 14px; text-align: center;
  min-width: 56px; flex-shrink: 0;
}
.event-date-box strong { display: block; font-size: 1.5rem; font-weight: 900; color: white; line-height: 1; }
.event-date-box span { font-size: 0.7rem; text-transform: uppercase; color: rgba(255,255,255,0.8); letter-spacing: 1px; }
.event-info {}
.event-title { color: white; font-weight: 600; margin-bottom: 4px; }
.event-desc { color: var(--gray); font-size: 0.85rem; }
.event-tag {
  display: inline-block; margin-top: 8px; padding: 2px 10px;
  border-radius: 50px; font-size: 0.7rem; font-weight: 600;
  background: rgba(255,184,0,0.15); color: var(--gold); border: 1px solid rgba(255,184,0,0.3);
}

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images {
  position: relative; height: 550px;
}
.about-img-main {
  position: absolute; top: 0; left: 0; width: 75%; height: 80%;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 55%;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
  position: absolute; top: 40px; right: -20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 16px; padding: 20px 24px; text-align: center; z-index: 2;
  box-shadow: var(--shadow-orange); animation: float 3s ease-in-out infinite;
}
.about-experience-badge strong { display: block; font-size: 2.5rem; font-weight: 900; color: white; font-family: 'Merriweather', serif; line-height: 1; }
.about-experience-badge span { color: rgba(255,255,255,0.8); font-size: 0.8rem; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.about-content .section-header { text-align: left; }
.about-content .section-desc { margin-left: 0; }
.about-content p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.value-item {
  display: flex; gap: 12px; align-items: flex-start;
}
.value-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(255,107,26,0.1), rgba(255,107,26,0.05)); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1.1rem; flex-shrink: 0; }
.value-text strong { display: block; font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.value-text span { color: var(--gray); font-size: 0.8rem; }
.about-flags { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.flag-chip { display: flex; align-items: center; gap: 6px; padding: 6px 14px; background: var(--cream); border-radius: 50px; font-size: 0.8rem; color: var(--navy); font-weight: 500; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial-quote { font-size: 2.5rem; color: var(--orange); opacity: 0.3; font-family: Georgia, serif; line-height: 1; margin-bottom: 16px; }
.testimonial-text { color: var(--gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial-from { color: var(--gray); font-size: 0.8rem; }

/* ===== RESERVATIONS PAGE ===== */
.reservation-layout { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
.reservation-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.form-title {
  font-family: 'Merriweather', serif; font-size: 1.8rem; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.form-subtitle { color: var(--gray); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 8px; font-size: 0.9rem; }
.form-label span { color: var(--orange); }
.form-control {
  width: 100%; padding: 14px 18px; border: 2px solid var(--gray-light);
  border-radius: 12px; font-size: 0.95rem; font-family: 'Source Sans 3', sans-serif;
  transition: var(--transition); outline: none; color: var(--text);
  background: var(--white);
}
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,26,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A9BB0' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; border: none; padding: 16px; border-radius: 50px;
  font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: var(--transition);
  font-family: 'Source Sans 3', sans-serif; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.reservation-summary {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 32px; position: sticky; top: 100px; color: white;
}
.summary-title { font-family: 'Merriweather', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.summary-package {
  background: rgba(255,255,255,0.05); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 20px;
}
.summary-package img { width: 100%; height: 150px; object-fit: cover; }
.summary-package-info { padding: 16px; }
.summary-package-info h4 { color: white; font-weight: 600; margin-bottom: 4px; }
.summary-package-info p { color: var(--gray); font-size: 0.85rem; }
.summary-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.summary-line span { color: var(--gray); font-size: 0.9rem; }
.summary-line strong { color: white; font-weight: 600; }
.summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; margin-top: 8px;
}
.summary-total span { color: white; font-weight: 600; }
.summary-total strong { font-size: 1.8rem; color: var(--orange); font-family: 'Merriweather', serif; }
.whatsapp-reserve {
  width: 100%; background: #25D366; color: white; border: none;
  padding: 14px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: var(--transition); font-family: 'Source Sans 3', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px;
}
.whatsapp-reserve:hover { background: #128C7E; transform: translateY(-2px); }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info { }
.contact-info-title {
  font-family: 'Merriweather', serif; font-size: 2.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 16px; line-height: 1.3;
}
.contact-info p { color: var(--gray); line-height: 1.8; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-item-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem; flex-shrink: 0;
  box-shadow: var(--shadow-orange);
}
.contact-item-text strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.contact-item-text a, .contact-item-text span { color: var(--gray); font-size: 0.9rem; text-decoration: none; }
.contact-item-text a:hover { color: var(--orange); }
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--cream); border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1rem; transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--orange); color: white; border-color: var(--orange); transform: translateY(-3px); }
.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}

/* ===== SURVEY PAGE ===== */
.survey-container { max-width: 800px; margin: 0 auto; }
.survey-header-card {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-lg); padding: 40px; margin-bottom: 32px;
  color: white; text-align: center; position: relative; overflow: hidden;
}
.survey-header-card::before {
  content: ''; position: absolute; top: -50%; left: -20%;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.survey-header-card h2 { font-family: 'Merriweather', serif; font-size: 2rem; margin-bottom: 8px; position: relative; }
.survey-header-card p { opacity: 0.9; position: relative; }
.survey-progress {
  background: rgba(255,255,255,0.2); border-radius: 4px; height: 6px; margin-top: 20px; position: relative;
}
.survey-progress-bar {
  height: 100%; background: white; border-radius: 4px; transition: width 0.5s ease;
}
.survey-step { display: none; }
.survey-step.active { display: block; animation: fadeIn 0.4s ease; }
.survey-question-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); margin-bottom: 20px;
}
.question-num { color: var(--orange); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.question-text {
  font-family: 'Merriweather', serif; font-size: 1.3rem; color: var(--navy);
  font-weight: 700; margin-bottom: 24px;
}
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.option-card {
  border: 2px solid var(--gray-light); border-radius: var(--radius);
  padding: 16px; cursor: pointer; transition: var(--transition); text-align: center;
}
.option-card:hover { border-color: var(--orange); background: rgba(255,107,26,0.05); }
.option-card.selected { border-color: var(--orange); background: rgba(255,107,26,0.08); }
.option-card i { font-size: 1.8rem; color: var(--orange); display: block; margin-bottom: 8px; }
.option-card span { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.options-list { display: flex; flex-direction: column; gap: 10px; }
.option-list-item {
  border: 2px solid var(--gray-light); border-radius: var(--radius);
  padding: 14px 18px; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 12px;
}
.option-list-item:hover { border-color: var(--orange); background: rgba(255,107,26,0.05); }
.option-list-item.selected { border-color: var(--orange); background: rgba(255,107,26,0.08); }
.option-list-item i { color: var(--orange); font-size: 1.1rem; width: 20px; }
.option-list-item span { font-weight: 500; color: var(--navy); }
.slider-range { margin: 20px 0; }
.range-input {
  width: 100%; -webkit-appearance: none; height: 6px; background: var(--gray-light);
  border-radius: 3px; outline: none;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%; cursor: pointer; box-shadow: var(--shadow-orange);
}
.range-labels { display: flex; justify-content: space-between; color: var(--gray); font-size: 0.8rem; margin-top: 8px; }
.range-value { text-align: center; font-size: 1.5rem; font-weight: 700; color: var(--orange); margin: 8px 0; font-family: 'Merriweather', serif; }
.survey-nav { display: flex; gap: 12px; justify-content: space-between; margin-top: 24px; }
.btn-survey-prev {
  background: var(--gray-light); color: var(--navy); border: none;
  padding: 14px 28px; border-radius: 50px; font-weight: 600; cursor: pointer;
  transition: var(--transition); font-family: 'Source Sans 3', sans-serif;
}
.btn-survey-prev:hover { background: var(--gray); color: white; }
.btn-survey-next {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; border: none; padding: 14px 36px; border-radius: 50px;
  font-weight: 700; cursor: pointer; transition: var(--transition); font-family: 'Source Sans 3', sans-serif;
  display: flex; align-items: center; gap: 8px; margin-left: auto;
}
.btn-survey-next:hover { transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.survey-success {
  text-align: center; padding: 60px 40px;
  background: white; border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: none;
}
.survey-success.show { display: block; animation: fadeIn 0.5s ease; }
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2rem; color: white;
  animation: bounce 0.5s ease;
}
@keyframes bounce { 0%{transform:scale(0)} 70%{transform:scale(1.15)} 100%{transform:scale(1)} }
.survey-success h3 { font-family: 'Merriweather', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 12px; }
.survey-success p { color: var(--gray); }

/* ===== ADMIN DASHBOARD ===== */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 80px); gap: 0; }
.admin-sidebar {
  background: var(--navy); padding: 32px 24px; min-height: calc(100vh - 80px);
}
.admin-sidebar h3 { color: var(--orange); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px; font-weight: 600; }
.admin-menu { list-style: none; }
.admin-menu li a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  color: rgba(255,255,255,0.7); text-decoration: none; border-radius: 10px;
  font-size: 0.9rem; transition: var(--transition); margin-bottom: 4px; cursor: pointer;
}
.admin-menu li a:hover, .admin-menu li a.active {
  background: rgba(255,107,26,0.15); color: white;
}
.admin-menu li a i { color: var(--orange); width: 18px; }
.admin-main { padding: 40px; background: var(--gray-light); }
.admin-title { font-family: 'Merriweather', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 28px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: white; border-radius: var(--radius); padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.stat-card .stat-value { font-size: 2rem; font-weight: 700; color: var(--navy); font-family: 'Merriweather', serif; }
.stat-card .stat-label { color: var(--gray); font-size: 0.85rem; margin-top: 4px; }
.stat-card .stat-icon { float: right; font-size: 1.8rem; color: var(--orange); opacity: 0.5; }
.data-table { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.data-table h3 { padding: 20px 24px; border-bottom: 1px solid var(--gray-light); color: var(--navy); font-size: 1rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.data-table table { width: 100%; border-collapse: collapse; }
.data-table th { padding: 12px 16px; text-align: left; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); background: var(--cream); font-weight: 600; }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-light); font-size: 0.88rem; color: var(--text); }
.data-table tr:hover td { background: var(--cream); }
.status-badge {
  padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}
.status-badge.confirmed { background: rgba(56,161,105,0.1); color: #38a169; }
.status-badge.pending { background: rgba(255,184,0,0.1); color: #B7791F; }
.status-badge.cancelled { background: rgba(229,62,62,0.1); color: #e53e3e; }
.export-btn {
  background: var(--orange); color: white; border: none; padding: 8px 16px;
  border-radius: 8px; font-size: 0.8rem; font-weight: 600; cursor: pointer;
  font-family: 'Source Sans 3', sans-serif; display: flex; align-items: center; gap: 6px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy); color: white; padding: 80px 40px 40px;
}
.footer-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-name {
  font-family: 'Merriweather', serif; font-size: 1.8rem; font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 4px;
}
.footer-brand .brand-tagline { color: #ffffff; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand p { color: #ffffff; font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: var(--transition); text-decoration: none; font-size: 0.9rem;
}
.footer-social a:hover { background: var(--orange); color: white; border-color: var(--orange); }
.footer-col h4 { color: white; font-weight: 600; margin-bottom: 20px; font-size: 0.95rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: var(--transition); cursor: pointer; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col ul li a i { font-size: 0.75rem; color: var(--orange); }
.footer-bottom {
  max-width: 1300px; margin: 0 auto; padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: #ffffff; font-size: 0.85rem; }
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a { color: #ffffff; text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-bottom .legal a:hover { color: var(--orange); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 500;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; border: none; cursor: pointer; font-size: 1rem;
  box-shadow: var(--shadow-orange); transition: var(--transition);
  opacity: 0; visibility: hidden;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }

/* ===== SUCCESS NOTIFICATION ===== */
.notification {
  position: fixed; top: 100px; right: 20px; z-index: 3000;
  background: white; border-radius: 14px; padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15); display: flex; gap: 14px; align-items: flex-start;
  max-width: 360px; transform: translateX(120%); transition: transform 0.4s ease;
  border-left: 4px solid var(--orange);
}
.notification.show { transform: translateX(0); }
.notification-icon { color: var(--orange); font-size: 1.3rem; margin-top: 2px; }
.notification-content strong { display: block; color: var(--navy); margin-bottom: 2px; }
.notification-content p { color: var(--gray); font-size: 0.85rem; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed; top: 80px; left: 0; right: 0; z-index: 999;
  background: var(--navy); padding: 20px;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: var(--transition);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a {
  display: block; color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1rem; font-weight: 500; cursor: pointer;
}
.mobile-menu a:hover { color: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 350px; }
  .calendar-layout { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 60px 20px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 20px; bottom: 80px; }
  .packages-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .reservation-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .modal-highlights { grid-template-columns: 1fr; }
  .included-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { min-height: auto; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .options-grid { grid-template-columns: 1fr; }
  .hero-stat strong { font-size: 1.4rem; }
}

/* ===== SPECIAL EFFECTS ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 50%, var(--navy) 100%);
  padding: 100px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,0.2), transparent);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,0,0.1), transparent);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: 'Merriweather', serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: white; margin-bottom: 16px;
}
.cta-subtitle { color: #ffffff; margin-bottom: 32px; font-size: 1.1rem; }

/* Page-specific paddings for navbar */
.page-with-nav { padding-top: 80px; }


/* ===== SERIOUS MODE PATCHES (v1.0) ===== */
nav.force-solid {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* Hide any leftover public video panel (now admin-only) */
.video-toggle, .video-url-input { display: none !important; }

/* Admin login modal */
.admin-login-modal { max-width: 520px; width: calc(100% - 32px); }
.admin-login-title { font-family: 'Merriweather', serif; font-size: 1.7rem; color: var(--navy); margin-bottom: 6px; }
.admin-login-sub { color: var(--gray); margin-bottom: 16px; }
.admin-login-form { display: grid; gap: 10px; }
.admin-login-form label { font-size: 0.85rem; color: var(--navy); font-weight: 600; }
.admin-login-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(13,27,42,0.15);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  outline: none;
}
.admin-login-form input:focus { border-color: rgba(255,107,26,0.55); box-shadow: 0 0 0 4px rgba(255,107,26,0.12); }
.admin-login-error { min-height: 18px; color: #b00020; font-size: 0.9rem; }

/* Admin appearance editor */
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 980px) { .admin-form-grid { grid-template-columns: 1fr; } }
.admin-field { background: #fff; border-radius: var(--radius); padding: 16px; border: 1px solid rgba(13,27,42,0.08); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.admin-field h4 { margin-bottom: 10px; font-family: 'Merriweather', serif; color: var(--navy); }
.admin-field .hint { color: var(--gray); font-size: 0.85rem; margin-top: 6px; }
.admin-field textarea, .admin-field input, .admin-field select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(13,27,42,0.15);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
}
.admin-field textarea { min-height: 120px; resize: vertical; }
.admin-actions-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.admin-btn {
  border: none; cursor: pointer; border-radius: 10px; padding: 10px 14px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700;
}
.admin-btn.primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.admin-btn.ghost { background: rgba(13,27,42,0.06); color: var(--navy); }
.admin-btn.danger { background: rgba(176,0,32,0.08); color: #b00020; }

/* Package editor layout */
.pkg-admin-layout { display: grid; grid-template-columns: 320px 1fr; gap: 18px; align-items: start; }
.pkg-list { background: #fff; border-radius: var(--radius); border: 1px solid rgba(13,27,42,0.08); overflow: hidden; }
.pkg-list header { padding: 14px 14px 10px; border-bottom: 1px solid rgba(13,27,42,0.08); }
.pkg-list header h3 { font-family: 'Merriweather', serif; margin: 0 0 6px; color: var(--navy); font-size: 1.05rem; }
.pkg-list header p { margin: 0; color: var(--gray); font-size: 0.85rem; }
.pkg-items { max-height: 64vh; overflow: auto; }
.pkg-item { padding: 12px 14px; border-bottom: 1px solid rgba(13,27,42,0.06); cursor: pointer; display: grid; gap: 4px; }
.pkg-item strong { color: var(--navy); font-size: 0.95rem; }
.pkg-item small { color: var(--gray); }
.pkg-item.active { background: rgba(255,107,26,0.10); }
@media (max-width: 1100px) { .pkg-admin-layout { grid-template-columns: 1fr; } .pkg-items { max-height: 280px; } }

.event-card .event-details { display: none; margin-top: 10px; color: rgba(255,255,255,0.8); }
.event-card.open .event-details { display: block; }

/* ===== v1.2 responsive + media ===== */
.mission-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.modal-gallery-grid,
.modal-videos-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.modal-gallery-grid img { border-radius:12px; width:100%; height:180px; object-fit:cover; display:block; }
.video-card { display:block; border-radius:16px; overflow:hidden; background:#fff; border:1px solid rgba(13,27,42,0.08); box-shadow:0 8px 24px rgba(0,0,0,0.06); text-decoration:none; color:inherit; }
.video-frame { position:relative; aspect-ratio:16/9; background:#0d1b2a; display:flex; align-items:center; justify-content:center; }
.video-frame iframe, .video-frame video { width:100%; height:100%; border:0; object-fit:cover; display:block; }
.video-fallback { flex-direction:column; gap:10px; color:#fff; }
.video-fallback i { font-size:2rem; color:var(--orange); }
.video-meta { padding:12px 14px; color:var(--navy); font-weight:700; font-size:0.92rem; }
.empty-block { padding:18px; border-radius:14px; background:var(--cream); color:var(--gray); }
.pkg-flag { display:inline-flex; margin-top:6px; width:max-content; padding:3px 10px; border-radius:999px; font-size:0.72rem; font-weight:700; }
.pkg-flag.on { background:rgba(56,161,105,0.12); color:#276749; }
.pkg-flag.off { background:rgba(176,0,32,0.08); color:#b00020; }
.pkg-item.is-off { opacity:0.65; }
.pkg-toggle-row { margin:10px 0 6px; }
.switch-field { display:flex; align-items:center; gap:10px; font-weight:700; color:var(--navy); }
.switch-field input { width:18px; height:18px; }
.data-table { overflow:auto; }
.data-table table { min-width:760px; }
.admin-layout { align-items:start; }
.admin-sidebar { position:sticky; top:90px; }
.btn-whatsapp:hover,
.whatsapp-reserve:hover,
.hero-buttons .btn-whatsapp:hover,
.modal-buttons .btn-whatsapp:hover { background:#128C7E; color:#fff; }

@media (max-width: 1100px) {
  .mission-grid { grid-template-columns:1fr; }
  .admin-sidebar { position:static; }
}

@media (max-width: 768px) {
  .hero-content { padding: 0 12px; }
  .hero-badge { font-size:0.7rem; letter-spacing:1px; padding:8px 14px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.6rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { width:100%; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width:100%; justify-content:center; }
  .modal { width: calc(100% - 16px); max-height: 92vh; }
  .modal-hero-content { padding: 18px; flex-direction: column; align-items:flex-start; gap:14px; }
  .modal-tabs { overflow:auto; flex-wrap:nowrap; gap:8px; padding-bottom:2px; }
  .modal-tab { white-space:nowrap; }
  #tab-includes > div { grid-template-columns:1fr !important; }
  .modal-gallery-grid, .modal-videos-grid { grid-template-columns:1fr; }
  .modal-cta { flex-direction:column; align-items:stretch; gap:16px; }
  .modal-buttons { width:100%; flex-direction:column; }
  .modal-buttons button { width:100%; justify-content:center; }
  .about-values { grid-template-columns:1fr; }
  .section-header { padding: 0 4px; }
  .mini-calendar { padding:18px; }
  .calendar-days { gap:2px; }
  .cal-day { font-size:0.78rem; }
  .event-card { flex-direction:column; }
  .event-date-box { min-width:auto; width:max-content; }
  .reservation-form-card, .contact-form-card, .survey-card { padding:24px; }
  .reservation-summary { position:relative; top:auto; }
  .stats-row { grid-template-columns:1fr; }
  .admin-actions-row { flex-direction:column; }
  .admin-actions-row .admin-btn { width:100%; }
  .pkg-admin-layout { gap:14px; }
}


/* ===== ST Travel v1.3 upgrades ===== */
body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.55;
  animation: stFloatGradient 18s ease-in-out infinite alternate;
}
body::before {
  width: 34rem;
  height: 34rem;
  top: 8%;
  left: -10%;
  background: radial-gradient(circle, rgba(255,107,26,0.22) 0%, rgba(255,107,26,0.08) 32%, transparent 72%);
}
body::after {
  width: 30rem;
  height: 30rem;
  right: -6%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(18,140,126,0.18) 0%, rgba(40,90,130,0.12) 38%, transparent 72%);
  animation-duration: 22s;
}
@keyframes stFloatGradient {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -18px, 0) scale(1.06); }
  100% { transform: translate3d(-20px, 22px, 0) scale(0.96); }
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.06), transparent 30%, rgba(255,107,26,0.06) 55%, transparent 75%);
  mix-blend-mode: screen;
  animation: heroShimmer 12s linear infinite;
  z-index: 1;
}
@keyframes heroShimmer {
  from { transform: translateX(-15%); }
  to { transform: translateX(15%); }
}
.nav-inner { height: 92px; }
.nav-logo {
  display: inline-flex;
  align-items: center;
  min-height: 72px;
}
.nav-logo .brand-logo-img {
  height: var(--brand-logo-height);
  width: auto;
  display: block;
  object-fit: contain;
  max-width: min(260px, 34vw);
  filter: drop-shadow(0 10px 24px rgba(255,107,26,0.22));
}
.footer-brand .brand-name {
  display: inline-flex;
  align-items: center;
  min-height: 88px;
}
.footer-brand .footer-logo-img {
  height: var(--footer-logo-height);
  width: auto;
  display: block;
  object-fit: contain;
  max-width: min(300px, 60vw);
  filter: drop-shadow(0 12px 30px rgba(255,107,26,0.18));
}
.package-footer {
  align-items: stretch;
  gap: 16px;
}
.package-price {
  display: grid;
  gap: 10px;
  width: 100%;
}
.package-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff8f3;
  border: 1px solid rgba(255,107,26,0.08);
}
.package-price-row.couple {
  background: #eef7ff;
  border-color: rgba(38, 107, 214, 0.12);
}
.package-price-row .price-caption {
  display: block;
  font-size: 0.77rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.package-price-row strong {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: 'Merriweather', serif;
}
.package-price-row.person strong { color: var(--orange); -webkit-text-fill-color: initial; background: none; }
.package-price-row.couple strong { color: #266bd6; -webkit-text-fill-color: initial; background: none; }
.package-price-row .price-note { font-size: 0.8rem; color: var(--gray); }
.package-price {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.package-footer .btn-view {
  white-space: nowrap;
  align-self: flex-end;
  justify-content: center;
  min-width: 170px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
}
.group-quote-link,
.group-quote-btn {
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(135deg, #f8fafc, #edf2f7);
  color: var(--navy);
  border-radius: 16px;
  padding: 10px 16px;
  font-weight: 700;
  font-family: 'Source Sans 3', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  line-height: 1.15;
  white-space: nowrap;
  max-width: 100%;
}
.group-quote-link:hover,
.group-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(13,27,42,0.12);
}
.group-quote-link { width: auto; max-width: 100%; margin: 12px auto 0; font-size: 0.82rem; justify-self: center; }
.group-quote-btn--summary { display: inline-flex; margin: 14px auto 0 !important; width: auto !important; max-width: 100%; }
.modal-price-tag--dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: transparent;
  padding: 0;
}
.modal-price-badge {
  padding: 14px 18px;
  border-radius: 16px;
  text-align: center;
  color: white;
  min-width: 170px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.18);
}
.modal-price-badge.person { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.modal-price-badge.couple { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.modal-price-badge strong { font-size: 1.55rem; }
.modal-price-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  flex: 1;
}
.price-card {
  border-radius: 18px;
  padding: 18px 20px;
  background: #fff8f3;
  border: 1px solid rgba(255,107,26,0.12);
}
.price-card.couple {
  background: #eef7ff;
  border-color: rgba(38, 107, 214, 0.16);
}
.price-card .price-label {
  display: block;
  font-size: 0.82rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.price-card strong {
  display: block;
  font-size: 1.8rem;
  font-family: 'Merriweather', serif;
}
.price-card.person strong { color: var(--orange); }
.price-card.couple strong { color: #2563eb; }
.price-card small { color: var(--gray); display: block; margin-top: 4px; }
.modal-buttons-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: min(340px, 100%);
}
.modal-tabs {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,107,26,0.55) rgba(13,27,42,0.08);
  padding-bottom: 4px;
}
.modal-tabs::-webkit-scrollbar { height: 8px; }
.modal-tabs::-webkit-scrollbar-track { background: rgba(13,27,42,0.06); border-radius: 999px; }
.modal-tabs::-webkit-scrollbar-thumb { background: rgba(255,107,26,0.6); border-radius: 999px; }
.hotel-accordion {
  display: grid;
  gap: 14px;
}
.hotel-item {
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.hotel-header {
  width: 100%;
  background: white;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.hotel-header strong { color: var(--navy); font-size: 1.05rem; display: block; }
.hotel-header span { color: var(--gray); font-size: 0.88rem; display: block; margin-top: 2px; }
.hotel-header i { color: var(--orange); transition: transform 0.28s ease; }
.hotel-item.open .hotel-header i { transform: rotate(180deg); }
.hotel-content {
  display: none;
  padding: 0 20px 20px;
}
.hotel-item.open .hotel-content { display: block; }
.hotel-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
}
.hotel-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}
.hotel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.hotel-pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
}
.hotel-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.hotel-features span {
  background: rgba(255,107,26,0.08);
  color: var(--navy);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
}
.modal-videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.video-card {
  background: white;
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}
.video-frame,
.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}
.video-card .video-body { padding: 14px 16px 16px; }
.video-card h5 { color: var(--navy); margin-bottom: 6px; font-size: 1rem; }
.video-card p { color: var(--gray); font-size: 0.88rem; }
.empty-state-box {
  background: linear-gradient(135deg, #f8fafc, #edf2f7);
  border: 1px dashed rgba(13,27,42,0.16);
  border-radius: 18px;
  padding: 20px;
  color: var(--gray);
  text-align: center;
}
.admin-order-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.pkg-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pkg-item-main {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.pkg-sort-btn,
.hotel-mini-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(13,27,42,0.08);
  background: white;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.pkg-sort-btn:hover,
.hotel-mini-btn:hover { background: rgba(255,107,26,0.08); border-color: rgba(255,107,26,0.25); }
.hotel-admin-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}
.hotel-admin-card {
  border: 1px solid rgba(13,27,42,0.08);
  background: #f8fafc;
  border-radius: 18px;
  padding: 16px;
}
.hotel-admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.hotel-admin-head strong { color: var(--navy); }
.hotel-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.hotel-admin-card textarea,
.hotel-admin-card input {
  width: 100%;
}
.hint--tight { margin-top: 6px; }
.group-quote-btn--summary {
  font-size: 0.88rem;
  padding: 12px 16px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .modal-price-tag--dual,
  .modal-price-stack,
  .hotel-grid,
  .hotel-admin-grid {
    grid-template-columns: 1fr;
  }
  .modal-hero-content,
  .modal-cta {
    gap: 16px;
    align-items: stretch;
    flex-direction: column;
  }
  .modal-buttons-stack { min-width: 100%; }
}
@media (max-width: 768px) {
  .nav-inner { height: 84px; }
  .nav-logo .brand-logo-img { height: calc(var(--brand-logo-height) * 0.78); max-width: 56vw; }
  .footer-brand .footer-logo-img { height: calc(var(--footer-logo-height) * 0.78); max-width: 70vw; }
  .loader-brand-img { height: min(calc(var(--loader-logo-height) * 0.78), 112px); }
  .package-footer { flex-direction: column; }
  .package-footer .btn-view { width: 100%; }
  .itinerary-day-btn { padding: 15px 14px 15px 38px; }
  .itinerary-day-content { padding: 0 14px 14px 38px; }
  .day-label { font-size: 0.76rem; padding: 6px 10px; }
  .day-title { font-size: 0.98rem; }
}
@media (max-width: 640px) {
  .modal-tabs { gap: 2px; }
  .modal-tab { padding: 11px 16px; font-size: 0.84rem; }
  .itinerary-day::before { left: 18px; }
  .itinerary-day-btn { gap: 10px; }
  .day-toggle { width: 34px; height: 34px; border-radius: 10px; }
  .group-quote-link,
  .group-quote-btn { max-width: 100%; font-size: 0.78rem; }
}


/* ===== READABILITY IMPROVEMENTS ===== */
.page p,
.page li,
.page label,
.page .value-text p,
.page .stat-card p,
.page .contact-item-text,
.page .survey-note,
.page .modal-body p,
.page .reservation-summary,
.page .fin-table,
.page .client-card,
.page .reservation-card {
  color: #1f2937;
}
.hero-subtitle {
  color: #f8fafc;
  font-weight: 600;
  text-shadow: 0 4px 14px rgba(0,0,0,0.34), 0 1px 4px rgba(0,0,0,0.18);
}
.hero-stat span {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}


/* ===== PACKAGE CARD CTA STACK FIX ===== */
.package-card .package-footer {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.package-card .package-price {
  width: 100%;
  align-items: center;
  justify-content: center;
}
.package-card .package-price-row {
  width: min(100%, 320px);
  margin-left: auto;
  margin-right: auto;
}
.package-card .group-quote-link {
  width: min(100%, 320px);
  margin: 8px auto 0;
  white-space: normal;
}
.package-card .package-footer .btn-view {
  width: min(100%, 320px);
  min-width: 0;
  align-self: center;
  margin-top: 2px;
  display: inline-flex;
  justify-content: center;
}


/* ===== v1.5.3 hero subtitle readability fix ===== */
#page-home .hero-subtitle,
.hero-subtitle {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 700;
  text-shadow: 0 4px 14px rgba(0,0,0,0.48), 0 1px 4px rgba(0,0,0,0.24) !important;
  mix-blend-mode: normal;
}


/* Promo Popup */
.promo-popup{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;z-index:9999;transition:opacity .25s ease;}
.promo-popup.show{opacity:1;pointer-events:auto;}
.promo-popup-backdrop{position:absolute;inset:0;background:rgba(5,13,27,.78);backdrop-filter:blur(4px);}
.promo-popup-dialog{position:relative;z-index:1;width:min(94vw,var(--promo-popup-width,1200px));max-height:92vh;display:flex;align-items:center;justify-content:center;padding:0;background:transparent;overflow:visible;}
.promo-popup-dialog img{display:block;width:100%;height:auto;max-height:92vh;object-fit:contain;border-radius:0;box-shadow:0 30px 90px rgba(0,0,0,.45);border:0;background:transparent;outline:0;}
.promo-popup-close{position:absolute;top:-22px;right:-22px;width:44px;height:44px;border:none;border-radius:999px;background:#0b2d5c;color:#fff;font-size:30px;line-height:1;cursor:pointer;box-shadow:0 10px 30px rgba(0,0,0,.25);display:flex;align-items:center;justify-content:center;}
.promo-popup-close:hover{transform:scale(1.05);}
body.popup-open{overflow:hidden;}
@media (max-width:768px){.promo-popup-dialog{width:min(96vw,var(--promo-popup-width,1200px));padding:0;}.promo-popup-dialog img{border-radius:0;max-height:82vh;}.promo-popup-close{top:-18px;right:-12px;width:40px;height:40px;font-size:28px;}}


/* ===== ST Travel v1.8 locked readability + compact hotels ===== */
.cta-section .cta-subtitle,
.footer-brand .brand-tagline,
.footer-brand p,
.footer-bottom p,
.footer-bottom .legal a {
  color: #ffffff !important;
  opacity: 1 !important;
}
.footer-brand .brand-tagline { font-weight: 700; }
.footer-brand p { font-weight: 500; }
.footer-bottom p,
.footer-bottom .legal a { font-weight: 600; }
.hotel-grid--compact {
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  align-items: stretch;
}
.hotel-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.hotel-detail-card {
  border: 1px solid rgba(13,27,42,0.08);
  border-radius: 14px;
  background: #fffaf6;
  padding: 11px 12px;
}
.hotel-detail-card.full { grid-column: 1 / -1; }
.hotel-detail-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.hotel-detail-value {
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 600;
}
.hotel-rate-note {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  background: #eef7ff;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 800;
}
.hotel-admin-card .hotel-admin-section-title {
  margin-top: 10px;
  display: block;
  color: var(--navy);
  font-weight: 800;
}
@media (max-width: 900px) {
  .hotel-grid--compact,
  .hotel-detail-grid { grid-template-columns: 1fr; }
  .hotel-detail-card.full { grid-column: auto; }
}
