@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Premium Dark Theme */
  --navy-900: #0b1120;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --gold-500: #d97706;
  
  --bg-color: var(--navy-900);
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  
  /* Glassmorphism */
  --glass-bg: rgba(11, 17, 32, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  
  --radius-lg: 16px;
  --radius-md: 12px;
  
  --font-main: 'Outfit', system-ui, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================================
   GLOBAL BACKGROUND (Transparency & Gradient Fade)
   ========================================================= */
.site-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: url('../images/hero-home.jpg'); 
  background-size: cover;
  background-position: center;
}

.site-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Updated to be wider and more prominent black fading */
  background: linear-gradient(to bottom, var(--navy-900) 0%, rgba(11,17,32,0.4) 30%, rgba(11,17,32,0.4) 70%, var(--navy-900) 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   HEADER & MEGA MENU
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--transition);
  padding: 20px 0;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 17, 32, 0.15);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  box-shadow: var(--glass-shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; z-index: 202; position: relative; }
.logo-img { height: 45px; border-radius: 4px; }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; }
.nav-link {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
}
.nav-link:hover {
  background: rgba(255,255,255,0.05);
  color: var(--teal-400);
}

.nav-chevron { width: 16px; height: 16px; transition: var(--transition); }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: max-content;
  max-width: 90vw;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--glass-shadow);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mega-item:hover {
  background: rgba(255,255,255,0.05);
  transform: translateX(5px);
}
.mega-thumb {
  width: 48px; height: 48px; border-radius: 8px; object-fit: cover;
}
.mega-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.mega-text p { font-size: 0.8rem; color: var(--text-muted); }

/* =========================================================
   MOBILE MENU (NEW)
   ========================================================= */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 202;
  position: relative;
  padding: 8px;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 320px;
  max-width: 80vw;
  height: 100vh;
  background: rgba(11, 17, 32, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border);
  z-index: 200;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 100px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}
.mobile-menu-drawer.active { right: 0; }
.mobile-menu-drawer .nav-link {
  font-size: 1.2rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between;
}
.mobile-menu-drawer .lang-switcher {
  margin-left: 0; margin-top: auto;
}
.mobile-menu-drawer .lang-menu {
  position: relative; top: 0; transform: none; opacity: 1; visibility: visible;
  background: transparent; border: none; padding: 0; margin-top: 12px;
}
/* Mobile Accordion */
.mobile-accordion { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-accordion-btn {
  width: 100%; background: transparent; border: none; color: #fff;
  font-size: 1.2rem; padding: 12px 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; cursor: pointer;
}
.mobile-accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-accordion-content.expanded { max-height: 1000px; padding-bottom: 12px; }
.mobile-sublink {
  font-size: 0.95rem; color: var(--text-muted); padding: 8px 0 8px 8px;
  display: flex; align-items: center; gap: 12px; transition: var(--transition);
}
.mobile-sublink:hover { color: var(--teal-400); }
.mobile-subthumb {
  width: 32px; height: 32px; border-radius: 6px; object-fit: cover;
}

/* Mobile Lang Row */
.mobile-lang-row {
  display: flex; gap: 16px; justify-content: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 16px;
}
.lang-option-inline svg {
  width: 28px; height: auto; border-radius: 2px; transition: var(--transition);
}
.lang-option-inline:hover svg { transform: scale(1.1); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--teal-500);
  color: #fff;
  box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}
.btn-primary:hover {
  background: var(--teal-400);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}
.btn-glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: #fff;
}
.btn-glass:hover { background: rgba(255,255,255,0.15); }
.btn-outline {
  border: 1px solid var(--teal-500);
  color: var(--teal-400);
}
.btn-outline:hover { background: var(--teal-500); color: #fff; }

/* Language Switcher */
.lang-switcher { position: relative; margin-left: 16px; }
.lang-trigger {
  background: transparent; border: none; color: #fff;
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: inherit; font-weight: 500; font-size: 0.9rem;
  padding: 8px; border-radius: 8px;
  transition: var(--transition);
}
.lang-trigger:hover { background: rgba(255,255,255,0.05); }
.lang-menu {
  position: absolute; top: 100%; right: 0;
  background: var(--glass-bg); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); border-radius: 8px;
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--transition);
  min-width: 120px;
}
.lang-switcher:hover .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 6px; font-size: 0.9rem;
  transition: var(--transition); color: var(--text-muted);
}
.lang-option:hover, .lang-option.active {
  background: rgba(255,255,255,0.05); color: #fff;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}
.hero.compact { min-height: 50vh; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: var(--teal-400);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; }

/* =========================================================
   TEXT WRAPPERS FOR CONTRAST
   ========================================================= */
.text-glass-wrap {
  background: rgba(11, 17, 32, 0.15);
  backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  width: 100% !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  text-align: justify;
}

/* =========================================================
   SECTION & CAROUSEL CARDS (NEW)
   ========================================================= */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

.carousel-wrapper {
  perspective: 1200px;
  position: relative;
  padding: 40px 0;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-gallery-carousel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}
.tour-gallery-carousel .gallery-img {
  position: absolute;
  width: 450px;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s;
  cursor: pointer;
}
/* 3D Positions */
.gallery-img.pos-prev {
  transform: translateX(-60%) translateZ(-200px) rotateY(25deg);
  z-index: 1;
  filter: brightness(0.5);
}
.gallery-img.pos-center {
  transform: translateX(0) translateZ(50px) rotateY(0deg);
  z-index: 3;
  filter: brightness(1.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}
.gallery-img.pos-next {
  transform: translateX(60%) translateZ(-200px) rotateY(-25deg);
  z-index: 1;
  filter: brightness(0.5);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--surface-card);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: 1px solid var(--glass-border);
  color: var(--text-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-btn:hover { background: var(--teal-400); color: var(--navy-900); }
.carousel-btn.prev-btn { left: 10%; }
.carousel-btn.next-btn { right: 10%; }
@media (max-width: 768px) {
  .tour-gallery-carousel .gallery-img { width: 220px; height: 300px; }
  .gallery-img.pos-prev { transform: translateX(-40%) translateZ(-150px) rotateY(20deg); }
  .gallery-img.pos-next { transform: translateX(40%) translateZ(-150px) rotateY(-20deg); }
  .carousel-btn { display: none; }
}

.cards-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  scrollbar-width: none;
}
  border-color: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .gallery-img, .tour-gallery-carousel .gallery-img { flex: 0 0 85%; height: 260px; }
}
.cards-carousel::-webkit-scrollbar { display: none; }

.tour-card {
  flex: 0 0 calc(85% - 24px);
  max-width: 400px;
  scroll-snap-align: center;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
@media (min-width: 768px) {
  .tour-card {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
  }
}

.tour-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: var(--glass-shadow);
}
.card-visual { position: relative; height: 220px; }
.card-visual img { width: 100%; height: 100%; object-fit: cover; }
.card-price-tag {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(11, 17, 32, 0.8); backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 20px; font-weight: 600;
  border: 1px solid var(--glass-border);
}
.card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; flex-grow: 1; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--glass-border);
}
.meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--text-muted); white-space: nowrap; }
.meta-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* =========================================================
   TOUR DETAIL WITH HORIZONTAL GALLERY (NEW)
   ========================================================= */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.content-text h2 { font-size: 2.5rem; margin-bottom: 24px; }
.content-text h3 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--teal-400); }
.content-text p { margin-bottom: 16px; color: var(--text-muted); font-size: 1.05rem; text-align: justify; }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.feature-list li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.feature-list li::before {
  content: '✓'; color: var(--teal-400); font-weight: bold; background: rgba(20,184,166,0.1); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.feature-list.exclude li::before {
  content: '✕'; color: #ef4444; background: rgba(239,68,68,0.1);
}
.feature-list.optionals li::before {
  content: '+'; color: var(--gold-500); background: rgba(217,119,6,0.1);
}

/* Horizontal Gallery Carousel wrapper and buttons */
.carousel-wrapper {
  position: relative;
  width: 100%;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 17, 32, 0.75);
  border: 1px solid var(--glass-border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  box-shadow: var(--glass-shadow);
}
.carousel-btn:hover {
  background: var(--teal-500);
  border-color: var(--teal-400);
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.4);
}
.carousel-btn svg {
  width: 20px;
  height: 20px;
}
.carousel-btn.prev-btn { left: -22px; }
.carousel-btn.next-btn { right: -22px; }
@media (max-width: 768px) {
  .carousel-btn { display: none; }
}

/* Sticky Price Box with Meta Info */
.tour-price-card {
  background: rgba(11, 17, 32, 0.15); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 32px; text-align: center;
  box-shadow: var(--glass-shadow);
  position: sticky; top: 100px;
}
.tour-meta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
  text-align: left;
  padding: 32px;
  background: rgba(0,0,0,0.45);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  width: 100% !important;
  max-width: 800px !important;
  margin: 32px auto !important;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  .tour-meta-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.price-boxes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.price-boxes-grid .tour-price-card {
  min-height: 500px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .price-boxes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .price-boxes-grid { grid-template-columns: 1fr; }
}
.meta-item-large { display: flex; align-items: center; gap: 12px; }
.meta-item-large .meta-icon { width: 24px; height: 24px; color: var(--teal-400); }
.meta-item-large .meta-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.meta-item-large .meta-value { font-weight: 600; font-size: 1rem; color: #fff; }

.tour-price-card .price { font-size: 2.5rem; font-weight: 700; color: var(--teal-400); margin: 16px 0; }
.tour-price-card .btn { width: 100%; }

/* =========================================================
   BOOKING
   ========================================================= */
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 20px; }
.booking-form-card, .price-card {
  background: var(--glass-bg); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 16px;
}
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
.form-group { margin-bottom: 8px; }
.form-label { display: block; margin-bottom: 4px; font-weight: 500; font-size: 0.85rem; color: var(--text-muted); }
.form-input {
  width: 100%; padding: 8px 12px;
  background: rgba(0,0,0,0.2); border: 1px solid var(--glass-border);
  border-radius: 8px; color: #fff; font-family: inherit; font-size: 0.9rem;
  transition: var(--transition);
}
.form-input:focus { outline: none; border-color: var(--teal-500); background: rgba(0,0,0,0.4); }
.form-select option { background: var(--navy-800); color: #fff; }

.price-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--glass-border); color: var(--text-muted); font-size: 0.95rem; }
.price-row.total { font-weight: 700; font-size: 1.15rem; color: #fff; border-bottom: none; margin-top: 6px; }
.btn-checkout {
  width: 100%; padding: 12px; border-radius: 8px;
  background: #6366f1; color: #fff; font-weight: 600; font-size: 1rem;
  border: none; cursor: pointer; transition: var(--transition); margin-top: 12px;
}
.btn-checkout:hover { background: #4f46e5; }
.secure-badge { text-align: center; color: var(--text-muted); font-size: 0.75rem; margin-top: 10px; }

/* Calendar */
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.cal-nav { background: rgba(255,255,255,0.1); border: none; color: #fff; width: 24px; height: 24px; border-radius: 6px; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; }
.cal-nav svg { width: 14px; height: 14px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; text-align: center; }
.cal-day-label { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 2px; }
.cal-day {
  padding: 3px 2px; border-radius: 4px; cursor: pointer; font-size: 0.8rem; transition: var(--transition);
}
.cal-day.disabled { opacity: 0.3; pointer-events: none; }
.cal-day.available { background: rgba(20,184,166,0.1); color: var(--teal-400); font-weight: 600; }
.cal-day.available:hover { background: rgba(20,184,166,0.3); }
.cal-day.busy { background: rgba(239, 68, 68, 0.1); color: #ef4444; opacity: 0.6; pointer-events: none; text-decoration: line-through; }
.cal-day.selected { background: var(--teal-500); color: #fff; font-weight: bold; }

/* =========================================================
   PREMIUM RECEIPT TICKET STYLES
   ========================================================= */
.btn-print {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: 10px; font-weight: 600; cursor: pointer;
  transition: var(--transition); border: 1px solid var(--teal-500);
  background: rgba(20, 184, 166, 0.1); color: var(--teal-400);
  font-family: inherit; font-size: 0.95rem;
}
.btn-print:hover { background: var(--teal-500); color: #fff; transform: translateY(-1px); }

/* Receipt Ticket Container */
.receipt-ticket {
  background: linear-gradient(145deg, rgba(15,23,42,0.95), rgba(11,17,32,0.98));
  border: 1px solid rgba(20,184,166,0.35);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(20,184,166,0.08),
    0 8px 32px rgba(0,0,0,0.4),
    0 0 60px rgba(20,184,166,0.06);
  backdrop-filter: blur(20px);
}

/* Receipt Brand Header */
.receipt-brand {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(20,184,166,0.12), rgba(20,184,166,0.03));
  border-bottom: 1px solid rgba(20,184,166,0.15);
}
.receipt-logo {
  width: 44px; height: 44px;
  border-radius: 8px;
  border: 1.5px solid rgba(20,184,166,0.25);
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.receipt-brand-text h2 {
  font-size: 1.15rem; font-weight: 700;
  color: #fff; margin: 0; letter-spacing: 0.3px;
}
.receipt-subtitle {
  font-size: 0.75rem; color: var(--text-muted); margin: 1px 0 0 0;
}

/* Receipt Tag / Badge */
.receipt-tag {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px;
  background: rgba(20,184,166,0.08);
  color: var(--teal-400);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
}

/* Tear Line (Dotted separator) */
.receipt-tear {
  border: none;
  border-top: 2px dashed rgba(255,255,255,0.06);
  margin: 0;
  position: relative;
}
.receipt-tear::before, .receipt-tear::after {
  content: '';
  position: absolute; top: -10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--navy-900);
}
.receipt-tear::before { left: -10px; }
.receipt-tear::after { right: -10px; }

/* Receipt Sections */
.receipt-section {
  padding: 14px 20px;
}
.receipt-section-title {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--teal-300);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.receipt-section-title svg { color: var(--teal-400); }

/* Client Grid */
.receipt-client-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.receipt-client-item {
  display: flex; flex-direction: column; gap: 1px;
}
.receipt-client-item:first-child {
  grid-column: 1 / -1;
}
.receipt-label {
  font-size: 0.65rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600;
}
.receipt-value {
  font-size: 0.88rem; color: #fff; font-weight: 500;
}

/* Receipt Items */
.receipt-items {
  display: flex; flex-direction: column; gap: 8px;
}
.receipt-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px 12px;
  transition: border-color 0.2s;
}
.receipt-item:hover {
  border-color: rgba(20,184,166,0.2);
}
.receipt-item-main {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 6px;
}
.receipt-item-name {
  font-size: 1rem; font-weight: 600; color: #fff;
}
.receipt-item-type {
  font-size: 0.78rem; color: var(--teal-400); font-weight: 500;
  background: rgba(20,184,166,0.1); padding: 2px 8px;
  border-radius: 6px; margin-left: 8px;
}
.receipt-item-details {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 8px;
}
.receipt-item-price {
  font-size: 1.05rem; font-weight: 700;
  color: var(--teal-300);
  text-align: right;
}

/* Receipt Total */
.receipt-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(20,184,166,0.1), rgba(20,184,166,0.02));
  border-top: 1px solid rgba(20,184,166,0.15);
  border-bottom: 1px solid rgba(20,184,166,0.15);
}
.receipt-total-label {
  font-size: 0.9rem; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.receipt-total-amount {
  font-size: 1.25rem; font-weight: 800;
  color: var(--teal-400);
  text-shadow: 0 0 15px rgba(20,184,166,0.3);
}

/* Receipt Reference */
.receipt-ref {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 20px;
  font-size: 0.78rem; color: var(--text-muted);
}
.receipt-ref svg { color: var(--teal-400); flex-shrink: 0; }
.receipt-ref code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.74rem; color: #fff; font-weight: 600;
  background: rgba(255,255,255,0.04);
  padding: 2px 6px; border-radius: 4px;
  letter-spacing: 0.5px;
}

/* Receipt Footer Info */
.receipt-footer-info {
  padding: 12px 20px 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}
.receipt-footer-info p {
  margin: 2px 0; font-size: 0.68rem; color: rgba(148,163,184,0.7);
  line-height: 1.4;
}
.receipt-footer-info .receipt-contact {
  margin-top: 6px; color: var(--teal-400); font-weight: 500;
  font-size: 0.72rem;
}

/* =========================================================
   PRINT STYLES - Premium PDF Output
   ========================================================= */
@media print {
  @page { margin: 15mm; size: A4 portrait; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  body {
    background: #0b1120 !important;
    color: #f8fafc !important;
    margin: 0 !important; padding: 0 !important;
  }
  .site-bg {
    display: none !important;
  }
  .site-header, .site-footer, .mobile-overlay, .mobile-menu-drawer,
  .mobile-toggle, .lang-switcher, .btn-print, #status-header, #action-buttons, #email-status {
    display: none !important;
  }
  .container {
    max-width: 100% !important; padding: 0 !important; margin: 0 !important;
  }
  .receipt-ticket {
    display: block !important;
    background: linear-gradient(145deg, #0f172a, #0b1120) !important;
    border: 2px solid #14b8a6 !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    max-width: 420px !important;
    margin: 10px auto !important;
    overflow: hidden !important;
  }
  .receipt-brand {
    background: linear-gradient(135deg, rgba(20,184,166,0.15), rgba(20,184,166,0.03)) !important;
    border-bottom: 1px solid rgba(20,184,166,0.2) !important;
    padding: 12px 20px !important;
  }
  .receipt-logo {
    border: 2px solid rgba(20,184,166,0.3) !important;
  }
  .receipt-brand-text h2 { color: #fff !important; }
  .receipt-tag {
    background: rgba(20,184,166,0.1) !important;
    color: #2dd4bf !important;
  }
  .receipt-tear {
    border-top: 2px dashed rgba(255,255,255,0.08) !important;
  }
  .receipt-tear::before, .receipt-tear::after {
    background: #0b1120 !important;
  }
  .receipt-item {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
  }
  .receipt-item-name { color: #fff !important; }
  .receipt-item-type { background: rgba(20,184,166,0.12) !important; color: #2dd4bf !important; }
  .receipt-item-price { color: #2dd4bf !important; }
  .receipt-total-row {
    background: rgba(20,184,166,0.12) !important;
    border-color: rgba(20,184,166,0.2) !important;
  }
  .receipt-total-label { color: #fff !important; }
  .receipt-total-amount { color: #2dd4bf !important; }
  .receipt-ref code { color: #fff !important; background: rgba(255,255,255,0.06) !important; }
  .receipt-footer-info p { color: rgba(148,163,184,0.8) !important; }
  .receipt-footer-info .receipt-contact { color: #2dd4bf !important; }
  .receipt-value { color: #fff !important; }
  .receipt-label { color: #94a3b8 !important; }
  .receipt-section-title { color: #2dd4bf !important; }
}

/* =========================================================
   FOOTER (NEW: Solid Background)
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px;
  position: relative;
  background: rgba(11, 17, 32, 0.15); /* Adjusted to match header opacity */
  backdrop-filter: blur(16px);
  z-index: 10;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand-logo { height: 60px; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); margin-bottom: 16px; }
.footer-tagline { font-family: var(--font-accent); color: var(--teal-400); font-size: 1.2rem; margin-bottom: 12px; }
.footer-col h4 { margin-bottom: 24px; color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--teal-400); transform: translateX(5px); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; color: var(--text-muted); }
.footer-contact-item svg { color: var(--teal-400); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 24px; display: flex; justify-content: space-between; color: var(--text-muted); font-size: 0.9rem; }

/* =========================================================
   LIGHTBOX (NEW)
   ========================================================= */
.lightbox {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9); z-index: 9999;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90%; max-height: 90%; object-fit: contain;
  border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: white; font-size: 40px; cursor: pointer;
  background: transparent; border: none;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 992px) {
  .content-grid { grid-template-columns: 1fr; }
  .tour-price-card { position: static; margin-top: 0; }
  .booking-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-list { display: none; }
  .lang-switcher { display: none; }
  .mobile-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.5rem; }
  .feature-list { grid-template-columns: 1fr; }
}
