/* Map Path Animation */
.tour-path-animated {
  stroke-dasharray: 10, 15;
  stroke-dashoffset: 0;
  animation: dash-move 20s linear infinite;
  stroke-linecap: round;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
}

/* Boat Marker Animation */
.boat-marker-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  width: 48px !important;
  height: 48px !important;
  box-shadow: none !important;
  border: none !important;
  z-index: 1000;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.boat-wave-container {
  width: 100%;
  height: 100%;
  animation: boat-wave 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boat-marker-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes boat-wave {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  25% {
    transform: translateY(-3px) rotate(-3deg);
  }

  75% {
    transform: translateY(3px) rotate(3deg);
  }
}

/* Ambient Audio Toggle */
.ambient-audio-toggle {
  background: var(--white);
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  color: var(--primary);
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 1000;
}

.ambient-audio-toggle:hover {
  background: var(--bg-light);
  transform: scale(1.05);
}

.ambient-audio-toggle.active {
  background: var(--primary);
  color: var(--white);
}

@keyframes dash-move {
  from {
    stroke-dashoffset: 500;
  }

  to {
    stroke-dashoffset: 0;
  }
}

/* Turquoise Theme Variables */
:root {
  --primary: #008B8B;
  /* Dark Cyan */
  --secondary: #00CED1;
  /* Dark Turquoise */
  --accent: #30D5C8;
  /* Turquoise */
  --accent-soft: #40E0D0;
  /* Turquoise */
  --surface: #F0FDFA;
  /* Very light teal/cyan for readable content */
  /* Cadet Blue is too dark for the main background. We'll use a very light tone of the palette so it's friendly */
  --text-dark: #0A2342;
  --text-main: #2C3E50;
  --text-light: #7F8C8D;
  --white: #FFFFFF;
  --border-radius: 16px;
  --card-radius: 20px;
  --shadow-sm: 0 4px 12px rgba(10, 35, 66, 0.05);
  --shadow-md: 0 10px 24px rgba(10, 35, 66, 0.08);
  --shadow-lg: 0 24px 48px rgba(10, 35, 66, 0.12);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(10, 35, 66, 0.05);
  --shadow-md: 0 10px 24px rgba(10, 35, 66, 0.08);
  --shadow-lg: 0 24px 48px rgba(10, 35, 66, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--surface);
  color: var(--text-main);
  line-height: 1.6;
}

/* Header / Navbar Redesign */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 5%;
  /* NARROWER PADDING */
  background: rgba(0, 139, 139, 0.75);
  /* Less transparent blue/cyan */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img {
  height: 85px;
  /* LARGER LOGO */
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  /* contrast against gradient */
}

.logo a:hover img {
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  /* Dark text against white background */
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--white);
  /* underline color */
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Language Switcher Styling */
.lang-dropdown-container {
  position: relative;
  list-style: none;
}

.custom-lang-switcher {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.selected-lang {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 50px;
  justify-content: center;
  transition: var(--transition);
}

.selected-lang:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.selected-lang img {
  width: 24px;
  height: auto;
  border-radius: 2px;
}

.lang-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 2000;
}

.custom-lang-switcher.active .lang-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-options li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
  list-style: none;
  margin-bottom: 2px;
}

.lang-options li:hover {
  background: rgba(0, 139, 139, 0.1);
  color: var(--primary);
}

.lang-options li img {
  width: 22px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  /* Dark toggle */
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1100;
}

@media (max-width: 991px) {
  .navbar {
    padding: 1rem 5%;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1090;
    padding-top: 80px;
  }

  .nav-container.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    align-items: flex-start;
  }

  .desktop-only {
    display: none !important;
  }
}

select#lang-switcher {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  /* dark text */
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

select#lang-switcher option {
  color: #333;
  /* dark text when opened */
}

select#lang-switcher:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  background: var(--secondary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 85vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect - disabled on mobile (not supported on iOS) */
}

@media (max-width: 991px) {
  .hero {
    background-attachment: scroll;
  }
}

/* Add a gradient overlay directly in CSS so we don't have to hardcode it in HTML */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 35, 66, 0.6) 0%, rgba(10, 35, 66, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  font-weight: 300;
  letter-spacing: 0.5px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .hero {
    height: 60vh!important;
  }

  .hero-content h1 {
    font-size: 2.5rem!important;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem!important;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 13px!important;
    letter-spacing: 0.5px;
  }

  .hero-content p {
    font-size: 9px !important;
  }
}

/* hero-content-h1 default desktop size */
.hero-content-h1 {
  font-size: 3.5rem;
}

@media (max-width: 576px) {
  .hero-content-h1 {
    font-size: 1.6rem !important;
    letter-spacing: 0.5px;
    line-height: 1.25;
  }
}

/* Booking Calendar Widget */
.booking-widget {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--white);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin: -100px auto 5rem auto;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

@media (max-width: 991px) {
  .booking-widget {
    grid-template-columns: 1fr;
    margin: -40px 1rem 3rem 1rem;
    padding: 1.5rem;
  }
}

.calendar-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calendar-header {
  background: var(--primary);
  color: var(--white);
  padding: 1.2rem;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  text-align: center;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 1px;
}

.calendar-header i {
  cursor: pointer;
  padding: 0 0.5rem;
  transition: opacity 0.2s;
}

.calendar-header i:hover {
  opacity: 0.7;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  padding: 1.2rem;
  text-align: center;
  background: var(--white);
  border-radius: 0 0 var(--card-radius) var(--card-radius);
  border: 1px solid rgba(10, 35, 66, 0.05);
  border-top: none;
}

/* Booking Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group label i {
  color: var(--primary);
}

.form-group select,
.form-group input {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1.5px solid #eee;
  font-size: 1rem;
  color: var(--text-main);
  background-color: #fcfdfe;
  transition: var(--transition);
  outline: none;
}

.form-group select:focus,
.form-group input:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 105, 148, 0.1);
}

/* Day-of-week headers */
.calendar-grid>div:nth-child(-n+7) {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calendar-day {
  /*padding: 6px 4px;*/
  border-radius: 8px;
  cursor: default;
  transition: var(--transition);
  font-size: 0.85rem;
  line-height: 1.2;
  min-height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calendar-day.other-month {
  color: #ccc;
}

.calendar-day.today {
  border: 2px solid var(--secondary);
  font-weight: 700;
}

/* ── Available date (has a tour selected and date is free) */
.calendar-day.available {
  background: rgba(79, 157, 166, 0.08);
  cursor: pointer;
  border: 1px solid rgba(79, 157, 166, 0.25);
  gap: 1px;
}

.calendar-day.available:hover {
  background: rgba(79, 157, 166, 0.2);
  transform: scale(1.05);
}

.day-price {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 1px 3px;
  border-radius: 3px;
  line-height: 1.2;
}

.day-price.normal {
  color: #1a6fb5;
  background: rgba(26, 111, 181, 0.1);
}

.day-price.discounted {
  color: #c0392b;
  background: rgba(192, 57, 43, 0.1);
  text-decoration: line-through;
}

.day-price.new-price {
  color: #c0392b;
  background: rgba(192, 57, 43, 0.12);
  font-weight: 700;
}

.calendar-day.active {
  background: var(--primary) !important;
  color: var(--white) !important;
}

.calendar-day.active .day-price.normal {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ── Unavailable / past date */
.calendar-day.unavailable {
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.45;
}

.calendar-day.unavailable:hover {
  background: none;
}

/* ── Date info bar (shows after clicking an available date) */
#date-info-bar {
  background: var(--primary);
  border-radius: var(--border-radius);
  padding: 0.9rem 1.2rem;
  color: var(--white);
  animation: fadeInUp 0.3s ease;
}

.date-info-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

#date-info-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.price-highlight {
  font-size: 1.3rem;
  font-weight: 800;
}

.price-highlight small {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.85;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── BOOK button: ready state (tour + date selected) */
#search-tours-btn.btn-ready {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
  animation: pulseGreen 1.5s ease infinite;
}

@keyframes pulseGreen {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
  }

  50% {
    box-shadow: 0 6px 28px rgba(39, 174, 96, 0.7);
  }
}

/* ── Calendar pulse hint (when tour selected but no date clicked yet) */
.calendar-container.pulse-hint {
  animation: pulseOrange 0.4s ease 3;
}

@keyframes pulseOrange {

  0%,
  100% {
    box-shadow: none;
  }

  50% {
    box-shadow: 0 0 0 4px rgba(255, 179, 71, 0.6);
  }
}


.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

/* Sections */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--accent);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 4rem 2rem; */
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.category-card {
  height: 320px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 35, 66, 0.9) 0%, rgba(10, 35, 66, 0.2) 50%, rgba(10, 35, 66, 0.1) 100%);
  z-index: 1;
  transition: var(--transition);
}

.category-card h3 {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  margin: 0;
  padding: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
  background: linear-gradient(to top, rgba(10, 35, 66, 0.95) 0%, rgba(10, 35, 66, 0.4) 50%, rgba(10, 35, 66, 0.2) 100%);
}

.category-card:hover h3 {
  transform: translateY(0);
  color: var(--accent-soft);
}

.category-icon {
  display: none;
}

/* Featured Tours Carousel */
.tours-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.tours-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 1rem 5px 2rem 5px;
  /* bottom padding for shadow */
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tours-carousel::-webkit-scrollbar {
  display: none;
}

.tour-card {
  min-width: 320px;
  max-width: 350px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }

  /* Rely on touch scrolling for mobile */
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.tour-image {
  height: 200px;
  background-color: #ddd;
  /* Placeholder */
  background-size: cover;
  background-position: center;
}

.tour-content {
  padding: 1.5rem;
}

.tour-content h3 {
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.tour-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.tour-old-price {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

/* --- NEW TOURS.PHP REDESIGN --- */
.tour-hero-section {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/media/tour.PNG');
  background-size: cover;
  background-position: center;
  width: 100%;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
  background-color: #000;
}

.about-hero {
  background-image: linear-gradient(rgba(10, 35, 66, 0.3), rgba(10, 35, 66, 0.5)), url('/assets/media/2.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.tour-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 5;
  padding: 0 10%;
  pointer-events: none;
  /* Let clicks pass to carousel controls if needed, but we'll adjust */
}

.tour-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.td-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* Tour Carousel */
.tour-carousel-wrapper {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.tour-image-slide {
  height: 50vh;
  min-height: 400px;
  max-height: 600px;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 8%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-carousel-wrapper:hover .carousel-control-prev,
.tour-carousel-wrapper:hover .carousel-control-next {
  opacity: 1;
}

/* Why Choose Us Section */
.why-choose-section {
  position: relative;
  padding: 6rem 0;
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
}

.why-choose-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/media/home-bg.PNG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.35;
  z-index: 1;
  filter: blur(6px);
  transform: scale(1.05);
  /* prevents blur edge artifacts */
}

.why-choose-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.why-choose-title {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
}

.modern-outline-text {
  font-size: 5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: 5px;
  margin-bottom: -1.5rem;
  z-index: 0;
}

.title-solid {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-soft);
  z-index: 1;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.why-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  border-radius: var(--card-radius);
  text-align: center;
  transition: var(--transition);
}

.why-feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: var(--transition);
}

.why-feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent-soft);
}

.why-feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--white);
}

.why-feature-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.td-section {
  margin-bottom: 2.5rem;
}

.td-section-title {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(79, 157, 166, 0.2);
}

.tour-description-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
}

.modern-map-container {
  border: 1px solid #ebebeb;
}

/* Sidebar / Booking Card */
.tour-sidebar-column {
  position: relative;
}

.booking-widget-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
  /* Sticky offset */
  z-index: 10;
}

.bwc-price-header {
  margin-bottom: 1.5rem;
}

.bwc-price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.bwc-price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.bwc-price-unit {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.bwc-divider {
  border-color: rgba(0, 0, 0, 0.08);
  margin: 1.5rem 0;
}

.bwc-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}

.compact-calendar .calendar-grid {
  padding: 0.5rem;
}

.compact-calendar .calendar-day {
  min-height: 32px;
  font-size: 0.8rem;
}

.bwc-book-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bwc-book-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.bwc-guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .tour-content-grid {
    grid-template-columns: 1fr;
  }

  .tour-sidebar-column {
    order: -1;
    /* Move booking card above description on mobile */
  }

  .booking-widget-card {
    position: static;
  }

  .td-title {
    font-size: 2.2rem;
  }

  .tour-image-slide {
    height: 40vh;
    min-height: 300px;
  }
}

/* Footer */
/* Footer */


/* Footer Redesign */
.footer {
  background: var(--white);
  /* White Background */
  color: var(--text-main);
  padding: 2.5rem 0 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.03);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-content .footer-section:nth-child(1),
  .footer-content .footer-section:nth-child(2) {
    grid-column: span 2;
    padding-left: 15px;
    /* Added padding from the left */
  }

  /* Align logo and tagline in one row on mobile */
  .footer-content .footer-section:nth-child(1) {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    /* Allow wrapping if text is too long */
  }

  .footer-content .footer-section:nth-child(1) img {
    margin-bottom: 0 !important;
  }

  .footer-content .footer-section:nth-child(1) .footer-tagline {
    margin-top: 0 !important;
    max-width: 200px;
    /* Limit width to keep it neat next to logo */
  }

  .footer-content .footer-section:nth-child(3),
  .footer-content .footer-section:nth-child(4) {
    grid-column: span 1;
    padding-left: 15px;
    /* Added padding for consistency */
  }
}


.footer-section h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-main);
}

.contact-list i {
  margin-right: 0.5rem;
  color: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-column i {
  width: 20px;
  text-align: center;
  margin-right: 0.8rem;
  color: var(--primary);
  font-size: 1.1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: var(--secondary);
  color: var(--accent);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Why Choose Us & Reviews Styles */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.feature-item h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.bg-light-soft {
  background: #f8fbff;
}

.border-radius-20 {
  border-radius: 20px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.stars {
  color: #ffc107;
  font-size: 1.25rem;
}

.reviews-count {
  color: var(--text-light);
  font-size: 0.9rem;
}

.btn-outline-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.reviewer-name {
  font-weight: 700;
  color: var(--accent);
}

.stars-small {
  color: #ffc107;
  font-size: 0.85rem;
}

.review-text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Utilities */
[data-i18n] {
  transition: opacity 0.3s;
}

/* ── Google Reviews Section ── */
.reviews-section {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2.5rem;
  text-align: center;
}

.reviews-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4285F4;
  box-shadow: var(--shadow-sm);
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.big-score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stars-row i {
  color: #FBBC05;
  font-size: 1.1rem;
}

.review-count {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.2rem;
  display: block;
}

/* Carousel wrapper */
.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.reviews-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding: 1rem 5px 2rem 5px;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ── Why Choose Us Section ── */
.why-choose-section {
  position: relative;
  padding: 6rem 0;
  margin: 4rem 0;
  background-image: url('../images/media/about.PNG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}

.why-choose-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(42, 75, 92, 0.9) 0%, rgba(79, 157, 166, 0.85) 100%);
  z-index: 1;
}

.why-choose-container {
  position: relative;
  z-index: 2;
}

.why-choose-title {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modern-outline-text {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  letter-spacing: 5px;
  line-height: 1;
  margin-bottom: -1rem;
  opacity: 0.8;
}

.title-solid {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.why-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .why-features {
    grid-template-columns: 1fr;
  }
}

.why-feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.why-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 179, 71, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.why-feature-card:hover .feature-icon {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.1);
}

.why-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.why-feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media (max-width: 768px) {
  .modern-outline-text {
    font-size: 2.5rem;
  }

  .title-solid {
    font-size: 1.75rem;
  }
}

/* ── FAQ Section ── */
.faq-section {
  padding-top: 4rem;
  padding-bottom: 5rem;
  max-width: 850px;
  margin: 0 auto;
}

.faq-section .section-title {
  margin-bottom: 3rem;
  font-weight: 800;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(79, 157, 166, 0.4);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: var(--white);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  color: var(--primary);
  padding-bottom: 1rem;
}

.faq-question i {
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(79, 157, 166, 0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  background: var(--primary);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  background: var(--white);
}

.faq-item.active .faq-answer {
  /* Using a large max-height allows dynamic height animation */
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

/* Review Card */
.review-card {
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eef2f5;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modern-map-container {
  height: 500px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .modern-map-container {
    flex-direction: row;
  }
}

#tourMap {
  flex: 1;
  height: 100%;
  min-height: 300px;
  z-index: 1;
}

/* Itinerary List Styles */
.itinerary-panel {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #eaeaea;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .itinerary-panel {
    width: 350px;
    border-top: none;
    border-left: 1px solid #eaeaea;
  }
}

/* Mobile layout tweaks for map + itinerary */
@media (max-width: 768px) {
  .modern-map-container {
    height: auto;
    overflow-x: hidden;
  }

  #tourMap {
    min-height: 260px;
    height: 260px;
  }

  .itinerary-panel {
    border-top: 1px solid #eaeaea;
    max-height: none;
    overflow-y: visible;
  }
}

.itinerary-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #efefef;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.itinerary-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

/* Premium Itinerary List Styles */
.itinerary-list {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.itinerary-item {
  display: flex;
  gap: 1.25rem;
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  background: transparent;
}

.itinerary-item:hover {
  opacity: 0.8;
}

.itinerary-item.active .itinerary-content {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 8px;
  margin: -8px;
}

/* Connecting Line */
.itinerary-item:not(:last-child)::after {
  content: '⋮';
  position: absolute;
  left: 0.6rem;
  top: 1.8rem;
  color: #e53935;
  font-size: 1.2rem;
  line-height: 0.8;
  letter-spacing: 2px;
  font-weight: 900;
  z-index: 1;
}

/* Base Icon Container */
.itinerary-icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  z-index: 2;
  margin-top: 0.1rem;
}

/* Stop Point (Boat Icon) */
.itinerary-item .itinerary-icon {
  background: #eef2f6;
  color: #333;
}

/* Highlighted Points (Start/End - Red) */
.itinerary-item.highlight-point .itinerary-icon {
  background: #e53935;
  color: #fff;
}

.itinerary-content {
  flex: 1;
  padding-bottom: 0.5rem;
  transition: all 0.2s ease;
}

.itinerary-content h5 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
}

.itinerary-content p {
  margin: 0;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.3;
}

.itinerary-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 0.5rem;
  display: none;
}

.itinerary-item.active .itinerary-image {
  display: block;
}

/* Small gallery link under each itinerary item */
.itinerary-gallery-link {
  margin-top: 0.4rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.itinerary-gallery-link i {
  font-size: 0.75rem;
}

.itinerary-gallery-link:hover {
  color: var(--accent);
}

/* Contact card under booking (tours.php) */
.pt-contact-card {
  background: #f8f9fa;
  border: 1px solid #eaeaea;
  border-radius: 24px;
}

@media (max-width: 576px) {
  .pt-contact-card {
    padding: 1.25rem !important;
    border-radius: 18px;
  }
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

.reviewer-location {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}

.reviewer-location i {
  color: var(--primary);
  margin-right: 0.2rem;
}

.google-icon {
  width: 22px;
  height: 22px;
  margin-left: auto;
  flex-shrink: 0;
}

.review-stars i {
  color: #FBBC05;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.review-date {
  font-size: 0.78rem;
  color: #aaa;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.75rem;
  margin-top: auto;
}

/* Floating Contact Widget */
.floating-contact-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, background 0.3s;
}

.contact-option:hover {
  transform: scale(1.1);
  color: white;
}

.contact-option.whatsapp {
  background-color: #25D366;
}

.contact-option.phone {
  background-color: #007bff;
}

.contact-option.email {
  background-color: var(--primary);
}

.contact-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--accent);
  color: white;
  font-size: 1.8rem;
  border: none;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}

.contact-toggle-btn:hover {
  transform: scale(1.05);
  background-color: var(--primary);
}

.contact-toggle-btn i {
  transition: transform 0.3s;
}

.contact-toggle-btn.active i {
  transform: rotate(180deg);
}

/* --- PREMIUM TOUR DETAILS STYLES --- */
.premium-tour-header {
  margin-bottom: 2rem;
}

.pt-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .pt-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .pt-title {
    font-size: 1.6rem;
  }
}

.pt-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 500;
  flex-wrap: wrap;
}

.pt-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.premium-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 60vh;
  min-height: 500px;
  margin-bottom: 1.5rem;
}

.pg-main {
  flex: 3;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

.pg-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (max-width: 991px) {
  .premium-gallery {
    height: auto;
    min-height: 400px;
  }

  .pg-main {
    height: 300px;
    flex: none;
  }

  .pg-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: 300px;
    flex: none;
  }
}

@media (max-width: 576px) {
  .pg-main {
    height: 250px;
  }

  .pg-grid {
    display: none;
  }
}

.pg-item {
  background-size: cover;
  background-position: center;
  height: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.pg-main:hover,
.pg-item:hover {
  opacity: 0.9;
}

.premium-gallery.single-image .pg-main {
  border-radius: 16px;
  flex: 1;
}

.premium-gallery.single-image .pg-grid {
  display: none;
}

/* Feature Pills */
.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
  border: 1px solid #eee;
}

/* Base Layout */
.pt-section {
  position: relative;
}

.pt-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }
}


.pt-description-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.pt-divider {
  border: 0;
  height: 1px;
  background: #e8e8e8;
  margin: 3rem 0;
}

/* Highlights */
.pt-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 576px) {
  .pt-highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pt-highlight-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pt-highlight-item .icon-box {
  background: #f0f4f8;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary);
  flex-shrink: 0;
}

.pt-highlight-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #222;
}

.pt-highlight-item p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Sidebar Booking Card */
.pt-booking-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  top: 85px;
  z-index: 100;
  /* Offset for sticky nav */
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .pt-booking-card {
    position: static;
    top: 0;
    margin-top: 2rem;
    z-index: 10;
  }
}

@media (max-width: 576px) {
  .pt-booking-card {
    padding: 1.25rem 1rem;
    border-radius: 18px;
  }

  .compact-calendar .calendar-header {
    border-radius: 14px 14px 0 0;
    font-size: 0.82rem;
    padding: 0.6rem 0.8rem;
  }

  .compact-calendar .calendar-grid {
    border-radius: 0 0 14px 14px;
    padding: 0.4rem !important;
    gap: 2px !important;
  }

  .compact-calendar .calendar-day {
    min-height: 40px;
    font-size: 0.75rem;
  }

  .day-num {
    font-size: 0.85rem !important;
  }

  .day-price {
    font-size: 0.55rem !important;
    padding: 1px 2px !important;
  }

  .bwc-person-row {
    padding: 0.65rem 0.8rem !important;
    gap: 2px !important;
  }

  .bwc-person-row .btn-sm {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.75rem !important;
  }

  .bwc-person-row span[id*="-input"] {
    font-size: 1rem !important;
    width: 15px !important;
  }

  .pt-book-btn {
    padding: 0.8rem !important;
    font-size: 1rem !important;
  }
}

/* Extra small devices (iPhone SE, etc.) */
@media (max-width: 350px) {
  .pt-booking-card {
    padding: 1rem 0.75rem;
  }

  .compact-calendar .calendar-grid {
    padding: 0.25rem !important;
  }

  .compact-calendar .calendar-day {
    min-height: 38px;
  }

  .bwc-person-row {
    padding: 0.5rem 0.6rem !important;
  }
}

.pt-book-btn {
  padding: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s;
}

.pt-book-btn:hover:not([disabled]) {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* --- Waypoint Lightbox Overlay --- */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100001;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: #ccc;
}

.lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  user-select: none;
  -webkit-user-select: none;
}

.lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 20px;
  background-color: rgba(0, 0, 0, 0.3);
}

.lightbox-next {
  right: 20px;
  background-color: rgba(0, 0, 0, 0.3);
}

.lightbox-counter {
  color: #f2f2f2;
  font-size: 14px;
  padding: 8px 12px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}

/* Waypoint gallery card (tours itinerary) */
.waypoint-card {
  background: rgba(10, 35, 66, 0.98);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.waypoint-card-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.waypoint-card .lightbox-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: none;
}

.waypoint-card .lightbox-counter {
  bottom: 14px;
  background: rgba(0, 0, 0, 0.55);
}

.waypoint-card .lightbox-prev,
.waypoint-card .lightbox-next {
  background-color: rgba(0, 0, 0, 0.45);
}

.waypoint-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.waypoint-card-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.waypoint-card-desc {
  margin: 0;
  font-size: 0.9rem;
  color: #d0d7e2;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .waypoint-card {
    padding: 1.1rem;
    border-radius: 16px;
  }

  .waypoint-card .lightbox-img {
    max-height: 260px;
  }
}

/* Category Cards */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-card {
  padding: 4rem 2rem;
  border-radius: 24px;
  color: white;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-card:nth-child(1) {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.category-card:nth-child(2) {
  background: linear-gradient(135deg, var(--accent), var(--text-dark));
}

.category-card:nth-child(3) {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.category-card:nth-child(4) {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.category-card h3 {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .category-card {
    padding: 3rem 1.5rem;
  }

  .category-card h3 {
    font-size: 1.25rem;
  }
}

/* =========================================================================
   PREMIUM TOUR DETAILS PAGE (tours.php)
========================================================================= */

.premium-tour-header {
  margin-top: 1rem;
}

.pt-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.pt-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  flex-wrap: wrap;
}

/* Premium Gallery Grid */
.premium-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 500px;
}

.premium-gallery.single-image {
  grid-template-columns: 1fr;
}

.pg-main {
  background-size: cover;
  background-position: center;
  height: 100%;
  transition: transform 0.5s ease;
}

.premium-gallery:hover .pg-main,
.premium-gallery:hover .pg-item {
  transform: scale(1.02);
}

.pg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  height: 100%;
}

.pg-item {
  background-size: cover;
  background-position: center;
  height: 100%;
  transition: transform 0.5s ease;
}

/* Tour Layout */
.pt-layout-row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.pt-main-column {
  flex: 1;
  min-width: 60%;
}

.pt-sidebar-column {
  width: 380px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .pt-layout-row {
    flex-direction: column;
    gap: 2rem;
  }

  .pt-main-column,
  .pt-sidebar-column {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .pt-booking-card {
    padding: 1.4rem;
    border-radius: 18px;
  }

  .bwc-top-pills {
    flex-direction: column;
  }

  .premium-gallery {
    margin-bottom: 1rem;
  }

  .pt-section {
    padding: 1.8rem 0;
  }
}

/* Feature Pills */
.pt-feature-pills .pill-item {
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid rgba(10, 35, 66, 0.1);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

/* Mobile: 2x2 pill grid */
@media (max-width: 768px) {
  .pt-feature-pills {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px !important;
  }

  .pt-feature-pills .pill-item {
    border-radius: 12px;
    justify-content: flex-start;
    text-align: left;
    padding: 0.6rem 0.6rem;
    font-size: 0.72rem;
    position: relative;
    background-color: #f8f9fa;
    color: var(--text-main);
    border: 1px solid rgba(10, 35, 66, 0.1);
    font-weight: 600;
    min-height: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  }

  .pt-feature-pills .pill-item i {
    color: var(--primary) !important;
    font-size: 1.1rem;
    margin-right: 6px;
    display: inline-block;
    margin-bottom: 0;
  }
}

/* Sections */
.pt-section {
  padding: 2.5rem 0;
}

.pt-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.pt-description-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
  font-weight: 400;
}

.pt-divider {
  border: 0;
  border-top: 1px solid rgba(10, 35, 66, 0.1);
  margin: 0;
}

/* Highlights Grid */
.pt-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pt-highlight-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.pt-highlight-item .icon-box {
  width: 50px;
  height: 50px;
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.pt-highlight-item h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.pt-highlight-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Sticky Booking Card */
.pt-booking-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 35, 66, 0.05);
  top: 100px;
  z-index: 10;
}

.bwc-price-amount {
  border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  padding-bottom: 1.5rem;
}

.bwc-subtitle {
  color: var(--text-dark);
}

.compact-calendar .calendar-header {
  padding: 0.8rem;
  font-size: 0.9rem;
}

.compact-calendar .calendar-grid {
  padding: 0.5rem;
  gap: 2px;
}

.bwc-person-row {
  transition: var(--transition);
}

.bwc-person-row:hover {
  border-color: var(--secondary) !important;
  background: white !important;
  box-shadow: var(--shadow-sm);
}

.bwc-qty-btn {
  border-color: #ddd !important;
  color: var(--text-main) !important;
  font-weight: bold;
}

.bwc-qty-btn:hover {
  background: var(--surface) !important;
  color: var(--primary) !important;
}

.pt-book-btn {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.pt-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

/* Responsive adjustments for Tours */
@media (max-width: 991px) {
  .pt-sidebar-column {
    width: 100%;
    margin-top: 2rem;
  }

  .premium-gallery {
    height: 350px;
    grid-template-columns: 1fr;
  }

  .pg-grid {
    display: none;
    /* Hide grid on mobile, just show main image */
  }

  .pt-title {
    font-size: 2rem;
  }

  /* =========================================================================
   TOUR LISTINGS AND CAROUSELS (all-tours.php / main.js)
========================================================================= */

  .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
  }

  .tour-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(10, 35, 66, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.4);
  }

  .tour-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
  }

  .tour-card:hover .tour-image {
    transform: scale(1.05);
  }

  .tour-content {
    padding: 1.8rem;
    background: var(--white);
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .tour-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .tour-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: auto;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .tour-old-price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: line-through;
  }

  /* Ensure Carousel works properly */
  .tours-carousel .tour-card {
    min-width: 320px;
    scroll-snap-align: start;
  }

  /* =========================================================================
   DYNAMIC BOOKING WIDGET PRICE BAR (index.php / main.js)
========================================================================= */

  #date-info-bar {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: var(--card-radius);
    border: 1px solid rgba(10, 35, 66, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.4s ease forwards;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .date-info-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  #date-info-label {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  #date-info-label i {
    color: var(--secondary);
  }

  #date-info-price {
    margin-left: auto;
  }

  #date-info-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 30px;
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
  }

  #date-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
  }
}

/* Featured Tours Carousel Navigation */
.tours-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.carousel-btn {
  background: white;
  border: 1px solid #eee;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  color: var(--primary);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 105, 148, 0.2);
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

/* Mobile logic for carousel arrows */
@media (max-width: 991px) {
  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* On mobile, place arrows slightly inside the container so they are clickable */
  .carousel-btn.prev { left: 5px; }
  .carousel-btn.next { right: 5px; }
  
  .tours-carousel {
    padding: 0 5px;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .carousel-btn {
    width: 28px;
    height: 28px;
  }
}

/* ===== Tour Card Image Badges ===== */
.tour-image {
  position: relative;
  overflow: hidden;
}

.tc-badges-container {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}

.tc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2px;
}

.tc-badge-rated {
  background: rgba(255, 193, 7, 0.95);
  color: #000;
}

.tc-badge-type {
  background: rgba(42, 75, 92, 0.9);
  color: #fff;
}

.tc-badge-duration {
  background: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ===== Tours Page - Custom Accordion (Meeting Point, Not Suitable, FAQ) ===== */
.pt-accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.pt-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f9fa;
  border: none;
  padding: 18px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.pt-accordion-btn:hover {
  background: #eef2f5;
}

.pt-accordion-btn .transition-icon {
  transition: transform 0.3s ease;
  margin-left: auto;
}

.pt-accordion-btn.active .transition-icon {
  transform: rotate(180deg);
}

.pt-accordion-body {
  padding: 16px 20px 20px 20px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

/* ===== Reviews - Single Row ===== */
.marquee-wrapper {
  overflow: hidden;
  padding: 1.5rem 0;
}

.marquee-wrapper .marquee-track:last-child {
  display: none;
}

/* ===== Tours Page Mobile Layout - Calendar below photos ===== */
@media (max-width: 991px) {
  .pt-layout-row {
    flex-direction: column !important;
  }

  .pt-sidebar-column {
    order: 2;
  }

  .pt-main-column {
    order: 1;
  }

  .pt-booking-card {
    position: static !important;
    margin-bottom: 2rem;
  }
}

/* ===== About Page - Enhanced Design ===== */
.about-hero-new {
  min-height: 55vh;
  background: linear-gradient(135deg, rgba(10,35,66,0.85), rgba(79, 157, 166, 0.7)), url('/assets/media/2.jpeg') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 120px 20px 60px;
}

.about-hero-new h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}

.about-hero-new p {
  font-size: 1.3rem;
  opacity: 0.92;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.about-content-section {
  padding: 5rem 1rem;
}

.about-stat-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.about-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2A4B5C;
  display: block;
  margin-bottom: 0.3rem;
}

.about-stat-label {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4F9DA6, #2A4B5C);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}
