/* ============================================
   Sea & Safari Tours – Luxury Tourism Website
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --ocean-deep: #1a3a4a;
  --ocean-mid: #1b6b8a;
  --ocean-light: #2b8fad;
  --ocean-pale: #b8dce8;
  --gold: #d4760a;
  --gold-light: #e8922e;
  --sunset: #e85d04;
  --sunset-warm: #f48c06;
  --brown-dark: #2c1810;
  --teal: #1a7a6d;
  --white: #ffffff;
  --off-white: #faf8f5;
  --dark: #1a1410;
  --text: #2c2420;
  --text-muted: #6b5e56;
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow: 0 20px 60px rgba(26, 58, 74, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--sunset);
}

.about-content .section-label::after {
  left: 0;
  transform: none;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  font-weight: 600;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ========== Buttons – European Minimal ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-warm));
  color: var(--white);
  box-shadow: 0 8px 30px rgba(232, 93, 4, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232, 93, 4, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-ocean {
  background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid));
  color: var(--white);
  box-shadow: 0 8px 30px rgba(10, 61, 98, 0.3);
}

.btn-ocean:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10, 61, 98, 0.4);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.75rem;
}

.btn-block {
  width: 100%;
}

/* ========== Glass Card ========== */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 22, 0.72) 0%, rgba(8, 16, 22, 0.28) 55%, transparent 100%);
  opacity: 1;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 0;
}

.header.scrolled,
.header.nav-solid {
  background: rgba(10, 20, 26, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.header.scrolled::before,
.header.nav-solid::before {
  opacity: 0;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--sunset), var(--sunset-warm));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.15;
}

.logo-name {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.logo-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.logo-location .location-pin-icon {
  opacity: 0.9;
  flex-shrink: 0;
}

.header.nav-solid .logo-location,
.header.scrolled .logo-location {
  color: rgba(255, 180, 120, 0.95);
}

.nav-tours-loc {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 6px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  vertical-align: middle;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.header.nav-solid .nav-tours-loc,
.header.scrolled .nav-tours-loc {
  background: rgba(232, 93, 4, 0.18);
  color: rgba(255, 210, 170, 0.98);
}

.location-pin-icon {
  display: inline-block;
  vertical-align: -2px;
  flex-shrink: 0;
}

.dropdown-location-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--ocean-deep);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 4px;
}

.dropdown-location-header .location-pin-icon {
  color: var(--sunset-warm);
}

.dropdown-menu a:not(.dropdown-all) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dropdown-tour-name {
  flex: 1;
  min-width: 0;
}

.dropdown-tour-loc {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.85;
}

.dropdown-menu a:not(.dropdown-all):hover .dropdown-tour-loc {
  color: var(--sunset-warm);
  opacity: 1;
}

.mobile-nav-brand .logo-location {
  color: rgba(255, 255, 255, 0.75);
}

.mobile-nav-brand .logo-name {
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* FAQ & Gallery — pill style (distinct from main nav links) */
.nav-extra {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 100px;
  box-shadow: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform 0.2s ease, box-shadow var(--transition);
  white-space: nowrap;
  text-shadow: none;
}

.nav-pill::after {
  display: none !important;
}

.nav-pill:hover {
  background: rgba(232, 93, 4, 0.22);
  border-color: rgba(255, 180, 120, 0.75);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.nav-pill.active {
  background: linear-gradient(135deg, #fff, #f5f5f5);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--ocean-deep);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

.nav-pill-svg {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.nav-link:not(.nav-link-caret)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sunset-warm);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--sunset-warm);
  text-shadow: none;
}

.nav-link:not(.nav-link-caret):hover::after,
.nav-link:not(.nav-link-caret).active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  cursor: pointer;
}

.nav-link-caret {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-image: linear-gradient(var(--sunset-warm), var(--sunset-warm));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 calc(100% + 4px);
  transition: background-size var(--transition), color var(--transition);
}

.nav-link-caret:hover,
.nav-link-caret.active,
.nav-dropdown:hover .nav-link-caret {
  background-size: 100% 2px;
}

.nav-link-caret::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-link-caret:hover::after,
.nav-dropdown:hover .nav-link-caret::after {
  opacity: 1;
  transform: rotate(180deg);
}

.link-arrow {
  display: inline-block;
  margin-left: 2px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  margin-top: 10px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
  min-width: 300px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 1000;
  overflow: hidden;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.04);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 22px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(232, 93, 4, 0.08);
  color: var(--sunset-warm);
  padding-left: 26px;
}

.dropdown-menu .dropdown-all {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 6px;
  padding-top: 12px;
  font-weight: 600;
  color: var(--ocean-deep);
}

.dropdown-menu .dropdown-all:hover {
  color: var(--sunset-warm);
  background: rgba(232, 93, 4, 0.06);
}

.nav-cta {
  margin-left: 8px;
  flex-shrink: 0;
}

.header.scrolled .nav-cta.btn-primary,
.header.nav-solid .nav-cta.btn-primary {
  background: var(--white);
  color: var(--ocean-deep);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
  font-weight: 700;
  letter-spacing: 0.8px;
}

.header.scrolled .nav-cta.btn-primary:hover,
.header.nav-solid .nav-cta.btn-primary:hover {
  background: #fff;
  color: var(--sunset-warm);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== Mobile Navigation Drawer ========== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(10, 18, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100%);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(175deg, #1a3a4a 0%, #1a2428 38%, #1a1410 100%);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.2;
  min-width: 0;
}

.mobile-nav-brand .logo-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.mobile-nav-close {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.mobile-nav-close:active {
  transform: scale(0.96);
}

.mobile-nav-close::before,
.mobile-nav-close::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-nav-close::before {
  transform: rotate(45deg);
}

.mobile-nav-close::after {
  transform: rotate(-45deg);
}

.mobile-nav-scroll {
  flex: 1;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 16px 16px;
}

.mobile-nav-section + .mobile-nav-section {
  margin-top: 24px;
}

.mobile-nav-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
  padding-left: 4px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-discover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-nav-discover-grid .nav-pill-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 12px;
  background: rgba(244, 140, 6, 0.1);
  border: 1px dashed rgba(244, 140, 6, 0.35);
  color: var(--sunset-warm);
}

.mobile-nav-discover-grid .nav-pill-mobile .nav-pill-svg {
  width: 18px;
  height: 18px;
  color: var(--sunset-warm);
}

.mobile-nav-discover-grid .nav-pill-mobile:hover,
.mobile-nav-discover-grid .nav-pill-mobile:focus-visible {
  background: rgba(244, 140, 6, 0.2);
  border-color: rgba(244, 140, 6, 0.55);
  color: var(--white);
}

.mobile-nav-discover-grid .nav-pill-mobile.active {
  background: rgba(232, 93, 4, 0.25);
  border-style: solid;
  border-color: rgba(244, 140, 6, 0.6);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(244, 140, 6, 0.2);
}

.mobile-nav-discover-grid .nav-pill-mobile.active .nav-pill-svg {
  color: var(--white);
}

.mobile-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform 0.2s ease;
}

.mobile-nav .nav-link::after {
  display: none;
}

.mobile-nav .nav-link:active {
  transform: scale(0.98);
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.mobile-nav .nav-link.active {
  background: rgba(232, 93, 4, 0.15);
  border-color: rgba(244, 140, 6, 0.35);
  color: var(--sunset-warm);
  box-shadow: inset 3px 0 0 var(--sunset-warm);
}

.mobile-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

.mobile-nav .nav-link.active .mobile-nav-icon {
  background: rgba(232, 93, 4, 0.25);
}

.mobile-nav-text {
  flex: 1;
  min-width: 0;
}

.mobile-nav-tours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav .nav-sub {
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  gap: 0;
  justify-content: space-between;
}

.mobile-nav .nav-sub::after {
  content: '›';
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
  margin-left: 8px;
  flex-shrink: 0;
}

.mobile-nav .nav-sub:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav .nav-sub.active {
  background: rgba(27, 107, 138, 0.25);
  border-color: rgba(43, 143, 173, 0.4);
  color: var(--ocean-pale);
  box-shadow: inset 3px 0 0 var(--ocean-light);
}

.mobile-nav-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 10px 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sunset-warm);
}

.mobile-nav-view-all:hover {
  color: var(--gold-light);
}

.mobile-nav-footer {
  flex-shrink: 0;
  padding: 16px 16px max(20px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-footer .btn-primary {
  width: 100%;
  padding: 16px 24px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.35);
}

.mobile-nav-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 12px;
  transition: background var(--transition), border-color var(--transition);
}

.mobile-nav-wa:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: rgba(37, 211, 102, 0.5);
  color: var(--white);
}

.mobile-nav-wa-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

body.mobile-menu-open .header {
  z-index: 1099;
}

body.mobile-menu-open .hamburger {
  opacity: 0;
  pointer-events: none;
}

/* ========== Hero Carousel – Premium Cinematic ========== */
.hero-carousel {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-carousel-inner {
  position: relative;
  z-index: 5;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px 48px;
  width: 100%;
  padding: calc(var(--header-height) + 48px) 24px 176px;
}

.hero-main {
  position: relative;
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.hero-trust-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(8, 16, 22, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeInUp 0.7s ease forwards;
}

.hero-trust-item {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sunset-warm);
  opacity: 0.85;
}

.hero-panel {
  position: relative;
  z-index: 8;
  width: 100%;
  padding: 32px 36px 28px;
  background: linear-gradient(135deg, rgba(8, 16, 22, 0.58) 0%, rgba(8, 16, 22, 0.32) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-slides {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}

.hero-slide {
  grid-row: 1;
  grid-column: 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.9s ease, visibility 0.9s ease;
  align-self: start;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.hero-slide:not(.active) .hero-slide-content > * {
  opacity: 0;
  transform: translateY(24px);
}

.hero-slide.active .hero-badge {
  animation: heroSlideIn 0.75s ease 0.05s forwards;
}

.hero-slide.active .hero-title {
  animation: heroSlideIn 0.75s ease 0.15s forwards;
}

.hero-slide.active .hero-subtitle {
  animation: heroSlideIn 0.75s ease 0.28s forwards;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  z-index: 1;
  transform: scale(1);
  transition: opacity 1s ease;
}

.hero-bg-layer.is-kenburns {
  animation: heroKenBurns 7s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero-carousel .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 22, 0.55) 0%, rgba(8, 16, 22, 0.15) 38%, rgba(8, 16, 22, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 16, 22, 0.65) 0%, transparent 55%);
  z-index: 2;
}

.hero-carousel-cta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  width: 100%;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.hero-carousel-cta .btn {
  padding: 10px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.7px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.hero-carousel-cta .btn-primary {
  box-shadow: 0 4px 18px rgba(232, 93, 4, 0.28);
}

.hero-carousel-cta .btn-primary:hover {
  box-shadow: 0 6px 22px rgba(232, 93, 4, 0.35);
}

.hero-carousel-cta .btn-ocean,
.hero-carousel-cta .btn-outline {
  box-shadow: none;
}

.hero-carousel-cta .btn-whatsapp {
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}

.hero-carousel-cta .btn:hover {
  transform: translateY(-2px);
}

.hero-carousel-cta .hero-slide-cta-wa {
  padding-left: 16px;
  padding-right: 16px;
}

.hero-tour-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px;
  max-width: 240px;
  padding-bottom: 8px;
}

.hero-tour-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(8, 16, 22, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.hero-tour-tab-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-tour-tab.active {
  background: rgba(232, 93, 4, 0.22);
  border-color: rgba(232, 93, 4, 0.55);
  color: var(--white);
  transform: translateX(-4px);
}

.hero-tour-tab.active .hero-tour-tab-num {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-warm));
  color: var(--white);
}

.hero-tour-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.hero-carousel-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  padding: 0 24px 44px;
}

.hero-progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}

.hero-progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--sunset), var(--sunset-warm));
  border-radius: inherit;
  transform-origin: left center;
}

.hero-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-counter {
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.hero-counter-current {
  color: var(--white);
  font-size: 1.1rem;
}

.hero-indicators {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-indicator {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 999px;
  padding: 0;
}

.hero-indicator.active {
  background: var(--sunset-warm);
  width: 28px;
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero-autoplay-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 16, 22, 0.45);
  backdrop-filter: blur(8px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-autoplay-toggle:hover {
  background: rgba(232, 93, 4, 0.25);
  border-color: rgba(232, 93, 4, 0.5);
}

.hero-autoplay-icon {
  display: block;
  width: 12px;
  height: 14px;
  position: relative;
}

.hero-autoplay-pause::before,
.hero-autoplay-pause::after {
  content: '';
  position: absolute;
  top: 0;
  width: 4px;
  height: 14px;
  background: var(--white);
  border-radius: 1px;
}

.hero-autoplay-pause::before { left: 0; }
.hero-autoplay-pause::after { right: 0; }

.hero-autoplay-play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 3px;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  background: rgba(8, 16, 22, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-nav:hover {
  background: rgba(232, 93, 4, 0.35);
  border-color: rgba(232, 93, 4, 0.6);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-carousel .hero-scroll {
  position: absolute;
  bottom: 108px;
  right: 32px;
  left: auto;
  transform: none;
  z-index: 6;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
  text-decoration: none;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

@media (max-width: 992px) {
  .hero-carousel-inner {
    grid-template-columns: 1fr;
    padding-bottom: 164px;
  }

  .hero-tour-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: none;
    min-width: 0;
    width: 100%;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .hero-tour-tabs::-webkit-scrollbar {
    display: none;
  }

  .hero-tour-tab {
    flex-shrink: 0;
    width: auto;
    min-width: max-content;
    transform: none;
  }

  .hero-tour-tab.active {
    transform: none;
  }

  .hero-tour-tab-num {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-layer.is-kenburns {
    animation: none;
  }

  .hero-slide.active .hero-badge,
  .hero-slide.active .hero-title,
  .hero-slide.active .hero-subtitle {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-scroll {
    animation: none;
  }
}

/* Legacy .hero support */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
  transition: transform 12s ease-out;
}

.hero-bg.animate {
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 20, 16, 0.75) 0%,
    rgba(26, 58, 74, 0.55) 40%,
    rgba(232, 93, 4, 0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 24px 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(232, 93, 4, 0.15);
  border: 1px solid rgba(232, 93, 4, 0.4);
  border-radius: 50px;
  color: var(--sunset-warm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-carousel .hero-badge {
  margin-bottom: 14px;
  padding: 8px 16px;
  font-size: 0.72rem;
  opacity: 0;
  animation: none;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.05;
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero-carousel .hero-title {
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  margin-bottom: 12px;
  opacity: 0;
  animation: none;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 0;
  border-left: 3px solid var(--sunset-warm);
  padding-left: 18px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-carousel .hero-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  letter-spacing: 0.3px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0;
  animation: none;
  padding-bottom: 2px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 12px auto 0;
}

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ========== Tour Cards – European Editorial ========== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.tour-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(40px);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.tour-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.tour-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tour-card:hover .tour-card-image img {
  transform: scale(1.05);
}

.tour-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(26, 20, 16, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tour-card-body {
  padding: 32px;
}

.tour-card-title {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.tour-card-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--sunset-warm);
}

.tour-card-location .location-pin-icon {
  color: var(--sunset);
}

.tour-card-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tour-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.tour-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ========== About – European Editorial ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--sunset), var(--sunset-warm));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow);
}

.about-image-accent strong {
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.about-image-accent span {
  font-size: 0.85rem;
  text-align: center;
}

.about-content .section-label,
.about-content .section-title {
  text-align: left;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.1), rgba(244, 140, 6, 0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.about-feature h4 {
  font-size: 0.95rem;
  color: var(--ocean-deep);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-feature-icon,
.why-icon[class*="why-icon-"],
.about-feature-icon[class*="about-icon-"] {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  font-size: 0;
}

.about-icon-whale { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e85d04' stroke-width='2'%3E%3Cpath d='M3 12c2-4 6-6 9-6 4 0 7 2 9 6-2 4-5 6-9 6-3 0-7-2-9-6z'/%3E%3Cpath d='M3 12h18M12 6v12'/%3E%3C/svg%3E"); }
.about-icon-turtle { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e85d04' stroke-width='2'%3E%3Cellipse cx='12' cy='13' rx='8' ry='5'/%3E%3Cpath d='M12 8V5M8 10l-2-2M16 10l2-2'/%3E%3C/svg%3E"); }
.about-icon-kayak { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e85d04' stroke-width='2'%3E%3Cpath d='M2 16c4-2 8-2 12 0s8 2 12 0M6 12l6-4 6 4'/%3E%3C/svg%3E"); }
.about-icon-cooking { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e85d04' stroke-width='2'%3E%3Cpath d='M6 4v4M10 4v4M14 4v2M18 4v2M4 10h16v10H4z'/%3E%3C/svg%3E"); }

.about-mission-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mission-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.mission-card-num {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--sunset-warm);
  margin-bottom: 14px;
}

.mission-card h3 {
  font-size: 1.15rem;
  color: var(--ocean-deep);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-gallery-section {
  background: var(--white);
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition);
}

.about-gallery-grid img:hover {
  transform: scale(1.02);
}

.why-icon-guarantee { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e85d04' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E"); }
.why-icon-pickup { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e85d04' stroke-width='2'%3E%3Cpath d='M14 16H9m10 0h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2h-1l-2-4H7L5 9H4a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h1'/%3E%3Ccircle cx='7.5' cy='16.5' r='2.5'/%3E%3Ccircle cx='16.5' cy='16.5' r='2.5'/%3E%3C/svg%3E"); }
.why-icon-guide { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e85d04' stroke-width='2'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 3.5-6 8-6s8 2 8 6'/%3E%3C/svg%3E"); }
.why-icon-safety { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e85d04' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E"); }
.why-icon-group { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e85d04' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.why-icon-whatsapp { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'/%3E%3Cpath fill='%23fff' d='M12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.5 1.3 5L2 22l5.2-1.3C8.9 21.5 10.4 22 12 22c5.5 0 10-4.5 10-10S17.5 2 12 2z'/%3E%3C/svg%3E"); }

.why-icon[class*="why-icon-"] {
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 14px;
  background-color: rgba(232, 93, 4, 0.1);
  background-size: 26px 26px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.why-card:hover .why-icon[class*="why-icon-"] {
  background-color: rgba(232, 93, 4, 0.16);
  transform: scale(1.05);
}

.why-card-featured .why-icon[class*="why-icon-"] {
  background-color: rgba(255, 255, 255, 0.12);
}

.why-card-featured:hover .why-icon[class*="why-icon-"] {
  background-color: rgba(255, 255, 255, 0.18);
}

/* ========== Contact Page ========== */
.contact-methods-section {
  padding-top: 60px;
  padding-bottom: 0;
  background: var(--off-white);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-method-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  color: inherit;
}

.contact-method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(232, 93, 4, 0.2);
  color: inherit;
}

.contact-method-wa:hover {
  border-color: rgba(37, 211, 102, 0.35);
}

.contact-method-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
  background-color: rgba(27, 107, 138, 0.08);
}

.contact-method-icon-wa {
  background-color: rgba(37, 211, 102, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

.contact-method-icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b6b8a' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.361 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
}

.contact-method-icon-email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b6b8a' stroke-width='2'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
}

.contact-method-card h3 {
  font-size: 1.15rem;
  color: var(--ocean-deep);
  margin-bottom: 8px;
}

.contact-method-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.contact-method-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sunset-warm);
}

.contact-page-section {
  padding-top: 60px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  color: var(--ocean-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(232, 93, 4, 0.3);
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-info-list li:last-child {
  margin-bottom: 0;
}

.contact-info-list strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ocean-deep);
  margin-bottom: 4px;
}

.contact-info-list p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.contact-info-list a {
  color: var(--text-muted);
}

.contact-info-list a:hover {
  color: var(--sunset-warm);
}

.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
}

.contact-hours-list li:last-child {
  border-bottom: none;
}

.contact-hours-list span {
  color: var(--text-muted);
}

.contact-hours-list strong {
  color: var(--ocean-deep);
  font-size: 0.88rem;
  text-align: right;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.contact-map-section {
  background: var(--off-white);
}

.contact-map-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-faq-section {
  background: var(--white);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-faq-item {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 28px;
  transition: box-shadow var(--transition);
}

.contact-faq-item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.contact-faq-item h4 {
  font-size: 1rem;
  color: var(--ocean-deep);
  margin-bottom: 10px;
}

.contact-faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.contact-faq-item a {
  color: var(--sunset-warm);
  font-weight: 500;
}

/* ========== Combo Packages ========== */
.combo-section {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.combo-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.combo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.combo-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.combo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.combo-card:hover .combo-card-image img {
  transform: scale(1.05);
}

.combo-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--sunset-warm);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}

.combo-card-body {
  padding: 24px;
}

.combo-card-body h3 {
  font-size: 1.25rem;
  color: var(--ocean-deep);
  margin-bottom: 12px;
}

.combo-tours {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.combo-tours li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 4px 0 4px 18px;
  position: relative;
}

.combo-tours li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sunset-warm);
}

.combo-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.combo-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.combo-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ocean-deep);
}

.combo-original {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.combo-save {
  font-size: 0.78rem;
  font-weight: 600;
  color: #27ae60;
  background: rgba(39, 174, 96, 0.1);
  padding: 4px 10px;
  border-radius: 2px;
}

.combo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.combo-actions .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

/* ========== Reviews Trust Bar ========== */
.reviews-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--ocean-deep), #1a4a5c);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 4px;
  margin-bottom: 48px;
}

.reviews-trust-score {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-trust-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.reviews-trust-stars {
  color: #f4c430;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.reviews-trust-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

.reviews-trust-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-trust-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.reviews-trust-actions .btn-outline:hover {
  background: var(--white);
  color: var(--ocean-deep);
}

/* ========== GetYourGuide Partner Badges ========== */
.gyg-badges {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gyg-badges-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.gyg-badges-label a {
  color: var(--sunset-warm);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gyg-badges-label a:hover {
  color: var(--white);
}

.gyg-badges-row,
.gyg-badges-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.gyg-badge-link {
  display: block;
  line-height: 0;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gyg-badge-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.gyg-badge-img {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto;
  border: 1px solid #c6c8d0;
  border-radius: 4px;
  background: var(--white);
}

.reviews-trust-bar .gyg-badges-compact {
  width: 100%;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  justify-content: center;
}

.gyg-booking-badges {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.gyg-booking-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  text-align: center;
}

.gyg-booking-badges .gyg-badges-compact {
  justify-content: center;
}

.tour-gyg-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.tour-gyg-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.tour-gyg-badge-link {
  display: inline-block;
  line-height: 0;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-gyg-badge-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.tour-gyg-badge {
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
}

.tour-gyg-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 10px 0 0;
}

.combo-gyg-block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.combo-gyg-block .tour-gyg-badge {
  max-width: 140px;
}

/* ========== FAQ Page ========== */
.faq-page-section {
  background: var(--white);
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category-title {
  font-size: 1.15rem;
  color: var(--ocean-deep);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(232, 93, 4, 0.2);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--ocean-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--sunset-warm);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.faq-answer a {
  color: var(--sunset-warm);
  font-weight: 500;
}

.faq-quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.faq-quick-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
}

.faq-quick-card h4 {
  color: var(--ocean-deep);
  margin-bottom: 8px;
}

.faq-quick-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ========== Site Gallery ========== */
.gallery-page-section {
  background: var(--off-white);
  padding-bottom: 64px;
}

.site-gallery {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gallery-toolbar {
  position: sticky;
  top: calc(var(--header-height) - 1px);
  z-index: 90;
  margin: 0 0 40px;
  padding: 20px 22px 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 40, 50, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(15, 40, 50, 0.06);
  overflow: visible;
}

.gallery-toolbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.gallery-toolbar-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ocean-deep);
}

.gallery-toolbar-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.gallery-filters-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.gallery-filters-wrap::before,
.gallery-filters-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 28px;
  width: 28px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-filters-wrap::before {
  left: 40px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 20%, transparent);
}

.gallery-filters-wrap::after {
  right: 40px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.98) 20%, transparent);
}

.gallery-filters-wrap.can-scroll-left::before,
.gallery-filters-wrap.can-scroll-right::after {
  opacity: 1;
}

.gallery-filters-nav {
  flex-shrink: 0;
  align-self: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(15, 40, 50, 0.12);
  border-radius: 50%;
  background: var(--white);
  color: var(--ocean-deep);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.gallery-filters-nav:hover:not(:disabled) {
  border-color: rgba(232, 93, 4, 0.35);
  color: var(--sunset-warm);
  background: rgba(232, 93, 4, 0.06);
}

.gallery-filters-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.gallery-filters {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 4px 22px;
  scroll-padding-inline: 8px;
  scrollbar-width: auto;
  scrollbar-color: var(--sunset-warm) rgba(15, 40, 50, 0.1);
  -webkit-overflow-scrolling: touch;
}

.gallery-filters::-webkit-scrollbar {
  height: 8px;
}

.gallery-filters::-webkit-scrollbar-track {
  background: rgba(15, 40, 50, 0.08);
  border-radius: 999px;
  margin-top: 14px;
}

.gallery-filters::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-warm));
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.gallery-filters::-webkit-scrollbar-thumb:hover {
  background: var(--sunset-warm);
}

.gallery-filter {
  flex-shrink: 0;
  border: 1px solid rgba(15, 40, 50, 0.12);
  background: var(--white);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-filter:hover {
  border-color: rgba(232, 93, 4, 0.35);
  color: var(--sunset-warm);
}

.gallery-filter.active {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-warm));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 2px 10px rgba(232, 93, 4, 0.3);
}

.gallery-tour-sections {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.gallery-tour-block {
  background: var(--white);
  border: 1px solid rgba(15, 40, 50, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(15, 40, 50, 0.05);
  scroll-margin-top: calc(var(--header-height) + 120px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-tour-block.is-hidden {
  display: none;
}

.gallery-tour-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 28px 24px;
  border-bottom: 1px solid rgba(15, 40, 50, 0.06);
  background: linear-gradient(135deg, rgba(15, 40, 50, 0.03) 0%, rgba(232, 93, 4, 0.04) 100%);
}

.gallery-tour-thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 24px rgba(15, 40, 50, 0.12);
}

.gallery-tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-tour-thumb:hover img {
  transform: scale(1.05);
}

.gallery-tour-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.gallery-tour-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--sunset-warm);
}

.gallery-tour-location .location-pin-icon {
  color: var(--sunset);
}

.gallery-tour-count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 40, 50, 0.06);
}

.gallery-tour-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.gallery-tour-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.gallery-tour-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sunset-warm);
  opacity: 0.7;
}

.gallery-tour-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px 28px 28px;
}

.site-gallery-item {
  position: relative;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ocean-deep);
}

.site-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.site-gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 16, 22, 0.35);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-gallery-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  position: relative;
}

.site-gallery-zoom-icon::before,
.site-gallery-zoom-icon::after {
  content: '';
  position: absolute;
  background: var(--ocean-deep);
  border-radius: 1px;
}

.site-gallery-zoom-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.site-gallery-zoom-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.site-gallery-item:hover img {
  transform: scale(1.06);
}

.site-gallery-item:hover .site-gallery-item-overlay,
.site-gallery-item:focus-visible .site-gallery-item-overlay {
  opacity: 1;
}

.site-gallery-item:focus-visible {
  outline: 2px solid var(--sunset-warm);
  outline-offset: 2px;
}

/* ========== Floating WhatsApp Enhancements ========== */
.floating-wa-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.wa-online-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--white);
  color: var(--ocean-deep);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.wa-online-badge.is-online::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  margin-right: 6px;
  animation: onlinePulse 2s infinite;
}

.wa-online-badge.is-offline::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--sunset-warm);
  border-radius: 50%;
  margin-right: 6px;
}

@keyframes onlinePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.floating-wa-wrap .floating-whatsapp {
  position: static;
  bottom: auto;
  right: auto;
}

/* ========== Mobile Sticky Book Bar ========== */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 850;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  align-items: center;
  gap: 10px;
}

.mobile-book-info {
  display: flex;
  flex-direction: column;
  min-width: 56px;
}

.mobile-book-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-book-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ocean-deep);
  line-height: 1.1;
}

.mobile-book-bar .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 0.82rem;
}

/* ========== Why Choose Us ========== */
.why-choose-us {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #f9f7f4 0%, #eef3f5 48%, var(--white) 100%);
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.why-choose-us::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(10, 61, 98, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 48px 56px;
  align-items: start;
}

.why-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.why-intro .section-label {
  text-align: left;
}

.why-intro .section-label::after {
  left: 0;
  transform: none;
}

.why-intro .section-title {
  text-align: left;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  margin-bottom: 16px;
}

.why-intro .section-desc {
  text-align: left;
  margin: 0 0 22px;
  max-width: none;
}

.why-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.why-trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(15, 40, 50, 0.08);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--ocean-deep);
  box-shadow: 0 2px 10px rgba(15, 40, 50, 0.05);
}

.why-intro-cta {
  display: inline-flex;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 0;
}

.why-card {
  background: var(--white);
  padding: 26px 24px;
  border-radius: 16px;
  border: 1px solid rgba(15, 40, 50, 0.07);
  box-shadow: 0 4px 22px rgba(15, 40, 50, 0.05);
  text-align: left;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sunset), var(--sunset-warm));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(15, 40, 50, 0.1);
  border-color: rgba(232, 93, 4, 0.18);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--ocean-deep) 0%, #0a3d62 100%);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.why-card-featured::after {
  background: linear-gradient(90deg, var(--sunset-warm), #ffc857);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.why-card-num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  opacity: 0.45;
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.08rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.35;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.why-card.why-card-featured h3 {
  color: var(--white);
}

.why-card.why-card-featured p {
  color: rgba(255, 255, 255, 0.88);
}

.why-card.why-card-featured .why-card-num {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.why-card.why-card-featured .why-icon-guarantee {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

/* ========== Quick Book ========== */
.quick-book {
  background: var(--white);
}

.quick-book-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.quick-book-text h2 {
  font-size: 2rem;
  color: var(--dark);
  margin: 12px 0 16px;
}

.quick-book-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.quick-book-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.qb-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qb-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sunset-warm);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.qb-step span:last-child {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.qb-card {
  background: var(--off-white);
  padding: 36px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.06);
}

.qb-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.qb-card > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.qb-contact {
  text-align: center;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ========== Testimonials ========== */
.testimonials {
  background: linear-gradient(135deg, var(--dark), var(--ocean-deep));
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials .section-label {
  color: var(--sunset-warm);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 2px;
  padding: 40px;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(232, 93, 4, 0.2);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 93, 4, 0.3);
}

.testimonial-stars {
  color: var(--sunset-warm);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.8;
  font-family: Georgia, 'Times New Roman', serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sunset), var(--sunset-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}

.testimonial-author h4 {
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* ========== CTA Section – European Cinematic ========== */
.cta-section {
  position: relative;
  padding: 140px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 20, 16, 0.88), rgba(26, 58, 74, 0.82));
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 44px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.gallery-page-actions {
  margin-top: 48px;
  text-align: center;
}

/* ========== Page Hero (inner pages) – European ========== */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 20, 16, 0.65), rgba(26, 58, 74, 0.85));
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: var(--sunset-warm);
}

/* ========== Tour Details ========== */
.tour-detail-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}

.tour-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.92), rgba(26, 58, 74, 0.3));
  display: flex;
  align-items: flex-end;
}

.tour-detail-hero-content {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.tour-detail-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.tour-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.tour-detail-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-detail-meta .tour-meta-icon,
.tour-detail-meta .sidebar-icon {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.tour-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}

.tour-detail-main {
  background: var(--white);
  border-radius: 2px;
  padding: 48px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.tour-detail-main h2 {
  font-size: 1.5rem;
  color: var(--ocean-deep);
  margin-bottom: 20px;
  margin-top: 32px;
}

.tour-detail-main h2:first-child {
  margin-top: 0;
}

.tour-detail-main p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.itinerary-list {
  counter-reset: itinerary;
}

.itinerary-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10, 61, 98, 0.08);
}

.itinerary-item:last-child {
  border-bottom: none;
}

.itinerary-time {
  min-width: 80px;
  font-weight: 600;
  color: var(--sunset);
  font-size: 0.9rem;
}

.itinerary-content h4 {
  color: var(--ocean-deep);
  font-size: 1rem;
  margin-bottom: 4px;
}

.itinerary-content p {
  font-size: 0.9rem;
  margin: 0;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.included-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  line-height: 1;
  color: #27ae60;
  font-weight: 700;
}

.excluded-list li::before {
  content: '✗';
  color: #e74c3c;
}

.tour-location {
  font-size: 1.1rem;
  color: var(--ocean-deep);
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.highlights-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
}

.highlights-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 10px;
  line-height: 1;
  color: var(--sunset-warm);
  font-weight: 700;
}

.important-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  margin-bottom: 0;
}

.important-info-col {
  min-width: 0;
}

.important-info-know {
  margin-top: 28px;
  margin-bottom: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(10, 61, 98, 0.1);
  width: 100%;
}

.important-info-grid h4,
.important-info-know h4 {
  color: var(--ocean-deep);
  margin-bottom: 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-list-know {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 40px;
  width: 100%;
}

.info-list-know li {
  padding: 10px 0 10px 20px;
}

.info-list-know li::before {
  top: 10px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.info-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 8px;
  line-height: 1;
  color: var(--sunset-warm);
  font-weight: 700;
}

.info-list.not-allowed li::before {
  content: '✗';
  color: #e74c3c;
}

.info-list.not-suitable li::before {
  content: '!';
  color: #c45c26;
}

/* ========== Tour Packages (e.g. Scuba) ========== */
.tour-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.package-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.package-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.package-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ocean-deep);
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.package-card:hover .package-card-image img {
  transform: scale(1.04);
}

.package-card-body {
  padding: 24px 24px 28px;
}

.package-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.package-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sunset-warm);
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ocean-deep);
  line-height: 1;
}

.package-price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.package-title {
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.package-subtitle {
  font-size: 0.85rem;
  color: var(--sunset-warm);
  font-weight: 600;
  margin-bottom: 12px;
}

.package-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.package-breakdown {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
}

.package-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.package-breakdown li:last-child {
  border-bottom: none;
}

.package-breakdown-label {
  color: var(--text);
  flex: 1;
}

.package-breakdown-time {
  color: var(--ocean-deep);
  font-weight: 600;
  white-space: nowrap;
}

.tour-nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tour-nav-buttons .btn {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.tour-nav-next-short {
  display: none;
}

.tour-nav-next-full {
  display: inline;
}

.tour-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.booking-sidebar-card {
  background: var(--white);
  border-radius: 2px;
  padding: 36px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--sunset);
  border-left: 1px solid rgba(0, 0, 0, 0.04);
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-sidebar-card h3 {
  color: var(--ocean-deep);
  margin-bottom: 8px;
}

.sidebar-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ocean-deep);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 24px;
}

.sidebar-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.sidebar-price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: -12px 0 20px;
  line-height: 1.5;
}

.sidebar-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(10, 61, 98, 0.06);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sidebar-icon,
.tour-meta-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sidebar-icon-time,
.tour-meta-icon-time {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b6b8a' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.sidebar-icon-pin,
.tour-meta-icon-pin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b6b8a' stroke-width='2'%3E%3Cpath d='M12 21s7-4.5 7-11a7 7 0 1 0-14 0c0 6.5 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.sidebar-icon-group {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b6b8a' stroke-width='2'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.sidebar-icon-shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b6b8a' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}

.sidebar-icon-star {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f48c06' stroke='%23f48c06' stroke-width='1'%3E%3Cpath d='m12 2 3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.sidebar-icon-clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b6b8a' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}

.sidebar-icon-price {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b6b8a' stroke-width='2'%3E%3Cpath d='M12 1v22M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E");
}

/* ========== Gallery ========== */
.gallery-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '+';
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 200;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: min(90vw, 1200px);
}

.lightbox img {
  max-width: 90vw;
  max-height: 75vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 90vw;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.92);
}

.lightbox-tour-name {
  font-size: 1rem;
  font-weight: 600;
}

.lightbox-counter {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ========== Booking Form ========== */
.booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: 2px;
  padding: 48px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-card h2 {
  color: var(--ocean-deep);
  margin-bottom: 8px;
}

.form-card > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ocean-deep);
  margin-bottom: 8px;
}

.form-group label .required {
  color: #e74c3c;
}

.form-control {
  width: 100%;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  background: var(--off-white);
  color: var(--text);
  transition: all var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--sunset);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.08);
}

.form-control.error {
  border-color: #e74c3c;
  background: #fdf2f2;
}

.form-error {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}

.form-error.show {
  display: block;
}

.form-control textarea {
  min-height: 120px;
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 24px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.radio-label input {
  accent-color: var(--ocean-mid);
  width: 18px;
  height: 18px;
}

.summary-card {
  background: linear-gradient(145deg, var(--dark), var(--ocean-deep));
  border-radius: 2px;
  padding: 36px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.summary-card h3 {
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.925rem;
}

.summary-item span:first-child {
  color: rgba(255, 255, 255, 0.7);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.summary-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whatsapp-preview {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  white-space: pre-wrap;
  max-height: 200px;
  overflow-y: auto;
}

/* ========== Payment ========== */
.payment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}

.payment-method:hover {
  border-color: var(--sunset-warm);
}

.payment-method.active {
  border-color: var(--sunset);
  background: rgba(232, 93, 4, 0.04);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.08);
}

.payment-method input {
  accent-color: var(--ocean-mid);
  width: 20px;
  height: 20px;
}

.payment-method-icon {
  font-size: 1.5rem;
}

.payment-method-info h4 {
  font-size: 0.95rem;
  color: var(--ocean-deep);
}

.payment-method-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.payment-form-panel {
  display: none;
  animation: fadeInUp 0.4s ease;
}

.payment-form-panel.active {
  display: block;
}

.card-input-group {
  position: relative;
}

.card-icons {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 6px;
  font-size: 1.2rem;
}

.bank-details {
  background: var(--off-white);
  border-radius: 12px;
  padding: 24px;
}

.bank-details dl {
  display: grid;
  gap: 12px;
}

.bank-details dt {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bank-details dd {
  font-weight: 600;
  color: var(--ocean-deep);
  font-family: 'Poppins', sans-serif;
}

.order-summary {
  background: var(--white);
  border-radius: 2px;
  padding: 36px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  color: var(--ocean-deep);
  margin-bottom: 24px;
}

/* ========== Modal / Success ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 24px;
}

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

.modal {
  background: var(--white);
  border-radius: 2px;
  padding: 56px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: scale(0.9);
  transition: transform var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
  color: var(--white);
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.modal h2 {
  color: var(--ocean-deep);
  margin-bottom: 12px;
}

.modal p {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.receipt-id {
  background: var(--off-white);
  padding: 16px;
  border-radius: 12px;
  margin: 24px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--ocean-deep);
  letter-spacing: 1px;
}

/* ========== Footer ========== */
.footer {
  position: relative;
  background: linear-gradient(165deg, #0f2832 0%, #1a1410 55%, #14100e 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 0 0 32px;
  margin-top: 0;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 56px;
  left: -20%;
  width: 60%;
  height: 280px;
  background: radial-gradient(ellipse, rgba(27, 107, 138, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 50%;
  height: 200px;
  background: radial-gradient(ellipse, rgba(232, 93, 4, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-wave {
  color: var(--off-white);
  line-height: 0;
  margin-bottom: -1px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 48px;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 56px;
  padding: 48px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  transition: opacity var(--transition);
}

.footer-logo:hover {
  opacity: 0.9;
  color: var(--white);
}

.footer-logo .logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
  max-width: 340px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.footer-actions .btn {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-actions .btn:hover {
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform 0.2s ease;
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social-btn:first-child:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.45);
  color: #5dffa8;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(232, 93, 4, 0.45);
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--sunset-warm);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-contact-list li > span:not(.footer-contact-icon) {
  flex: 1;
  min-width: 0;
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--sunset-warm);
  padding-left: 0;
}

.footer-contact-list a span:last-child {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.footer-col.footer-col-contact ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.footer-col.footer-col-contact ul li a:hover {
  padding-left: 0;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 0.85rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
}

.footer-icon-pin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f48c06' stroke-width='2'%3E%3Cpath d='M12 21s7-4.5 7-11a7 7 0 1 0-14 0c0 6.5 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
}

.footer-icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f48c06' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.footer-icon-email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f48c06' stroke-width='2'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
}

.footer-bottom {
  padding: 22px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom p {
  margin: 0;
}

.footer-made {
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: pulse 2s infinite;
}

.floating-whatsapp-icon {
  display: block;
  flex-shrink: 0;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

/* ========== Scroll to Top Button ========== */
.scroll-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 899;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--ocean-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 40, 50, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), background var(--transition), box-shadow var(--transition);
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--sunset-warm);
  box-shadow: 0 10px 28px rgba(232, 119, 34, 0.4);
  transform: translateY(-2px);
}

.scroll-to-top:focus-visible {
  outline: 2px solid var(--sunset-warm);
  outline-offset: 3px;
}

.scroll-to-top-icon {
  display: block;
  flex-shrink: 0;
}

/* ========== Stats Bar – European Minimal ========== */
.stats-bar {
  background: var(--white);
  padding: 60px 0;
  margin-top: -16px;
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.stat-item strong {
  display: block;
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  color: var(--sunset);
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-item span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ========== Animations on scroll ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .about-mission-grid,
  .about-gallery-grid,
  .contact-methods-grid,
  .contact-layout,
  .contact-faq-grid,
  .combo-grid,
  .faq-quick-links {
    grid-template-columns: 1fr;
  }

  .gallery-tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-tour-header {
    grid-template-columns: 1fr;
  }

  .gallery-tour-thumb {
    max-width: 280px;
  }

  .about-gallery-grid img {
    height: 180px;
  }

  .contact-form-actions {
    flex-direction: column;
  }

  .contact-form-actions .btn {
    width: 100%;
  }

  .about-grid,
  .tour-detail-grid,
  .booking-layout,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .tour-sidebar,
  .summary-card,
  .order-summary {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 36px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-col-contact {
    grid-column: 1 / -1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 1180px) {
  .nav {
    gap: 18px;
  }

  .nav-extra {
    padding-left: 14px;
    gap: 6px;
  }

  .nav-pill {
    padding: 6px 11px;
    font-size: 0.68rem;
  }
}

@media (max-width: 992px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .combo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-tour-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-quick-links {
    grid-template-columns: 1fr;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-intro {
    position: static;
    text-align: center;
  }

  .why-intro .section-label,
  .why-intro .section-title,
  .why-intro .section-desc {
    text-align: center;
  }

  .why-intro .section-label::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .why-trust-badges {
    justify-content: center;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-book-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tour-detail-grid {
    padding-bottom: 24px;
    gap: 28px;
  }

  .tour-nav-buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 36px;
    padding-top: 20px;
  }

  .tour-nav-buttons .btn {
    flex: 1 1 0;
    width: auto;
    min-height: 44px;
    padding: 11px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  }

  .tour-nav-buttons .btn:hover {
    transform: none;
  }

  .tour-nav-next-short {
    display: inline;
  }

  .tour-nav-next-full {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-grid img {
    height: 200px;
  }

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

  .gallery-tour-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 12px;
  }

  .site-gallery-item {
    border-radius: 8px;
    aspect-ratio: 1 / 1;
  }

  .site-gallery-zoom-icon {
    width: 28px;
    height: 28px;
  }

  .gallery-toolbar {
    padding: 16px 12px 14px;
    margin-bottom: 28px;
  }

  .gallery-filters-nav {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }

  .gallery-filters {
    padding-bottom: 20px;
  }

  .gallery-filters::-webkit-scrollbar-track {
    margin-top: 12px;
  }

  .gallery-tour-header {
    padding: 20px 16px 16px;
  }

  .gallery-page-section .section-header {
    margin-bottom: 32px;
  }

  .gallery-page-actions {
    margin-top: 28px;
    margin-bottom: 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .cta-buttons .btn {
    width: 100%;
    margin: 0;
  }

  .reviews-trust-bar {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .reviews-trust-bar .gyg-badges-compact {
    justify-content: center;
  }

  .gyg-badges-row,
  .footer-brand .gyg-badges-compact {
    justify-content: center;
  }

  .gyg-badge-img {
    width: 140px;
  }

  .reviews-trust-score {
    flex-direction: column;
    text-align: center;
  }

  .reviews-trust-actions {
    justify-content: center;
    width: 100%;
  }

  .reviews-trust-actions .btn {
    flex: 1;
    min-width: 140px;
  }

  .mobile-book-bar {
    display: flex;
  }

  body:has(.mobile-book-bar) {
    padding-bottom: 64px;
  }

  .floating-wa-wrap {
    bottom: 18px;
    right: 16px;
  }

  .scroll-to-top {
    bottom: 18px;
    left: 16px;
    width: 46px;
    height: 46px;
  }

  body:has(.mobile-book-bar) .floating-wa-wrap {
    bottom: 78px;
  }

  body:has(.mobile-book-bar) .scroll-to-top {
    bottom: 78px;
  }

  .nav,
  .nav-cta {
    display: none;
  }

  .logo {
    font-size: 1rem;
    gap: 10px;
    max-width: calc(100% - 56px);
    line-height: 1.2;
  }

  .logo-img {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .header-inner {
    padding: 0 4px;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav-panel {
    width: min(340px, 92vw);
  }

  .mobile-nav .nav-link {
    font-size: 0.95rem;
    padding: 13px 14px;
  }

  .mobile-nav .nav-sub {
    font-size: 0.84rem;
    padding: 11px 12px;
  }

  .mobile-nav-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .section {
    padding: 70px 0;
  }

  .section.gallery-page-section {
    padding-top: 48px;
    padding-bottom: 16px;
  }

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

  .about-image-accent {
    bottom: 10px;
    right: 10px;
    width: 140px;
    height: 140px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .gallery-slider {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    gap: 32px;
    padding: 28px 0 28px;
  }

  .footer-tagline {
    max-width: none;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-col-contact {
    grid-column: auto;
  }

  .footer-actions {
    flex-direction: column;
  }

  .footer-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-top: 18px;
  }

  .footer-wave svg {
    height: 36px;
  }

  .hero-bg {
    background-attachment: scroll;
  }

  .cta-section {
    background-attachment: scroll;
  }

  .hero-content {
    text-align: center;
    padding: 140px 20px 80px;
  }

  .hero-carousel-inner {
    grid-template-columns: 1fr;
    padding: calc(var(--header-height) + 32px) 20px 148px;
    gap: 20px;
  }

  .hero-main {
    align-items: center;
    text-align: center;
    max-width: none;
    gap: 22px;
  }

  .hero-trust-strip {
    justify-content: center;
  }

  .hero-panel {
    padding: 28px 22px 24px;
    border-radius: 16px;
    gap: 20px;
  }

  .hero-slide-content {
    text-align: center;
    padding: 0;
  }

  .hero-slide-content .hero-subtitle {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }

  .hero-carousel-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    margin-top: 16px;
    padding-top: 14px;
  }

  .hero-carousel-cta .btn {
    width: 100%;
    padding: 11px 16px;
    font-size: 0.7rem;
  }

  .hero-tour-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: none;
    min-width: 0;
    width: 100%;
    padding-bottom: 4px;
    gap: 8px;
    scrollbar-width: none;
  }

  .hero-tour-tabs::-webkit-scrollbar {
    display: none;
  }

  .hero-tour-tab {
    flex-shrink: 0;
    width: auto;
    min-width: max-content;
    padding: 10px 14px;
    transform: none;
  }

  .hero-tour-tab.active {
    transform: none;
  }

  .hero-tour-tab-num {
    display: none;
  }

  .hero-nav {
    display: none;
  }

  .hero-carousel .hero-scroll {
    display: none;
  }

  .hero-carousel-controls {
    padding: 0 16px 28px;
  }

  .hero-controls-row {
    gap: 10px;
  }

  .hero-counter {
    font-size: 0.75rem;
  }

  .hero-counter-current {
    font-size: 0.95rem;
  }

  .hero-subtitle {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }

  .why-layout {
    gap: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 22px 20px;
  }

  .why-card-featured {
    grid-column: auto;
  }

  .quick-book-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quick-book-text h2 {
    font-size: 1.5rem;
  }

  .important-info-grid {
    grid-template-columns: 1fr;
  }

  .info-list-know {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .tour-packages {
    grid-template-columns: 1fr;
  }

  .tour-detail-main {
    padding: 28px 20px;
  }

  .tour-nav-buttons {
    gap: 8px;
    margin-top: 0;
    margin-bottom: 24px;
    padding-top: 14px;
  }

  .tour-nav-buttons .btn {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.4px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

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

  .stat-item:not(:last-child)::after {
    display: none;
  }
}
