/* ==========================================================================
   THE BANANA LIFE - DESIGN SYSTEM & STYLES (TROPICAL LUXURY)
   ========================================================================== */

/* --- CSS Variables & Custom Properties --- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Color Palette */
  --bg-darker: #070708;
  --bg-dark: #0F0F11;
  --bg-card: rgba(20, 20, 23, 0.6);
  --bg-card-hover: rgba(28, 28, 32, 0.85);
  --bg-glass: rgba(15, 15, 17, 0.7);
  
  --primary-yellow: #FBE134;
  --primary-yellow-glow: rgba(251, 225, 52, 0.2);
  --accent-coral: #FF6B4A;
  --accent-coral-glow: rgba(255, 107, 74, 0.15);
  --accent-teal: #0AD2C4;
  --accent-blue: #2B76F0;
  
  --text-white: #FFFFFF;
  --text-cream: #F5F2EB;
  --text-muted: #8E9BAE;
  --text-dark: #0F0F11;

  --border-light: rgba(255, 255, 255, 0.07);
  --border-light-hover: rgba(255, 255, 255, 0.15);
  
  /* Layout Standards */
  --header-height: 100px;
  --sidebar-width: 320px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Reset & Base Elements --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-darker);
  color: var(--text-cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

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

/* --- Glowing Backdrop Orbs --- */
.glow-orb {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  transition: var(--transition-smooth);
}

.glow-yellow {
  top: -100px;
  right: -100px;
  background: var(--primary-yellow);
}

.glow-coral {
  bottom: -150px;
  left: -150px;
  background: var(--accent-coral);
}

/* --- Typography & Text Utilities --- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-text {
  color: var(--primary-yellow);
}

.highlight-yellow {
  color: var(--text-dark);
  background: var(--primary-yellow);
  padding: 0.1em 0.3em;
  border-radius: 8px;
  display: inline-block;
  transform: rotate(-1.5deg);
  font-weight: 800;
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- Buttons System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-primary {
  background: var(--primary-yellow);
  color: var(--text-dark);
  box-shadow: 0 4px 20px var(--primary-yellow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(251, 225, 52, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--border-light-hover);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  position: relative;
  overflow: visible;
  z-index: 1;
  background: #25D366;
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #25D366;
  border-radius: inherit;
  z-index: -1; /* Behind the button background */
  opacity: 0.5;
  transform: scale(1);
  animation: gpuPulse 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.btn-whatsapp:hover {
  background: #20BA56;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:hover::before {
  animation: none;
  opacity: 0;
}

@keyframes gpuPulse {
  0% {
    transform: scale(0.98, 0.95);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.08, 1.25);
    opacity: 0;
  }
}

.btn-block {
  width: 100%;
}

/* --- Sticky Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.nav-brand:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 84px; /* High-definition crisp vector logo inside navbar */
  width: auto;
  object-fit: contain;
  display: block;
}

/* --- Language Dropdown --- */
.lang-dropdown-container {
  position: relative;
  display: inline-block;
}

.lang-chevron {
  width: 14px;
  height: 14px;
  transition: var(--transition-smooth);
}

.lang-dropdown-container:hover .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-list {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  min-width: 100px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
  z-index: 110;
}

.lang-dropdown-container:hover .lang-dropdown-list,
.lang-dropdown-container.active .lang-dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-option {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 10px 16px;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: var(--transition-smooth);
}

.lang-dropdown-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary-yellow);
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  vertical-align: middle;
  background: rgba(255, 255, 255, 0.05);
}

.flag-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sidebar-brand {
  display: flex;
  align-items: center;
}

.sidebar-logo-image {
  height: 48px; /* High-definition crisp vector mobile menu logo */
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}

.footer-logo-image {
  height: 75px; /* Premium vector brand signature in footer */
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  flex: 0 0 auto;
  display: flex;
  gap: 32px;
}

.nav-item {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-item:hover, .nav-item.active {
  color: var(--primary-yellow);
}

.nav-actions {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 8px 14px;
  border-radius: var(--border-radius-sm);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-light-hover);
}

/* Header Shopping Cart Button */
.cart-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.cart-btn:hover {
  background: rgba(255, 206, 0, 0.15);
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 206, 0, 0.2);
}

.cart-btn i {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  background-color: var(--accent-coral);
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  box-shadow: 0 0 10px var(--accent-coral);
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 107, 74, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(255, 107, 74, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 107, 74, 0);
  }
}

.burger-menu {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-white);
  width: 54px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--border-radius-sm);
  display: flex; /* Always visible on all devices */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.burger-menu:hover {
  background: rgba(255, 206, 0, 0.15);
  border-color: var(--primary-yellow);
  color: var(--primary-yellow);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 206, 0, 0.2);
}

/* --- Sidebar Drawer (Matching Wix navigation side) --- */
.sidebar-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
  visibility: hidden;
  transition: visibility 0.4s;
}

.sidebar-drawer.active {
  visibility: visible;
}

.sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 5, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sidebar-drawer.active .sidebar-overlay {
  opacity: 1;
}

.sidebar-content {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--sidebar-width);
  height: 100%;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-light);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-drawer.active .sidebar-content {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.sidebar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.close-sidebar {
  background: transparent;
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition-smooth);
}

.close-sidebar:hover {
  color: var(--text-white);
  transform: rotate(90deg);
}

.sidebar-categories {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 20px;
}

.sidebar-categories::-webkit-scrollbar {
  width: 4px;
}

.sidebar-categories::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.sidebar-categories h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.category-menu {
  list-style: none;
}

.category-menu-item {
  margin-bottom: 6px;
}

.category-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--border-radius-sm);
  color: var(--text-cream);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.category-link:hover, .category-link.active {
  background: rgba(251, 225, 52, 0.08);
  color: var(--primary-yellow);
  transform: translateX(4px);
}

.category-icon {
  font-size: 1.1rem;
}

.sidebar-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.sidebar-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-yellow);
  color: var(--text-dark);
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: var(--font-heading);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.1); }
}

.hero-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-yellow);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
  max-width: 600px;
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-yellow);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Sidebar Categories Scroll Indicator --- */
.sidebar-scroll-down {
  position: absolute;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  background: var(--primary-yellow);
  color: var(--dark-bg);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(252, 227, 0, 0.4), 0 0 0 2px rgba(252, 227, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: sidebarBounce 2s infinite, sidebarGlow 2s infinite alternate;
  opacity: 1;
}

.sidebar-scroll-down:hover {
  background: var(--white);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.sidebar-scroll-down.hidden {
  opacity: 0;
  pointer-events: none;
}

.sidebar-scroll-down i {
  width: 18px;
  height: 18px;
  stroke-width: 3px;
}

@keyframes sidebarBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-6px);
  }
  60% {
    transform: translateX(-50%) translateY(-3px);
  }
}

@keyframes sidebarGlow {
  0% {
    box-shadow: 0 4px 15px rgba(252, 227, 0, 0.4), 0 0 0 2px rgba(252, 227, 0, 0.2);
  }
  100% {
    box-shadow: 0 4px 20px rgba(252, 227, 0, 0.65), 0 0 0 10px rgba(252, 227, 0, 0);
  }
}

/* --- Recommendations Slider / Bestsellers --- */
.recommendations {
  background: var(--bg-darker);
  position: relative;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* --- Excursion Grid & Filter Navigation --- */
.activities-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
}

.filter-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.search-box {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 20px;
  height: 20px;
}

.search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 16px 20px 16px 54px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary-yellow);
  box-shadow: 0 0 15px rgba(251, 225, 52, 0.15);
}

.filter-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.filter-tabs::-webkit-scrollbar {
  height: 4px;
}

.filter-tabs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.filter-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  padding: 10px 20px;
  border-radius: 100px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.filter-tab:hover, .filter-tab.active {
  background: var(--primary-yellow);
  color: var(--text-dark);
  border-color: var(--primary-yellow);
}

.show-more-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.btn-show-more {
  background: transparent;
  color: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
  box-shadow: 0 4px 15px var(--primary-yellow-glow);
  padding: 14px 36px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.btn-show-more:hover {
  background: var(--primary-yellow);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(251, 225, 52, 0.35);
}

.excursions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  min-height: 300px;
}

/* --- Excursion Cards Style --- */
.excursion-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-bounce);
}

.excursion-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: var(--bg-card-hover);
  border-color: var(--border-light-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.excursion-card:hover .card-img {
  transform: scale(1.1);
}

.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 15, 17, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary-yellow);
  backdrop-filter: blur(4px);
}

.card-recommendation-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-coral);
  color: var(--text-white);
  padding: 6px 12px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.card-partner-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 160, 80, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.2);
}

.card-partner-badge svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  margin-bottom: 20px;
}

.card-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-cream);
  font-size: 0.85rem;
  font-weight: 600;
}

.card-stat-item i {
  width: 16px;
  height: 16px;
  color: var(--primary-yellow);
}

.card-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--primary-yellow);
}

.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-white);
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition-bounce);
}

.excursion-card:hover .card-btn {
  background: var(--primary-yellow);
  color: var(--text-dark);
  border-color: var(--primary-yellow);
}

/* --- Testimonials Section --- */
.testimonials {
  background: var(--bg-darker);
  position: relative;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars {
  color: var(--primary-yellow);
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-cream);
  font-size: 0.95rem;
  flex: 1;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-coral));
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-trip {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- TripAdvisor Premium Trust Integration --- */
:root {
  --ta-green: #00AA6C;
  --ta-green-glow: rgba(0, 170, 108, 0.2);
  --ta-green-bg: rgba(0, 170, 108, 0.08);
}

.ta-dashboard-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.ta-stat-card, .ta-metrics-card, .ta-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ta-stat-card:hover, .ta-metrics-card:hover, .ta-cta-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 170, 108, 0.3);
  box-shadow: 0 12px 40px 0 rgba(0, 170, 108, 0.12);
}

/* First Column: Travelers Choice & Brand Info */
.ta-stat-card {
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.ta-badge-wrap {
  flex-shrink: 0;
}

.ta-laurel-badge {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laurel-svg {
  width: 100%;
  height: 100%;
  animation: rotateLaurel 20s linear infinite;
  transform-origin: center;
}

@keyframes rotateLaurel {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ta-laurel-badge:hover .laurel-svg {
  animation-play-state: paused;
}

.ta-laurel-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  pointer-events: none;
}

.laurel-title {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.laurel-subtitle {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ta-green);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.laurel-year {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--primary-yellow);
  line-height: 1.2;
  margin-top: 2px;
}

.ta-brand-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ta-logo-text-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ta-owl-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px var(--ta-green-glow));
}

.ta-brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--text-white);
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.ta-score-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ta-score-big {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--text-white);
  line-height: 1;
}

.ta-score-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Custom TripAdvisor green rating circles */
.ta-bubble-rating {
  display: flex;
  gap: 5px;
}

.ta-bubble-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ta-green);
  box-shadow: 0 0 6px var(--ta-green-glow);
  display: inline-block;
  position: relative;
}

.ta-bubble-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.ta-review-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Second Column: sub-ratings categories */
.ta-metrics-card {
  gap: 16px;
}

.ta-metric-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ta-metric-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.ta-metric-name {
  color: var(--text-cream);
}

.ta-metric-value {
  color: var(--ta-green);
}

.ta-progress-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.ta-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(to right, var(--ta-green), var(--accent-teal));
  box-shadow: 0 0 8px rgba(0, 170, 108, 0.4);
  position: relative;
  animation: loadProgress 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  transform-origin: left;
}

@keyframes loadProgress {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* Third Column: CTA & review action */
.ta-cta-card {
  gap: 12px;
}

.ta-badge-row {
  display: flex;
  align-items: center;
}

.ta-verified-badge {
  background: var(--ta-green-bg);
  color: var(--ta-green);
  border: 1px solid rgba(0, 170, 108, 0.2);
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: inset 0 2px 8px rgba(0, 170, 108, 0.1);
}

.ta-verified-badge i {
  width: 13px;
  height: 13px;
}

.ta-cta-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
}

.ta-cta-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.ta-cta-btn {
  margin-top: 6px;
  background: var(--ta-green);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 170, 108, 0.3);
  cursor: pointer;
}

.ta-cta-btn i {
  width: 16px;
  height: 16px;
}

.ta-cta-btn:hover {
  background: #00935d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 170, 108, 0.5);
  border-color: rgba(255, 255, 255, 0.25);
}

.ta-cta-btn:active {
  transform: translateY(0);
}

/* Testimonial card custom tags for TripAdvisor reviews */
.ta-testimonial {
  border-color: rgba(0, 170, 108, 0.12);
  box-shadow: 0 4px 20px rgba(0, 170, 108, 0.03);
}

.ta-testimonial:hover {
  border-color: rgba(0, 170, 108, 0.35);
  box-shadow: 0 8px 30px rgba(0, 170, 108, 0.1);
}

.testimonial-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ta-card-bubbles .ta-bubble-dot {
  width: 12px;
  height: 12px;
}

.ta-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ta-green);
  background: var(--ta-green-bg);
  border: 1px solid rgba(0, 170, 108, 0.15);
  padding: 4px 8px;
  border-radius: 12px;
}

.ta-owl-mini {
  width: 14px;
  height: 14px;
}

/* --- FAQ Accordion Section --- */
.faq-section {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  position: relative;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light-hover);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-item.active {
  border-color: var(--primary-yellow);
  box-shadow: 0 4px 25px var(--primary-yellow-glow);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  transition: var(--transition-smooth);
}

.faq-question span {
  flex: 1;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-yellow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Contact Section --- */
.contact-section {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  position: relative;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.contact-info-panel {
  padding: 50px;
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-panel-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-panel-desc {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.method-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-md);
  background: rgba(251, 225, 52, 0.08);
  border: 1px solid rgba(251, 225, 52, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-yellow);
  transition: var(--transition-bounce);
}

.contact-method-item:hover .method-icon {
  background: var(--primary-yellow);
  color: var(--text-dark);
}

.method-details {
  display: flex;
  flex-direction: column;
}

.method-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.method-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.method-value:hover {
  color: var(--primary-yellow);
}

.social-links-container h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-cream);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition-bounce);
}

.social-circle i,
.social-circle svg,
.social-circle .sc-icon {
  width: 20px !important;
  height: 20px !important;
  display: inline-block !important;
  position: relative !important;
  z-index: 2 !important;
  color: var(--text-cream) !important;
  stroke: var(--text-cream) !important;
  fill: none !important;
  stroke-width: 2px !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Background gradient backings for hover states */
.social-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s ease;
}

/* YouTube platform-specific rules */
.social-circle.sc-youtube::before {
  background: linear-gradient(135deg, #FF0000, #FF6B4A);
}
.social-circle.sc-youtube:hover {
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.45);
  transform: translateY(-6px) scale(1.08);
}

/* Instagram platform-specific rules */
.social-circle.sc-instagram::before {
  background: linear-gradient(135deg, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FCAF45);
}
.social-circle.sc-instagram:hover {
  border-color: rgba(225, 48, 108, 0.3);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.45);
  transform: translateY(-6px) scale(1.08);
}

/* Facebook platform-specific rules */
.social-circle.sc-facebook::before {
  background: linear-gradient(135deg, #1877F2, #00C6FF);
}
.social-circle.sc-facebook:hover {
  border-color: rgba(24, 119, 242, 0.3);
  box-shadow: 0 8px 24px rgba(24, 119, 242, 0.45);
  transform: translateY(-6px) scale(1.08);
}

.social-circle:hover::before {
  opacity: 1;
}

.social-circle:hover {
  color: var(--text-white);
}

.social-circle:hover i,
.social-circle:hover svg,
.social-circle:hover .sc-icon {
  color: var(--text-white) !important;
  stroke: var(--text-white) !important;
  transform: scale(1.15) rotate(5deg) !important;
}

.contact-form-panel {
  padding: 50px;
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-yellow);
}

textarea.form-control {
  resize: vertical;
}

/* Lock background scrolling when details modal is open */
html.modal-open,
body.modal-open {
  overflow: hidden;
}

/* --- Interactive Detail Modal --- */
.excursion-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
}

.excursion-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeIn 0.3s forwards ease;
}

.modal-wrapper {
  position: relative;
  width: 92%;
  max-width: 1100px;
  height: 88vh;
  background: var(--bg-dark);
  border: 1px solid var(--border-light-hover);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  z-index: 10;
  animation: modalScaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalScaleIn {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 15, 17, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close-btn:hover {
  background: var(--accent-coral);
  border-color: var(--accent-coral);
  transform: rotate(90deg) scale(1.05);
}

.modal-scroll-container {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.modal-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.modal-header-info {
  padding: 40px 80px 20px 40px; /* Right-padding (80px) stops close button collision */
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 25px;
}

.modal-header-tag-row {
  margin-bottom: 12px;
}

.modal-tag {
  background: rgba(255, 206, 0, 0.15);
  border: 1px solid rgba(255, 206, 0, 0.3);
  color: var(--primary-yellow);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-block;
}

.modal-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

/* --- Premium Stats Dashboard Card Grid --- */
.modal-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 15px;
}

.modal-quick-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-quick-stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 206, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.modal-quick-stat-card .stat-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 206, 0, 0.1);
  color: var(--primary-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.modal-quick-stat-card:hover .stat-icon-wrapper {
  background: var(--primary-yellow);
  color: var(--text-dark);
  transform: scale(1.05);
}

/* Guarantee Card gets coral colors for high trust contrast */
.modal-quick-stat-card:has(.icon-coral) .stat-icon-wrapper {
  background: rgba(255, 107, 74, 0.1);
  color: var(--accent-coral);
}

.modal-quick-stat-card:has(.icon-coral):hover .stat-icon-wrapper {
  background: var(--accent-coral);
  color: var(--text-white);
}

.modal-quick-stat-card:hover:has(.icon-coral) {
  border-color: rgba(255, 107, 74, 0.3);
}

.modal-quick-stat-card .stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modal-quick-stat-card .stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.modal-quick-stat-card .stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-white);
  line-height: 1.2;
}

.modal-body-layout {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 40px;
  padding: 20px 40px 40px 40px; /* Reduced top-padding to align beautifully with gallery bottom */
}

.modal-main-details {
  display: flex;
  flex-direction: column;
  gap: 28px; /* Tighter layout for perfect scannability */
}

.modal-desc-section h3 {
  font-size: 1.4rem;
  margin-bottom: 10px; /* Tighter heading gap */
  text-transform: uppercase;
  border-left: 4px solid var(--primary-yellow);
  padding-left: 12px;
}

.modal-description-text {
  color: var(--text-cream);
  font-size: 1.05rem;
  line-height: 1.7;
}

.modal-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.modal-section-col h3 {
  font-size: 1.15rem;
  margin-bottom: 12px; /* Tighter list header gap */
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.modal-section-col h3 i {
  color: var(--primary-yellow);
}

.modal-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px; /* Tighter list item vertical padding */
}

.modal-bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--text-cream);
}

.modal-bullets li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--primary-yellow);
  font-size: 0.9rem;
}

.modal-highlight-box {
  background: rgba(251, 225, 52, 0.04);
  border: 1px solid rgba(251, 225, 52, 0.15);
  border-radius: var(--border-radius-md);
  padding: 24px;
}

.modal-highlight-box.coral {
  background: rgba(255, 107, 74, 0.04);
  border-color: rgba(255, 107, 74, 0.15);
}

.modal-highlight-box h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-yellow {
  color: var(--primary-yellow);
}

.icon-coral {
  color: var(--accent-coral);
}

.modal-policy-box {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.modal-policy-box h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.modal-policy-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Modal Booking Widget (Sticky on side) --- */
.modal-booking-sidebar {
  position: relative;
}

.booking-widget {
  position: sticky;
  top: 100px; /* offset for header spacing */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 24px; /* Reduced from 32px to look sleeker and have more room for input values */
  display: flex;
  flex-direction: column;
  gap: 18px; /* Reduced from 22px to be more compact */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-widget:hover {
  border-color: rgba(255, 206, 0, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 206, 0, 0.05);
}

.booking-widget.has-calendar {
  position: relative !important;
  top: 0 !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  gap: 0 !important;
}

/* Bokun calendar iframe container - responsive height */
#bokunCalendarContainer {
  min-height: 480px;
  height: auto;
}

/* WhatsApp Form Tab Spacings */
.whatsapp-form-container {
  display: flex;
  flex-direction: column;
  gap: 18px; /* Consistent gap between form elements */
}

.whatsapp-form-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 2px;
}

.whatsapp-form-header h3 {
  margin: 0 !important;
}

.whatsapp-form-header .widget-subtitle {
  margin: 0 !important;
}

.whatsapp-form-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Tight, clean margin between CTA buttons */
  margin-top: 4px;
}

.booking-widget h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.widget-subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.widget-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget-field label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.widget-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 14px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.widget-input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.45);
  border-color: var(--primary-yellow);
  box-shadow: 0 0 12px rgba(255, 206, 0, 0.15);
}

.people-counter {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.people-counter:focus-within {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 12px rgba(255, 206, 0, 0.15);
  background: rgba(0, 0, 0, 0.45);
}

.people-counter button {
  background: transparent;
  color: var(--text-white);
  border: none;
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.people-counter button:hover {
  background: rgba(255, 206, 0, 0.1);
  color: var(--primary-yellow);
}

.counter-input {
  flex: 1;
  text-align: center;
  border: none;
  background: transparent;
  padding: 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-white);
}

.widget-disclaimer {
  font-size: 0.78rem;
  color: var(--text-cream);
  background: rgba(255, 206, 0, 0.05);
  border: 1px dashed rgba(255, 206, 0, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  line-height: 1.45;
  font-weight: 600;
}

/* --- Footer --- */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.footer-brand-desc {
  color: var(--text-muted);
  max-width: 480px;
  font-size: 0.95rem;
}

.footer-column h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-yellow);
  margin-bottom: 24px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-yellow);
  transform: translateX(4px);
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-text strong {
  color: var(--text-white);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Responsive Adjustments & Media Queries --- */
@media (max-width: 1024px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
  .contact-info-panel {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 40px;
  }
  .contact-form-panel {
    padding: 40px;
  }
  .modal-body-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .booking-widget {
    position: relative;
  }
}

/* --- Floating WhatsApp Widget (FAB) --- */
.whatsapp-fab {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--text-white);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-4px);
  background: #20BA56;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-fab-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-fab-icon i {
  width: 100%;
  height: 100%;
}

/* Tooltip on Hover */
.whatsapp-fab-tooltip {
  position: absolute;
  right: 76px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light-hover);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-smooth);
}

.whatsapp-fab-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(15, 15, 17, 0.9);
}

.whatsapp-fab:hover .whatsapp-fab-tooltip,
.whatsapp-fab.prompt-active .whatsapp-fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Modal Sticky Bottom Booking Bar (Hidden on desktop) */
.modal-mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .section-container {
    padding: 60px 16px;
  }
  .hero-container {
    padding: 60px 16px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  /* Full screen modal layout on mobile devices */
  .modal-wrapper {
    width: 100% !important;
    height: 100% !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
  }

  .modal-scroll-container {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  /* Fixed premium close button inside full viewport view */
  .modal-close-btn {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    width: 42px !important;
    height: 42px !important;
    background: rgba(10, 10, 12, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    z-index: 260 !important; /* must stay on top of header and sticky bars */
  }

  .modal-close-btn:hover {
    transform: rotate(90deg) scale(1.05) !important;
  }

  /* Header Padding to prevent title text overlap with the close button */
  .modal-header-info {
    padding: 20px 70px 12px 20px !important; /* Reduced padding for cleaner mobile header spacing */
  }

  .modal-quick-stats {
    grid-template-columns: 1fr !important; /* Stack stats cards vertically on small viewports */
    gap: 10px !important; /* Reduced from 12px */
  }

  .modal-quick-stat-card {
    padding: 10px 12px !important; /* Reduced card padding */
    gap: 10px !important;
  }

  .modal-gallery-showcase {
    padding: 0 20px !important; /* Reduced outer horizontal padding */
    margin-bottom: 16px !important;
  }
  .modal-gallery-main {
    height: 260px;
  }
  .modal-thumbnail-item {
    width: 75px;
    height: 50px;
  }
  
  .modal-main-details {
    gap: 20px !important; /* Reduced section gaps on mobile to save vertical scrolling */
  }

  .modal-body-layout {
    padding: 16px 20px 100px 20px !important; /* Reduced padding-top to bring gallery closer to description, and padded sides */
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Responsive FAB for mobile */
  .whatsapp-fab {
    bottom: 90px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-fab-tooltip {
    display: none;
  }

  /* Immersive fixed sticky booking bar for mobile viewports */
  .modal-mobile-sticky-bar {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: rgba(10, 10, 12, 0.85) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 12px 24px !important;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    height: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 250 !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8) !important;
  }

  .sticky-bar-price {
    display: flex;
    flex-direction: column;
  }

  .sticky-price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .sticky-price-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1.1;
  }

  .sticky-bar-btn {
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
    border-radius: var(--border-radius-sm) !important;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.02em;
    overflow: visible !important; /* Ensure the GPU pseudo-element pulse scales cleanly */
  }

  .sticky-bar-btn:hover {
    background: #20BA56 !important;
  }

  /* Bokun "Book Online" sticky bar variant */
  .sticky-bar-btn.btn-primary:hover {
    background: var(--primary-yellow) !important;
    filter: brightness(1.05);
  }

  /* Bokun calendar on mobile: full width, tall enough to be usable */
  #bokunCalendarContainer {
    min-height: 550px !important;
    height: auto;
  }

  /* Hide main WhatsApp floating widget when the excursion modal is active to prevent overlapping with sticky elements */
  .excursion-modal.active ~ .whatsapp-fab {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.8);
  }
}

/* --- Modal Photo Slider --- */
/* --- Modal Premium Image Gallery & Thumbnails --- */
.modal-gallery-showcase {
  padding: 0 40px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

.modal-gallery-main {
  position: relative;
  height: 420px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.modal-slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.modal-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.modal-slide.active {
  opacity: 1;
  z-index: 2;
}

.modal-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.modal-slide.active img {
  transform: scale(1.03);
}

.modal-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 11, 12, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; /* Hidden by default, fades in on hover */
}

.modal-gallery-main:hover .modal-slide-arrow {
  opacity: 1;
}

.modal-slide-arrow:hover {
  background: var(--primary-yellow);
  color: var(--text-dark);
  border-color: var(--primary-yellow);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 15px rgba(255, 206, 0, 0.4);
}

.prev-slide {
  left: 20px;
}

.next-slide {
  right: 20px;
}

.modal-thumbnails-strip {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  position: relative;
}

.modal-thumbnails-strip::-webkit-scrollbar {
  height: 5px;
}

.modal-thumbnails-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

.modal-thumbnail-item {
  width: 90px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
  flex-shrink: 0;
}

.modal-thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.modal-thumbnail-item:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.modal-thumbnail-item:hover img {
  transform: scale(1.08);
}

.modal-thumbnail-item.active {
  border-color: var(--primary-yellow);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 206, 0, 0.2);
}

/* --- Safety & Accessibility Section --- */
.modal-accessibility-section {
  margin-top: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-accessibility-section h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-yellow);
  text-transform: uppercase;
}

.accessibility-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.accessibility-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(15, 15, 17, 0.4);
  border: 1px solid var(--border-light);
  padding: 14px 16px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
}

.accessibility-badge-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-sm);
  background: rgba(251, 225, 52, 0.1);
  color: var(--primary-yellow);
  flex-shrink: 0;
}

.badge-icon.alert-icon {
  background: rgba(255, 107, 74, 0.1);
  color: var(--accent-coral);
}

.badge-icon.success-icon {
  background: rgba(10, 210, 196, 0.1);
  color: var(--accent-teal);
}

.badge-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-text {
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 500;
}

/* ==========================================================================
   PRIME RENTALS STYLES
   ========================================================================= */
#rentals {
  position: relative;
  overflow: hidden;
}

#rentalsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.rental-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.rental-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.4);
}

.rental-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.rental-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.rental-card:hover .rental-image {
  transform: scale(1.08);
}

.rental-provider-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(11, 11, 12, 0.75);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rental-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.rental-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
}

.rental-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.rental-spec-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.rental-spec-item i {
  width: 14px;
  height: 14px;
  color: var(--primary-yellow);
}

.rental-price-tiers {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin: 10px 0;
}

.rental-price-tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}

.rental-price-tier-row:last-child {
  border-bottom: none;
}

.rental-price-tier-name {
  color: var(--text-muted);
  font-weight: 600;
}

.rental-price-tier-val {
  color: var(--primary-yellow);
  font-weight: 700;
  font-size: 0.95rem;
}

.rental-footer {
  border-top: 1px solid var(--border-light);
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.rental-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}

.rental-note i {
  width: 13px;
  height: 13px;
  color: var(--accent-coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-rental-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-rental-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: white;
}

/* --- Rental Duration Selector --- */
.rental-duration-container {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rental-duration-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.rental-select-wrapper {
  position: relative;
  width: 100%;
}

.rental-duration-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 10px 14px;
  padding-right: 36px;
  color: var(--text-white);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rental-duration-select:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.2);
}

.rental-duration-select:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 10px rgba(255, 206, 0, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.rental-duration-select option {
  background: #121216; /* matches the dark theme card background */
  color: var(--text-white);
  padding: 10px;
}

.rental-select-wrapper .select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.8rem;
  pointer-events: none;
  transition: color 0.3s ease;
}

.rental-duration-select:focus + .select-chevron {
  color: var(--primary-yellow);
}

/* --- Booking Selector Tabs (Segmented Control style) --- */
.booking-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
  gap: 4px;
}

.booking-tabs .tab-btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  background: transparent;
  color: var(--text-muted);
  border: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-tabs .tab-btn:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
}

.booking-tabs .tab-btn.active {
  background: var(--primary-yellow) !important;
  color: var(--text-dark) !important;
  box-shadow: 0 4px 12px rgba(255, 206, 0, 0.25);
}

/* ==========================================================================
   BANANA LIFE CMS PANEL STYLING (GLASSMORPHIC ADMIN INTERFACES)
   ========================================================================== */

/* Auth Gate Modal */
.cms-auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 6, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  animation: cmsFadeIn 0.3s ease forwards;
}

.cms-auth-box {
  width: 90%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  animation: cmsScaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cms-auth-box h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.cms-auth-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.cms-auth-box input[type="password"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 14px 18px;
  color: var(--text-white);
  font-size: 1.1rem;
  text-align: center;
  font-family: monospace;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.cms-auth-box input[type="password"]:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 12px rgba(255, 206, 0, 0.15);
}

.cms-auth-buttons {
  display: flex;
  gap: 12px;
}

.btn-cms {
  flex: 1;
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-cms-cancel {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-cream);
  border: 1px solid var(--border-light);
}

.btn-cms-cancel:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
}

.btn-cms-submit {
  background: var(--primary-yellow);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(255, 206, 0, 0.2);
}

.btn-cms-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 206, 0, 0.35);
}

.cms-auth-error {
  color: var(--accent-coral);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  height: 20px;
}

/* Floating Dashboard Overlay */
.cms-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 6, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 450;
  animation: cmsFadeIn 0.3s ease forwards;
}

.cms-panel-box {
  width: 94%;
  max-width: 900px;
  height: 85vh;
  background: rgba(18, 18, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  animation: cmsScaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cms-panel-header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 12, 0.4);
}

.cms-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.cms-logo-area span {
  background: linear-gradient(135deg, #fff, #bbb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cms-header-actions {
  display: flex;
  gap: 12px;
}

.btn-cms-export {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
}

.btn-cms-export:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-yellow);
}

.btn-cms-close {
  background: rgba(255, 107, 74, 0.1);
  color: var(--accent-coral);
  border: 1px solid rgba(255, 107, 74, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
}

.btn-cms-close:hover {
  background: var(--accent-coral);
  color: var(--text-white);
  border-color: var(--accent-coral);
}

.cms-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
}

.cms-panel-body::-webkit-scrollbar {
  width: 6px;
}

.cms-panel-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}

.cms-intro-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 780px;
  background: rgba(255,255,255,0.01);
  border-left: 3px solid var(--primary-yellow);
  padding: 12px 18px;
  border-radius: 0 6px 6px 0;
}

.cms-categories-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cms-category-section {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.cms-cat-header {
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 20px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--primary-yellow);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cms-category-excursions-list {
  display: flex;
  flex-direction: column;
  divide-y: 1px solid rgba(255, 255, 255, 0.04);
}

.cms-excursion-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}

.cms-excursion-row:last-child {
  border-bottom: none;
}

.cms-excursion-row:hover {
  background: rgba(255, 255, 255, 0.015);
}

.cms-exc-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cms-exc-title {
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.95rem;
}

.cms-exc-id {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
}

.cms-exc-controls {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Custom CSS Toggle Switch */
.cms-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.cms-toggle-label input[type="checkbox"] {
  display: none;
}

.cms-toggle-design {
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}

.cms-toggle-design::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #bbb;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s;
}

.cms-toggle-label input[type="checkbox"]:checked + .cms-toggle-design {
  background: rgba(37, 211, 102, 0.15);
  border-color: #25D366;
}

.cms-toggle-label input[type="checkbox"]:checked + .cms-toggle-design::after {
  transform: translateX(20px);
  background: #25D366;
}

.cms-toggle-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-cream);
}

.cms-toggle-label input[type="checkbox"]:checked ~ .cms-toggle-text {
  color: #25D366;
}

/* Price Editor input */
.cms-price-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cms-price-input {
  width: 90px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  padding: 8px 12px;
  color: var(--primary-yellow);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.cms-price-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary-yellow);
}

/* Code Exporter Modal overlay */
.cms-export-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 6, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 550;
  animation: cmsFadeIn 0.3s ease forwards;
}

.cms-export-box {
  width: 92%;
  max-width: 720px;
  background: rgba(20, 20, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  animation: cmsScaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cms-export-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cms-export-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--text-white);
}

.cms-export-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cms-export-close:hover {
  color: var(--accent-coral);
}

.cms-export-box p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cms-export-box code {
  color: var(--primary-yellow);
  font-weight: 600;
}

.cms-export-box textarea {
  width: 100%;
  height: 300px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 18px;
  color: #bbb;
  font-family: monospace;
  font-size: 0.82rem;
  line-height: 1.5;
  resize: none;
}

.cms-export-box textarea:focus {
  outline: none;
}

.cms-export-footer {
  display: flex;
  justify-content: flex-end;
}

.btn-cms-copy {
  background: var(--primary-yellow);
  color: var(--text-dark);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 206, 0, 0.2);
  width: 200px;
}

.btn-cms-copy:hover {
  box-shadow: 0 6px 20px rgba(255, 206, 0, 0.35);
}

/* Animations */
@keyframes cmsFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cmsScaleIn {
  from { transform: scale(0.95) translateY(12px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .cms-panel-box {
    height: 95vh;
  }
  .cms-panel-header {
    padding: 16px 20px;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    text-align: center;
  }
  .cms-logo-area {
    justify-content: center;
  }
  .cms-header-actions {
    justify-content: center;
  }
  .cms-panel-body {
    padding: 20px;
  }
  .cms-excursion-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
  .cms-exc-controls {
    width: 100%;
    justify-content: space-between;
  }
}

/* --- SEO Category Descriptions Section --- */
.category-seo-section {
  margin-top: 80px;
  border-top: 1px solid var(--border-light);
  padding-top: 60px;
}

.category-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.category-seo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: var(--transition-bounce);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.category-seo-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-yellow);
  box-shadow: 0 10px 30px rgba(251, 225, 52, 0.05);
}

.category-seo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-yellow-glow);
  color: var(--primary-yellow);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-seo-title {
  font-size: 1.4rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.category-seo-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.category-seo-faq {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--accent-coral);
  padding: 12px 16px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.category-seo-faq-q {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.category-seo-faq-a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Blog Page Styles --- */
.blog-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-bounce);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-yellow);
  box-shadow: 0 10px 30px rgba(251, 225, 52, 0.05);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* --- Article Detail Page Styles --- */
.article-container {
  max-width: 800px;
  margin: 120px auto 80px;
  padding: 0 24px;
}

.article-header {
  margin-bottom: 40px;
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
}

.article-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.article-banner {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  margin-bottom: 40px;
  border: 1px solid var(--border-light);
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-cream);
}

.article-content p {
  margin-bottom: 24px;
}

.article-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--text-white);
}

.article-content h3 {
  font-size: 1.4rem;
  margin: 30px 0 16px;
  color: var(--text-white);
}

.article-content ul, .article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content blockquote {
  border-left: 4px solid var(--primary-yellow);
  padding-left: 20px;
  font-style: italic;
  color: var(--text-white);
  margin: 30px 0;
  background: rgba(251, 225, 52, 0.03);
  padding: 20px;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

/* ==========================================================================
   TRUST FEATURES SECTION (WHY CHOOSE US)
   ========================================================================== */
.trust-features-section {
  position: relative;
  background: var(--bg-dark);
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
  overflow: hidden;
}

/* Subtle background glowing orbs to keep visual excellence premium */
.trust-features-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 225, 52, 0.03) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

.trust-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.trust-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 206, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 206, 0, 0.05);
}

.trust-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background: rgba(251, 225, 52, 0.08);
  color: var(--primary-yellow);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-feature-card:hover .trust-icon-wrapper {
  transform: scale(1.12) rotate(8deg);
  background: var(--primary-yellow);
  color: var(--text-dark);
  box-shadow: 0 8px 25px rgba(255, 206, 0, 0.35);
}

.trust-icon-wrapper i {
  width: 26px;
  height: 26px;
}

.trust-feature-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
}

.trust-feature-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- Trust Modal Styles --- */
.trust-modal-style .modal-wrapper {
  max-width: 650px !important;
  background: rgba(18, 18, 22, 0.96) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 30px rgba(251, 225, 52, 0.05) !important;
}

.trust-modal-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 10px 40px 30px 40px;
}

@media (max-width: 768px) {
  .trust-modal-content {
    padding: 10px 20px 20px 20px;
  }
}

.trust-modal-section {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.trust-modal-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  background: rgba(251, 225, 52, 0.08);
  color: var(--primary-yellow);
  flex-shrink: 0;
}

.trust-modal-icon-wrap i {
  width: 22px;
  height: 22px;
}

.trust-modal-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust-modal-text h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.trust-modal-text p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-cream);
  margin: 0;
}

.trust-modal-footer {
  display: flex;
  justify-content: center;
  padding: 0 40px 40px 40px;
}

@media (max-width: 768px) {
  .trust-modal-footer {
    padding: 0 20px 30px 20px;
  }
}

/* Nav Item highlight */
.highlight-nav-item {
  color: var(--primary-yellow) !important;
  font-weight: 700 !important;
}

.highlight-nav-item:hover {
  text-shadow: 0 0 10px rgba(251, 225, 52, 0.4);
}

/* Booking widget trust link */
.widget-trust-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-yellow);
  text-decoration: none;
  margin: 12px 0 6px 0;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.widget-trust-link:hover {
  color: var(--text-white);
  transform: translateY(-1px);
}

.sidebar-trust-link:hover {
  color: var(--text-white) !important;
}

/* Header Bokun Cart Widget Wrapper */
#headerBokunCart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

/* Modern Rendering Optimizations (Core Web Vitals Boost) */
.testimonials, .contact-section, .faq-section, .category-seo-section, .trust-features-section {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

/* Premium Entrance Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.excursion-card, .trust-feature-card, .category-seo-card, .rental-card {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Staggered card animation delays */
.excursion-card:nth-child(1), .rental-card:nth-child(1) { animation-delay: 0.05s; }
.excursion-card:nth-child(2), .rental-card:nth-child(2) { animation-delay: 0.1s; }
.excursion-card:nth-child(3), .rental-card:nth-child(3) { animation-delay: 0.15s; }
.excursion-card:nth-child(4), .rental-card:nth-child(4) { animation-delay: 0.2s; }
.excursion-card:nth-child(5), .rental-card:nth-child(5) { animation-delay: 0.25s; }
.excursion-card:nth-child(6), .rental-card:nth-child(6) { animation-delay: 0.3s; }

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 380px;
  width: calc(100% - 48px);
  background: rgba(15, 15, 17, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cookie-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.cookie-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-cream);
}

.cookie-text strong {
  color: var(--text-white);
}

.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cookie-btn-accept {
  background: var(--primary-yellow);
  color: var(--text-dark);
  border: 1px solid var(--primary-yellow);
  box-shadow: 0 4px 12px var(--primary-yellow-glow);
}

.cookie-btn-accept:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 576px) {
  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    padding: 16px;
  }
}





