/* VISITCAYMAN - Luxury Caribbean Resort & Tourism Portal CSS Style Guide */

:root {
  /* Color Palette */
  --primary-ocean: #0153a5;
  --turquoise: #02b6d6;
  --sky-blue: #8cefff;
  --coral: #ff6a52;
  --sunset-orange: #ff9130;
  --sand-beige: #fbf6ef;
  --light-aqua: #edfafd;
  --sea-green: #0fa27d;
  --white: #ffffff;
  --dark-text: #1d364a;
  --body-text: #415e75;
  --light-gray: #f2f7fc;
  --card-border: rgba(2, 182, 214, 0.15);

  /* Gradients */
  --ocean-gradient: linear-gradient(135deg, #0153a5 0%, #02b6d6 100%);
  --gradient-ocean: linear-gradient(135deg, #0153a5 0%, #02b6d6 100%);
  --gradient-coral: linear-gradient(135deg, #ff6a52 0%, #ff9130 100%);
  --gradient-tropical: linear-gradient(135deg, #02b6d6 0%, #0fa27d 100%);
  --gradient-sunshine: linear-gradient(135deg, #ff9130 0%, #ffde59 100%);
  --gradient-aqua-fade: linear-gradient(180deg, #edfafd 0%, #ffffff 100%);
  --gradient-sand-fade: linear-gradient(180deg, #fbf6ef 0%, #ffffff 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 100%);
  --gradient-card-overlay: linear-gradient(to top, rgba(12, 34, 56, 0.9) 0%, rgba(12, 34, 56, 0.2) 60%, rgba(12, 34, 56, 0) 100%);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(1, 83, 165, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(1, 83, 165, 0.1), 0 4px 6px -2px rgba(1, 83, 165, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(1, 83, 165, 0.12), 0 10px 10px -5px rgba(1, 83, 165, 0.06);
  --shadow-luxury: 0 30px 60px -15px rgba(1, 83, 165, 0.18);
  --shadow-glass: 0 8px 32px 0 rgba(2, 182, 214, 0.1);

  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

/* Base resets & resets overriding rules */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--dark-text);
  font-weight: 700;
  line-height: 1.25;
}

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

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

svg {
  max-width: 100%;
}

section {
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

/* Typographical Styles & Utilities */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--turquoise);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: var(--gradient-ocean);
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background-color: var(--light-aqua);
  color: var(--primary-ocean);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--card-border);
}

.badge-coral {
  background-color: #ffebe8;
  color: var(--coral);
}

.container-width {
  max-width: 1280px;
  margin: 0 auto;
}

.w-full {
  width: 100%;
}

.text-center {
  text-align: center;
}

.self-start {
  align-self: flex-start;
}

.text-xs {
  font-size: 0.8rem;
}

.text-coral {
  color: var(--coral);
}

/* Button UI Definitions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.85rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  gap: 0.5rem;
}

.btn-luxury {
  background-image: var(--gradient-ocean);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(1, 83, 165, 0.25);
}

.btn-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 83, 165, 0.4);
}

.btn-coral {
  background-image: var(--gradient-coral);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 106, 82, 0.25);
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 106, 82, 0.4);
}

.btn-luxury-white {
  background-color: var(--white);
  color: var(--primary-ocean);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.btn-luxury-white:hover {
  background-color: var(--light-aqua);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Sticky Header & Navigation CSS */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1rem 0;
}

.header-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 1.15rem 0.95rem 1.5rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  /* background: transparent; */
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 50px -28px rgba(1, 83, 165, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
}

.brand-logo {
  width: 240px;
}

.logo-accent {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: var(--gradient-coral);
}

/* Scroll Header Styles */
.main-header.scrolled {
  padding: 0.7rem 0;
}

.main-header.scrolled .header-shell {
  box-shadow: 0 26px 55px -32px rgba(1, 83, 165, 0.38);
}

/* Nav Menu Structure */
.desktop-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.1rem;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #0279b8;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.1rem;
  position: relative;
  white-space: nowrap;
}

.nav-link-button {
  background: none;
  border: none;
  cursor: pointer;
}

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.15rem;
  left: 0;
  width: 0%;
  height: 3px;
  border-radius: 999px;
  background-image: var(--gradient-coral);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.active-link .nav-link::after {
  width: 100%;
}

.nav-item:hover .nav-chevron,
.nav-item.mega-open .nav-chevron {
  transform: rotate(180deg);
}

/* Mega Menu Dropdowns CSS (Glassmorphism, High Contrast) */
.nav-item {
  position: relative;
}

.has-megamenu {
  position: static;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(1120px, calc(100vw - 64px));
  min-width: 0;
  max-width: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(2, 182, 214, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow-luxury);
  padding: 2rem 2.1rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 22px;
}

.wide-mega {
  width: min(1120px, calc(100vw - 64px));
}

.nav-item:hover .mega-menu,
.nav-item.mega-open .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.compact-trigger {
  position: relative;
}

.compact-mega {
  left: auto;
  right: 0;
  width: 280px;
  padding: 1rem;
  transform: translateY(12px);
}

.compact-trigger:hover .compact-mega,
.compact-trigger.mega-open .compact-mega,
.compact-trigger:focus-within .compact-mega {
  transform: translateY(0);
}

.compact-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.compact-menu-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-text);
}

.compact-menu-links a:hover {
  background: var(--light-aqua);
  color: var(--primary-ocean);
}

.mega-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(2, minmax(220px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.scrollable-mega {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.mega-col h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-ocean);
  border-bottom: 2px solid var(--light-aqua);
  padding-bottom: 0.4rem;
}

.mega-col ul {
  list-style: none;
}

.mega-col ul li {
  margin-bottom: 0.65rem;
}

.mega-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--body-text);
  font-weight: 500;
}

.mega-col ul li a:hover {
  color: var(--turquoise);
  transform: translateX(3px);
}

/* Mega Menu Featured Section */
.mega-featured-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
}

.mega-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-card-overlay);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.featured-overlay h4 {
  color: var(--white);
  font-size: 1rem;
  margin: 0.35rem 0;
}

.featured-overlay p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.mega-promo {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(237, 250, 253, 0.9) 0%, rgba(251, 246, 239, 0.85) 100%);
  border: 1px solid rgba(2, 182, 214, 0.12);
}

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

.menu-cta-card {
  height: 100%;
  border-radius: 22px;
  padding: 1.6rem;
  background-image: linear-gradient(145deg, rgba(1, 83, 165, 0.98) 0%, rgba(2, 182, 214, 0.9) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 16px 32px -22px rgba(1, 83, 165, 0.7);
}

.menu-cta-card h4,
.menu-cta-card p {
  color: var(--white);
}

.menu-cta-card p {
  font-size: 0.92rem;
  line-height: 1.65;
}

.read-more-link {
  color: var(--sky-blue);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Weather Widget in Menu */
.weather-col {
  grid-column: span 1;
}

.weather-widget-header {
  background-image: var(--gradient-ocean);
  padding: 1.25rem;
  border-radius: 12px;
  color: var(--white);
}

.weather-widget-header h6 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.weather-temp {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.weather-temp .temp {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-display);
}

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

/* User Utility Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.action-btn {
  background-color: rgba(1, 83, 165, 0.05);
  backdrop-filter: blur(10px);
  color: #0275b6;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.action-btn:hover {
  background-image: var(--gradient-ocean);
  color: var(--white);
  transform: scale(1.05);
}

.relative-btn {
  position: relative;
}

.wishlist-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#plan-trip-btn {
  padding: 0.85rem 1.55rem;
  font-size: 0.92rem;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(1, 83, 165, 0.3);
  backdrop-filter: blur(10px);
  z-index: 1100;
  transition: right 0.4s ease;
}

.mobile-nav-overlay.active {
  right: 0;
}

.mobile-nav-container {
  width: 85%;
  max-width: 400px;
  height: 100%;
  background-color: var(--white);
  margin-left: auto;
  box-shadow: var(--shadow-luxury);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.mobile-nav-header .brand-logo {
  color: var(--primary-ocean);
}

.mobile-links-list {
  flex-grow: 1;
  overflow-y: auto;
}

.mobile-links-list ul {
  list-style: none;
}

.mobile-links-list ul li {
  margin-bottom: 1rem;
}

.mobile-links-list ul li a {
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.expand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dark-text);
  cursor: pointer;
}

.mobile-submenu {
  list-style: none;
  padding-left: 2rem;
  margin-top: 0.5rem;
  display: none;
}

.mobile-submenu li {
  margin-bottom: 0.5rem !important;
}

.mobile-submenu li a {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--body-text) !important;
}

.mobile-expandable.active-submenu .mobile-submenu {
  display: block;
}

.mobile-expandable.active-submenu .sub-chevron {
  transform: rotate(180deg);
}

.mobile-menu-trigger {
  display: none;
  background: none;
  border: none;
  color: var(--dark-text);
  cursor: pointer;
}

.mobile-menu-close {
  background: var(--light-gray);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search Modal Overlay style */
.search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 83, 165, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.search-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.search-modal-container {
  width: 90%;
  max-width: 700px;
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-luxury);
  position: relative;
  transform: scale(0.9);
  transition: all var(--transition-normal);
}

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

.search-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--light-gray);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border-radius: 50px;
  padding: 0.5rem;
  border: 1px solid var(--card-border);
}

.search-input-wrapper .search-icon {
  margin-left: 1.25rem;
  color: var(--primary-ocean);
}

.search-input-wrapper input {
  flex-grow: 1;
  border: none;
  background: none;
  padding: 0.5rem 1rem;
  outline: none;
  font-family: var(--font-sans);
  font-size: 1.05rem;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  align-items: center;
  justify-content: center;
}

.quick-tags span {
  font-weight: 600;
}

.quick-tags a {
  background: var(--light-aqua);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary-ocean);
  font-weight: 500;
}

.quick-tags a:hover {
  background-image: var(--gradient-ocean);
  color: var(--white);
}

/* Home Hero Custom styling (Colorful Video/Image collage with overlay) */
.hero-slider-section {
  height: 100vh;
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #023e8a, #0077b6, #0096c7);
  overflow: visible;
  padding-top: 6rem;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.15);
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(2, 62, 138, 0.5) 0%,
      rgba(2, 119, 189, 0.3) 35%,
      rgba(0, 150, 199, 0.1) 65%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 0 2rem;
  margin-top: -2rem;
}

.hero-badge-tag {
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  padding: 0.45rem 1.35rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35);
}

.hero-content-wrapper h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
  color: white;
  line-height: 1.08;
}

.hero-content-wrapper h1 span {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
  text-shadow: none;
}

.hero-content-wrapper p {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.25rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Hero Live Weather Widget ---- */
.hero-weather-widget {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  padding: 0.5rem 1.25rem 0.5rem 1rem;
  margin-bottom: 2rem;
  transition: all var(--transition-normal);
}

.hero-weather-widget:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-weather-temp {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.hero-weather-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 640px) {
  .hero-weather-widget {
    padding: 0.4rem 0.9rem 0.4rem 0.75rem;
    gap: 0.4rem;
  }
  .hero-weather-temp {
    font-size: 0.9rem;
  }
  .hero-weather-label {
    font-size: 0.65rem;
    padding-left: 0.35rem;
  }
}

/* ---- Floating Search Bar (inside hero) ---- */
.hero-search-bar {
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  width: 100%;
  z-index: 20;
  pointer-events: none;
}

.hero-search-bar .container-width,
.hero-search-bar>* {
  pointer-events: auto;
}

.hs-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.6rem 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 8px 32px rgba(0, 0, 0, 0.06);
}

.hs-tabs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.hs-tab {
  padding: 0.45rem 1.15rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-display);
  background: transparent;
  border: 1.5px solid rgba(15, 23, 42, 0.07);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(15, 23, 42, 0.5);
  transition: all 0.2s ease;
  line-height: 1.3;
}

.hs-tab i {
  font-size: 0.7rem;
}

.hs-tab:hover {
  background: rgba(6, 182, 212, 0.06);
  border-color: rgba(6, 182, 212, 0.2);
  color: #0e7490;
}

.hs-tab.active {
  background: linear-gradient(135deg, #0e7490, #06b6d4);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.3);
}

.hs-form {
  width: 100%;
}

.hs-fields {
  display: flex;
  gap: 0.85rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.hs-field {
  flex: 1;
  min-width: 140px;
}

.hs-field-wide {
  flex: 1.5;
}

.hs-field-btn {
  flex: 0 0 auto;
  min-width: 0;
}

.hs-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0e7490;
  margin-bottom: 0.3rem;
}

.hs-label i {
  font-size: 0.6rem;
  opacity: 0.7;
}

/* Custom Select */
.hs-custom-select {
  position: relative;
}

.hs-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.03);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: left;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
}

.hs-select-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hs-arrow {
  font-size: 0.65rem;
  color: #0e7490;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.hs-custom-select.open .hs-arrow {
  transform: rotate(180deg);
}

.hs-select-trigger:hover {
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(6, 182, 212, 0.04);
}

.hs-custom-select.open .hs-select-trigger,
.hs-select-trigger:focus-visible {
  border-color: #06b6d4;
  background: white;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hs-select-options {
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 0;
  width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 0.35rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 50;
  max-height: 260px;
  overflow-y: auto;
}

.hs-custom-select.open .hs-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hs-option {
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: #334155;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.hs-option:hover {
  background: rgba(6, 182, 212, 0.07);
  color: #0e7490;
}

.hs-option[aria-selected="true"] {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(14, 116, 144, 0.08));
  color: #0e7490;
  font-weight: 700;
}

/* Custom Date Picker */
.hs-date-picker {
  position: relative;
}

.hs-date-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.03);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: left;
  line-height: 1.4;
}

.hs-date-trigger-icon {
  font-size: 0.8rem;
  color: #0e7490;
  opacity: 0.6;
}

.hs-date-value {
  flex: 1;
}

.hs-date-trigger:hover {
  border-color: rgba(6, 182, 212, 0.25);
  background: rgba(6, 182, 212, 0.04);
}

.hs-date-picker.open .hs-date-trigger,
.hs-date-trigger:focus-visible {
  border-color: #06b6d4;
  background: white;
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.hs-date-picker.open .hs-arrow {
  transform: rotate(180deg);
}

/* Dropdown Calendar */
.hs-calendar-drop {
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 0;
  width: 300px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}

.hs-date-picker.open .hs-calendar-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hs-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.hs-cal-nav {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(15, 23, 42, 0.03);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 0.7rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.hs-cal-nav:hover {
  background: rgba(6, 182, 212, 0.08);
  color: #0e7490;
}

.hs-cal-month-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
}

.hs-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.35rem;
}

.hs-cal-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  padding: 0.3rem 0;
  letter-spacing: 0.04em;
}

.hs-cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.hs-cal-day {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
}

.hs-cal-day:hover {
  background: rgba(6, 182, 212, 0.08);
  color: #0e7490;
}

.hs-cal-day.other-month {
  color: #cbd5e1;
  pointer-events: none;
}

.hs-cal-day.today {
  border: 1.5px solid rgba(6, 182, 212, 0.25);
  font-weight: 700;
  color: #0e7490;
}

.hs-cal-day.selected {
  background: linear-gradient(135deg, #0e7490, #06b6d4);
  color: white;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.25);
}

.hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.6rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #0e7490, #06b6d4);
  color: white;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.88rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
  white-space: nowrap;
  line-height: 1.4;
}

.hs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.hs-btn:active {
  transform: scale(0.97);
}

@media (max-width: 900px) {
  .hero-search-bar {
    bottom: -2rem;
  }

  .hs-card {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
  }

  .hs-fields {
    flex-direction: column;
    gap: 0.65rem;
  }

  .hs-field,
  .hs-field-wide {
    width: 100%;
    flex: none;
  }

  .hs-field-btn {
    width: 100%;
  }

  .hs-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-search-bar {
    bottom: -1.5rem;
  }

  .hs-card {
    padding: 1rem 1.15rem;
    border-radius: 14px;
  }

  .hs-tab {
    font-size: 0.72rem;
    padding: 0.35rem 0.85rem;
    flex: 1;
    justify-content: center;
  }

  .hs-label {
    font-size: 0.62rem;
  }

  .hs-select-trigger,
  .hs-date-trigger {
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
  }

  .hs-option {
    font-size: 0.8rem;
    padding: 0.5rem 0.7rem;
  }

  .hs-calendar-drop {
    width: 270px;
    padding: 0.8rem;
  }

  .hs-cal-day {
    height: 32px;
    font-size: 0.78rem;
  }
}

/* ===== Home Section 2: Featured Destinations ===== */
.featured-destinations {
  background-color: var(--white);
  padding-top: 4rem;
}

.grid-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-luxury {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--card-border);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
}

.card-image-box {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card-luxury:hover .card-image-box img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-coral);
  color: var(--white);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.heart-favorite-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  transition: all var(--transition-fast);
}

.heart-favorite-btn i {
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.heart-favorite-btn.saved {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(255, 106, 82, 0.38);
}

.heart-favorite-btn.saved i {
  color: var(--white);
  transform: scale(1.08);
}

.heart-favorite-btn:hover {
  transform: scale(1.1);
  background: var(--white);
}

.heart-favorite-btn.saved:hover {
  background: #e94f3f;
}

.saved-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(0, 164, 189, 0.14), rgba(255, 106, 82, 0.18));
  color: var(--coral);
  font-size: 2.2rem;
}

.card-details {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sunset-orange);
  margin-bottom: 0.75rem;
}

.card-details h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.card-details p {
  font-size: 0.95rem;
  color: var(--body-text);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer-flex {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--light-gray);
  padding-top: 1rem;
}

.price-box span {
  font-size: 0.75rem;
  display: block;
  text-transform: uppercase;
  color: var(--body-text);
}

.price-box h4 {
  font-size: 1.25rem;
  color: var(--primary-ocean);
}

/* Home Section 4: Top Attractions (Bento grid style / staggered asymmetry) */
.top-attractions-section {
  background-color: var(--light-aqua);
  background-image: var(--gradient-aqua-fade);
}

.grid-asymmetric-asymmetry {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.attraction-showcase-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.landscape-card {
  grid-column: span 2;
  height: 300px;
}

.square-showcase-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--card-border);
}

.square-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.square-showcase-card:hover img {
  transform: scale(1.08);
}

.overlay-asymmetric {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-card-overlay);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.overlay-asymmetric h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.overlay-asymmetric p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.featured-editorial-box {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-luxury);
  border: 1.5px solid var(--card-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-editorial-box .tagline {
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.featured-editorial-box h3 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
}

.featured-editorial-box p {
  color: var(--body-text);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* =========================
   ACTIVITY CATEGORIES
========================= */

.activity-categories-section {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(180deg,
      #fafcfd 0%,
      #f4f9fb 100%);
}

.grid-categories-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.grid-categories-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

/* =========================
   CARD
========================= */

.category-icon-card {
  position: relative;
  overflow: hidden;

  background: #ffffff;

  border-radius: 32px;

  padding: 3rem 1.8rem;

  text-align: center;

  border: 1px solid rgba(0, 156, 222, .08);

  min-height: 280px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  transition: .45s cubic-bezier(.22, .61, .36, 1);

  box-shadow:
    0 10px 25px rgba(15, 23, 42, .04),
    0 25px 60px rgba(15, 23, 42, .05);
}

/* Top luxury accent */

.category-icon-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background:
    linear-gradient(90deg,
      #00a8e8,
      #00d4ff,
      #48cae4);

  transform: scaleX(0);

  transition: .45s ease;

  transform-origin: left;
}

/* Soft glow */

.category-icon-card::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  top: -120px;
  right: -120px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      rgba(0, 194, 255, .18),
      transparent 70%);

  opacity: 0;

  transition: .5s ease;
}

/* Hover */

.category-icon-card:hover {
  transform:
    translateY(-12px);

  box-shadow:
    0 25px 40px rgba(0, 0, 0, .08),
    0 35px 80px rgba(0, 168, 232, .12);
}

.category-icon-card:hover::before {
  transform: scaleX(1);
}

.category-icon-card:hover::after {
  opacity: 1;
}

/* =========================
   ICON
========================= */

.icon-wrapper-large {
  width: 55px;
  height: 55px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 1.8rem;

  font-size: 2rem;

  color: #fff;

  background:
    linear-gradient(135deg, #42fff6, #1c5e78);

  box-shadow: #42faff4d;

  transition: .45s ease;
}

.category-icon-card:hover .icon-wrapper-large {
  transform:
    translateY(-6px) scale(1.08);

  box-shadow: #42faff4d;
}

/* =========================
   TITLE
========================= */

.category-icon-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;

  margin-bottom: .8rem;

  color: #16324f;

  transition: .35s ease;
}

.category-icon-card:hover h4 {
  color: #0096c7;
}

/* =========================
   TEXT
========================= */

.category-icon-card p {
  font-size: .95rem;
  line-height: 1.7;

  color: #64748b;

  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1200px) {
  .grid-categories-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:768px) {
  .grid-categories-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:576px) {
  .grid-categories-4 {
    grid-template-columns: 1fr;
  }

  .category-icon-card {
    min-height: auto;
  }
}

/* Home Section 11: Cayman Statistics */
.cayman-statistics-section {
  background-image: var(--gradient-coral);
  color: var(--white);
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h2,
.animate-stat-count {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  font-weight: 600;
  color: #fff1e0;
  text-transform: uppercase;
}

/* Home Section 12: Interactive Island Map */
.im-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0c4a6e 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.im-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(14, 116, 144, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.im-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.im-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.12);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(6, 182, 212, 0.25);
  margin-bottom: 1rem;
}

.im-badge i {
  font-size: 0.7rem;
}

.im-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.im-title span {
  background: linear-gradient(135deg, #22d3ee, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.im-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto;
}

.im-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Cards column */
.im-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.im-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  overflow: hidden;
}

.im-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.im-card.active {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.08);
  transform: translateX(6px);
}

.im-card-num {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.im-card.active .im-card-num {
  background: rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.4);
  color: #67e8f9;
}

.im-num-glow {
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.im-card.active .im-num-glow {
  opacity: 1;
}

.im-card-body {
  flex: 1;
  min-width: 0;
}

.im-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.2rem;
  transition: color 0.25s ease;
}

.im-card.active .im-card-body h4 {
  color: #67e8f9;
}

.im-card-body p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.45;
  margin: 0;
}

.im-card-active-bar {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #06b6d4, #22d3ee);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.im-card.active .im-card-active-bar {
  transform: translateY(-50%) scaleY(1);
}

/* Map column */
.im-map-wrap {
  position: relative;
}

.im-map-border {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.08);
  height: 480px;
}

.im-map-border iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.im-map-accent {
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: -1;
}

/* Responsive */
@media (max-width: 1024px) {
  .im-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .im-map-border {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .im-section {
    padding: 3.5rem 0;
  }

  .im-header {
    margin-bottom: 2rem;
  }

  .im-card {
    padding: 0.9rem 1rem;
  }

  .im-card-body h4 {
    font-size: 0.9rem;
  }

  .im-card-body p {
    font-size: 0.78rem;
  }

  .im-map-border {
    height: 280px;
    border-radius: 14px;
  }
}

.map-canvas-container {
  position: relative;
  background: #c3f2f5;
  height: 480px;
  border-radius: 30px;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-luxury);
  overflow: hidden;
}

.ocean-vibe-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.island-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background-color: #f6ebd6;
  border-radius: 40% 60% 50% 55% / 45% 45% 65% 55%;
  border: 3px solid #dfd2b9;
  box-shadow: inset 0 0 20px rgba(1, 83, 165, 0.05);
}

.map-marker {
  position: absolute;
  cursor: pointer;
  z-index: 10;
  transition: transform var(--transition-fast);
}

.map-marker:hover {
  transform: scale(1.2);
}

.map-marker-pin {
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background: var(--coral);
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
}

.map-marker-pin::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
}

.map-marker-pin.active {
  background: var(--primary-ocean);
}

.map-marker-label {
  position: absolute;
  background: var(--white);
  color: var(--dark-text);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  width: max-content;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  pointer-events: none;
}

/* Map Coordinate Offsets for Island Simulation */
.marker-sg {
  top: 35%;
  left: 35%;
}

.marker-smb {
  top: 50%;
  left: 25%;
}

.marker-gt {
  top: 70%;
  left: 28%;
}

.marker-rp {
  top: 25%;
  left: 60%;
}

.marker-sp {
  top: 40%;
  left: 70%;
}

.marker-ee {
  top: 55%;
  left: 85%;
}

/* Home Section 13: Why Visit Cayman (Asymmetric grid with large illustration) */
.why-visit-section {
  background-color: var(--white);
}

.asymmetric-feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.illustrations-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
}

.collage-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.collage-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.col-offset-down {
  transform: translateY(2rem);
}

.why-features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-feature-item {
  display: flex;
  gap: 1.25rem;
}

.feature-circle-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-image: var(--gradient-ocean);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.why-feature-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Home Section 15: Testimonials (Clean slider with avatar, stars) */
.testimonials-section {
  background-color: var(--light-aqua);
}

.testimonials-viewport {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  text-align: center;
  padding: 1rem;
}

.quote-icon {
  font-size: 4rem;
  color: var(--sky-blue);
  opacity: 0.5;
  font-family: var(--font-serif);
  line-height: .2;
}

.testimonial-slide blockquote {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--dark-text);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
}

.author-info span {
  font-size: 0.85rem;
  color: var(--turquoise);
  font-weight: 600;
}

/* Home Section 17 & 18: FAQ Accordion style */
.faq-section {
  background-color: var(--white);
}

.faq-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
}

.faq-promo-image {
  background-image: var(--gradient-ocean);
  padding: 3rem;
  border-radius: 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 350px;
}

.faq-promo-image h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--light-gray);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--card-border);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  color: var(--dark-text);
  font-family: var(--font-display);
}

.faq-question i {
  color: var(--turquoise);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--body-text);
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

/* Home Section 19: Newsletter Campaign Section (Bright gradients) */
.newsletter-promo-section {
  padding: 40px 20px;
  position: relative;
  z-index: 5;
}

.newsletter-hero-banner {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 30px;
  background-image: var(--gradient-ocean);
  padding: 4rem 3rem;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-luxury);
  position: relative;
  overflow: hidden;
}

.newsletter-hero-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(2, 182, 214, 0.2);
  filter: blur(50px);
}

.newsletter-hero-banner h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter-hero-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.15rem;
}

.newsletter-input-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 50px;
  padding: 0.45rem;
  box-shadow: var(--shadow-md);
}

.newsletter-input-box input {
  flex-grow: 1;
  border: none;
  background: none;
  padding: 0.5rem 1.5rem;
  outline: none;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.newsletter-input-box button {
  white-space: nowrap;
}

/* Dynamic Page Content Layouts (Tours Listing & Filters) */
.tours-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
}

.filter-sidebar {
  position: sticky;
  top: 100px;
  background: var(--light-aqua);
  background-image: var(--gradient-aqua-fade);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--card-border);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: none;
}

.filter-sidebar::-webkit-scrollbar {
  display: none;
}

.filter-sidebar h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1.5px solid var(--card-border);
}

.filter-group {
  margin-bottom: 1.25rem;
}

.filter-group h4 {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  color: var(--primary-ocean);
  text-transform: uppercase;
}

.filter-list {
  list-style: none;
}

.filter-list li {
  margin-bottom: 0.4rem;
}

.filter-list li label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--body-text);
  cursor: pointer;
}

.filter-list li input[type="checkbox"],
.filter-list li input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--turquoise);
}

.filter-list li input[type="checkbox"] {
  border-radius: 4px;
}

.sorting-filter-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.tours-total-found {
  font-weight: 700;
  color: var(--dark-text);
}

.sorting-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sorting-select {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--card-border);
  font-family: var(--font-sans);
  outline: none;
  font-weight: 600;
}

/* Tour Details Page (Specialized 20 sections) */
.tour-detail-hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tour-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tour-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.tour-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 1000px;
}

.tour-hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f5b895;
  background: rgba(245, 184, 149, 0.15);
  border: 1px solid rgba(245, 184, 149, 0.3);
  padding: 0.35rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.tour-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: #fff;
  margin: 0 0 1.5rem;
  line-height: 1.15;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.tour-meta-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.tour-meta-item i {
  color: #f5b895;
  font-size: 1rem;
}



/* ===== INLINE EXTRACT ===== */
.search-field-flex-end {
  display: flex;
  align-items: flex-end;
}

.section-sand-beige {
  background-color: var(--sand-beige);
  background-image: var(--gradient-sand-fade);
}

.star-fill-current {
  fill: currentColor;
}

.section-bg-white {
  background-color: var(--white);
}

.card-padding-2rem {
  padding: 2rem;
}

.badge-margin-top {
  width: max-content;
  margin-top: 2rem;
}

.section-aqua-fade {
  background-color: var(--light-aqua);
  background-image: var(--gradient-aqua-fade);
}

.flex-space-between-end {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.text-coral-uppercase {
  color: var(--coral);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.section-title-serif {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--dark-text);
}

.card-image-200 {
  height: 200px;
}

.card-padding-1-5 {
  padding: 1.5rem;
}

.trending-title {
  font-family: var(--font-sans);
  margin-top: 0.75rem;
  font-size: 1.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.trending-text {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.section-ocean-white {
  background-image: var(--gradient-ocean);
  color: var(--white);
  text-align: center;
}

.container-narrow {
  max-width: 850px;
}

.badge-gradient-coral {
  background: var(--gradient-coral);
}

.hero-title-white {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: var(--white);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-text-white {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.btn-padding-lg {
  padding: 1rem 2.5rem;
}

.family-heading-serif {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--dark-text);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.family-text {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.family-text-turquoise {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--turquoise);
}

.img-frame-luxury {
  border-radius: 24px;
  box-shadow: var(--shadow-luxury);
  border: 8px solid var(--white);
  aspect-ratio: 4 / 3;
}

.map-text-mb {
  margin-bottom: 2rem;
}

.map-frame-luxury {
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.iframe-borderless {
  border: 0;
}

.why-heading-serif {
  font-family: var(--font-serif);
  margin-top: 0.75rem;
  font-size: 2.8rem;
  color: var(--dark-text);
}

.card-padding-2 {
  padding: 2rem;
}

.icon-ocean-bg {
  background: var(--primary-ocean);
  color: white;
}

.step-title-center {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.icon-coral-bg {
  background: var(--coral);
  color: white;
}

.icon-turquoise-bg {
  background: var(--turquoise);
  color: white;
}

.card-image-210 {
  height: 210px;
}

.card-content-flex {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.badge-mb {
  width: max-content;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.blog-text {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.blog-link {
  color: var(--turquoise);
  font-weight: 700;
  margin-top: auto;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.icon-14 {
  width: 14px;
  height: 14px;
}

.section-aqua-fade-center {
  background-color: var(--light-aqua);
  background-image: var(--gradient-aqua-fade);
  text-align: center;
}

.grid-gap-1 {
  gap: 1rem;
}

.square-card-200 {
  height: 200px;
  border-radius: 12px;
}

.faq-btn-mt {
  margin-top: 1.5rem;
}

.subscribe-success {
  display: none;
  color: #10b981;
  font-weight: 700;
  margin-top: 1.5rem;
}

.section-cta-banner {
  background-image: var(--gradient-coral);
  text-align: center;
  padding: 6rem 2rem;
}

.container-cta {
  max-width: 800px;
}

.cta-heading-white {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-text-white {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.btn-cta-lg {
  font-size: 1.1rem;
  padding: 1.1rem 2.8rem;
}

@media (max-width: 640px) {
  .tour-detail-hero {
    height: 60vh;
    min-height: 400px;
  }

  .tour-hero-content {
    padding: 1rem;
  }

  .tour-meta-row {
    gap: 1rem;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gallery-item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

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

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

.gallery-featured {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-featured {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: auto;
  }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.2s;
  line-height: 1;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

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

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 25px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .lightbox-img {
    max-width: 95vw;
    max-height: 70vh;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

.highlight-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.highlight-popup.active {
  display: flex;
}

.highlight-popup-inner {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 560px;
  width: 90%;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.highlight-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  color: var(--body-text);
  cursor: pointer;
  line-height: 1;
}

.highlight-popup-close:hover {
  color: var(--dark-text);
}

#highlight-popup-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--dark-text);
  margin: 0;
}

@media (max-width: 640px) {
  .highlight-popup-inner {
    padding: 1.5rem;
    width: 92%;
  }
}

.layout-tour-2cols {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
}

.booking-sticky-card {
  position: sticky;
  top: 100px;
  background-color: var(--white);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-luxury);
  border: 1.5px solid var(--card-border);
  height: max-content;
}

.booking-price-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.booking-price-header h3 {
  font-size: 2rem;
  color: var(--primary-ocean);
}

.booking-form-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary-ocean);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--card-border);
  font-family: var(--font-sans);
  font-weight: 600;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--turquoise);
}

.tour-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.fact-item {
  background: var(--light-gray);
  padding: 1.25rem;
  border-radius: 16px;
  text-align: center;
}

.fact-item i {
  color: var(--turquoise);
  margin-bottom: 0.5rem;
}

.fact-item h5 {
  font-size: 0.85rem;
  color: var(--body-text);
}

.fact-item p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
}

/* Timeline/Schedule Itinerary Style */
.timeline-scroller {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 2.5rem;
}

.timeline-scroller::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  width: 2px;
  height: 100%;
  background-color: var(--card-border);
}

.timeline-node {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-node::before {
  content: '';
  position: absolute;
  top: 5px;
  left: -32px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--turquoise);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--turquoise);
}

.timeline-node h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* Global Footer styling (Warm Resort style, never black) */
.site-footer {
  background-color: var(--sand-beige);
  padding: 6rem 2rem 2rem 2rem;
  position: relative;
}

.footer-wave-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: linear-gradient(to bottom, #ffffff, var(--sand-beige));
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-ocean);
  display: block;
  margin-bottom: 1.5rem;
}

.footer-brand-description {
  font-size: 0.92rem;
  color: var(--body-text);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-circle {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-ocean);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.social-circle:hover {
  background-image: var(--gradient-ocean);
  color: var(--white);
}

.footer-links-col h6 {
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(2, 182, 214, 0.1);
  padding-bottom: 0.25rem;
}

.footer-links-col ul {
  list-style: none;
}

.footer-links-col ul li {
  margin-bottom: 0.75rem;
}

.footer-links-col ul li a {
  font-size: 0.9rem;
  color: var(--body-text);
  font-weight: 500;
}

.footer-links-col ul li a:hover {
  color: var(--turquoise);
  transform: translateX(3px);
}

/* Footer newsletter and bottom rows */
.footer-newsletter-row {
  background-color: var(--white);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.newsletter-content h5 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.newsletter-form-wrapper form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form-wrapper input {
  flex-grow: 1;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--card-border);
  font-family: var(--font-sans);
  outline: none;
}

.newsletter-success-msg {
  color: var(--sea-green);
  font-weight: bold;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(1, 83, 165, 0.08);
  margin-bottom: 2rem;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer-bottom-left span {
  display: block;
  margin-bottom: 0.5rem;
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
}

.currency-lang-selector {
  display: flex;
  gap: 1rem;
}

.selector-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* Floating Trip Planner Widget (Modern scroll reveal trigger) */
.floating-trip-badge {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background-image: var(--gradient-coral);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-luxury);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  z-index: 999;
  transition: all var(--transition-fast);
}

.floating-trip-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 106, 82, 0.45);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 1rem;
  }

  .header-shell {
    gap: 1rem;
    padding: 0.9rem 1rem 0.9rem 1.2rem;
  }

  .nav-menu {
    gap: 0.85rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  #plan-trip-btn {
    padding-inline: 1.25rem;
  }

  .mega-menu,
  .wide-mega {
    width: min(1020px, calc(100vw - 32px));
  }
}

@media (max-width: 1024px) {
  .main-header {
    padding: 0.75rem 0;
  }

  .header-container {
    padding: 0 1rem;
  }

  .header-shell {
    padding: 0.85rem 1rem 0.85rem 1.15rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  h1 {
    font-size: 3rem !important;
  }

  .grid-cards-3:not(.ad-grid-tours):not(.dd-grid-tours),
  .grid-asymmetric-asymmetry {
    grid-template-columns: 1fr;
  }

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

  .attraction-showcase-panel {
    grid-template-columns: 1fr;
  }

  .landscape-card {
    grid-column: span 1;
  }

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

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

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

  .asymmetric-feature-layout,
  .faq-layout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tour-detail-hero h1 {
    font-size: 2.5rem;
  }

  .layout-tour-2cols {
    grid-template-columns: 1fr;
  }

  .desktop-navigation {
    display: none;
  }

  .mobile-menu-trigger {
    display: block;
  }

  .header-actions {
    margin-left: auto;
  }

  #plan-trip-btn {
    display: none;
  }

  .mobile-nav-container {
    width: min(100%, 380px);
  }

  .hero-search-bar {
    display: none;
  }

  .hero-slider-section {
    height: auto;
    min-height: 100svh;
    padding-top: 8rem;
    padding-bottom: 5rem;
  }

  .hero-content-wrapper {
    max-width: 760px;
  }

  .hero-content-wrapper h1 {
    font-size: 3.4rem !important;
    line-height: 1.05;
  }

  .hero-content-wrapper p {
    font-size: 1.1rem;
  }

  .hero-cta-group {
    flex-wrap: wrap;
  }

  .search-experience-section {
    margin-top: -3rem;
  }

  .quick-flight-search {
    padding: 1.5rem;
    border-radius: 22px;
  }

  .search-tabs {
    flex-wrap: wrap;
  }

  .search-tab {
    flex: 1 1 180px;
    justify-content: center;
  }

  .featured-editorial-box,
  .newsletter-hero-banner,
  .faq-promo-image {
    padding: 2.2rem;
  }

  .featured-editorial-box h3,
  .faq-promo-image h3,
  .newsletter-hero-banner h2 {
    font-size: 2rem;
  }

  .overlay-asymmetric,
  .featured-overlay {
    padding: 1.4rem;
  }

  .map-canvas-container {
    height: 360px;
  }

  .newsletter-input-box,
  .newsletter-form-wrapper form {
    flex-direction: column;
    border-radius: 24px;
  }

  .newsletter-input-box button,
  .newsletter-form-wrapper form button {
    width: 100%;
  }

  .footer-top-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top-row {
    gap: 2rem;
  }

  .footer-newsletter-row {
    grid-template-columns: 1fr;
    padding: 1.75rem;
  }

  .form-row-flexible {
    flex-direction: column;
  }

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

  .sorting-filter-panel,
  .sorting-wrapper,
  .footer-bottom-row {
    flex-direction: column;
    align-items: stretch;
  }

  .currency-lang-selector,
  .footer-legal-links {
    flex-wrap: wrap;
  }

  .floating-trip-badge {
    bottom: 1.15rem;
    left: 1.15rem;
    padding: 0.8rem 1.2rem;
  }

  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  [style*="grid-template-columns: repeat(2, 1fr)"],
  [style*="grid-template-columns: 1.2fr 1.8fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  [style*="padding-left:2rem"] {
    padding-left: 0 !important;
  }

  article[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  .main-header {
    padding: 0.6rem 0;
  }

  .header-container {
    padding: 0 0.7rem;
  }

  .brand-logo {
    font-size: 1.18rem;
    max-width: calc(100vw - 190px);
  }

  .header-shell {
    gap: 0.55rem;
    padding: 0.75rem 0.8rem 0.75rem 0.9rem;
    border-radius: 22px;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .action-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .hero-content-wrapper h1 {
    font-size: 2.4rem !important;
    line-height: 1.08;
  }

  .tour-hero-content h1 {
    font-size: 2.25rem;
    line-height: 1.05;
  }

  .tour-meta-row {
    gap: 0.85rem;
    font-size: 0.9rem;
  }

  .hero-content-wrapper p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-badge-tag {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .section-header {
    margin-bottom: 2.4rem;
  }

  .section-header p {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }

  .section-header h2 {
    font-size: 2.15rem;
  }

  .grid-cards-3,
  .grid-categories-4,
  .statistics-grid,
  .tour-facts-grid {
    grid-template-columns: 1fr;
  }

  .grid-categories-4 {
    gap: 1rem;
  }

  .category-icon-card {
    padding: 1.75rem 1rem;
  }

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

  .search-experience-section {
    margin-top: -1.5rem;
  }

  .search-tab {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .card-details,
  .featured-editorial-box,
  .newsletter-hero-banner,
  .booking-sticky-card,
  .filter-sidebar,
  .faq-promo-image,
  .footer-newsletter-row {
    padding: 1.4rem;
  }

  .card-footer-flex,
  .booking-price-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .sorting-select {
    width: 100%;
  }

  .currency-lang-selector {
    gap: 0.6rem;
  }

  .selector-item {
    font-size: 0.85rem;
  }

  .map-canvas-container {
    height: 300px;
    border-width: 6px;
  }

  .im-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .testimonial-slide blockquote {
    font-size: 1.25rem;
  }

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

  .footer-bottom-left,
  .footer-bottom-right {
    width: 100%;
  }

  .floating-trip-badge {
    display: none;
  }

  [style*="height: 75vh"],
  [style*="height:75vh"],
  [style*="height: 70vh"],
  [style*="height:70vh"] {
    height: auto !important;
    min-height: 62svh;
    padding-top: 7rem !important;
    padding-bottom: 3rem !important;
  }

  [style*="font-size: 4rem"],
  [style*="font-size:4rem"],
  [style*="font-size: 3.5rem"],
  [style*="font-size:3.5rem"],
  [style*="font-size: 3rem"],
  [style*="font-size:3rem"] {
    font-size: clamp(2rem, 8vw, 2.7rem) !important;
    line-height: 1.1 !important;
  }

  [style*="display:flex; justify-content:space-between"] {
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  section {
    padding: 3.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .main-header {
    padding: 0.5rem 0;
  }

  .brand-logo {
    font-size: 1rem;
    max-width: calc(100vw - 170px);
  }

  .header-shell {
    padding: 0.68rem 0.72rem 0.68rem 0.82rem;
    border-radius: 20px;
  }

  .action-btn,
  .mobile-menu-close {
    width: 38px;
    height: 38px;
  }

  .wishlist-badge {
    width: 16px;
    height: 16px;
    font-size: 0.62rem;
  }

  .mobile-nav-container {
    width: 100%;
    max-width: none;
    padding: 1rem;
  }

  .search-modal-container {
    width: calc(100vw - 1rem);
    padding: 1.15rem;
    border-radius: 18px;
  }

  .search-box h2,
  .featured-editorial-box h3,
  .faq-promo-image h3,
  .newsletter-hero-banner h2 {
    font-size: 1.7rem;
  }

  .search-input-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    border-radius: 18px;
    padding: 0.9rem;
  }

  .search-input-wrapper .search-icon {
    margin-left: 0;
  }

  .search-input-wrapper input {
    padding: 0;
  }

  .search-input-wrapper .btn {
    width: 100%;
  }

  .hero-slider-section {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .hero-content-wrapper {
    padding: 0 0.8rem;
  }

  .hero-content-wrapper h1 {
    font-size: 2.05rem !important;
  }

  .tour-hero-content h1 {
    font-size: 1.9rem;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .square-showcase-card,
  .landscape-card,
  .card-image-box {
    height: 220px;
  }

  .map-canvas-container {
    height: 260px;
  }

  .map-marker-label {
    display: none;
  }

  .newsletter-input-box input,
  .newsletter-form-wrapper input {
    padding: 0.85rem 1rem;
  }

  .search-tab {
    flex-basis: 100%;
  }
}

/* ===== tour-detail.php ===== */
.td-subtitle {
  font-size: 1.05rem;
  color: var(--body-text);
  margin-top: 0.35rem;
  font-weight: 500;
  line-height: 1.5;
}

.td-section-not-found {
  padding: 10rem 2rem;
  text-align: center;
}

.td-h1-not-found {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.td-p-not-found {
  font-size: 1.2rem;
  color: var(--body-text);
  margin-bottom: 2rem;
}

.td-section-gallery {
  padding: 2rem;
  background: var(--white);
}

.td-gallery-header-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.td-gallery-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin: 0;
}

.td-section-white-padding {
  background-color: var(--white);
}

.td-mb-3 {
  margin-bottom: 3rem;
}

.td-overview-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin: 1rem 0;
}

.td-body-text-lg {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--body-text);
}

.td-mb-35 {
  margin-bottom: 3.5rem;
}

.td-h3-dark {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--dark-text);
}

.td-grid-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.td-highlight-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--light-aqua);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.td-highlight-card:hover {
  background: #d4eaea;
}

.td-highlight-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.td-highlight-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--dark-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.td-h3-no-color {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.td-grid-pricing {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.td-card-padding-15 {
  padding: 1.5rem;
}

.td-badge-mb-05 {
  width: max-content;
  margin-bottom: 0.5rem;
}

.td-supplier-card {
  padding: 2rem;
  background-color: var(--light-gray);
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.td-supplier-icon {
  background-image: var(--gradient-ocean);
  width: 64px;
  height: 64px;
}

.td-badge-mb-035 {
  margin-bottom: 0.35rem;
}

.td-supplier-name {
  font-size: 1.25rem;
  color: var(--dark-text);
}

.td-supplier-rating {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--turquoise);
}

.td-h3-mb-1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.td-map-container {
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.td-iframe-border {
  border: 0;
}

.td-btn-mt-1 {
  margin-top: 1rem;
}

.td-booking-msg {
  display: none;
  color: var(--sea-green);
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* ===== destination-detail.php ===== */
.dd-hero-overlay {
  position: relative;
  z-index: 3;
  color: white;
}

.dd-badge-coral {
  background: var(--gradient-coral);
  color: white;
  border: none;
}

.dd-hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: white;
  margin-top: 1rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.dd-section-white-padding {
  background-color: var(--white);
}

.dd-overview-container {
  max-width: 900px;
  text-align: center;
}

.dd-overview-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin: 1.5rem 0;
}

.dd-overview-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--body-text);
}

.dd-section-aqua-padding {
  background-color: var(--light-aqua);
  background-image: var(--gradient-aqua-fade);
}

.dd-gallery-grid-gap {
  gap: 1rem;
}

.dd-gallery-card {
  height: 250px;
  border-radius: 16px;
}

.dd-gallery-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 2rem;
}

.dd-section-white-padding-4 {
  background-color: var(--white);
}

.dd-geo-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin: 1rem 0;
}

.dd-geo-tagline {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-ocean);
}

.dd-map-container {
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.dd-iframe-border {
  border: 0;
}

.dd-section-sand {
  background-color: var(--sand-beige);
  background-image: var(--gradient-sand-fade);
}

.dd-grid-activities {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dd-activity-card {
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dd-activity-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), #ff8a65);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
  border-radius: 3px;
}

.dd-activity-card:hover::after {
  width: 80%;
}

.dd-activity-card:hover {
  background-color: #fff5f5;
  background-image: none;
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 106, 82, 0.12);
  border-color: transparent;
}

.dd-activity-icon {
  background: linear-gradient(135deg, #0153a5, #02b6d6);
  color: white;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.dd-activity-card:hover .dd-activity-icon {
  background: white;
  color: var(--coral);
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 8px 30px rgba(255, 106, 82, 0.25);
}

.dd-activity-title {
  font-size: 1.05rem;
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.dd-activity-card:hover .dd-activity-title {
  color: var(--coral);
}

.dd-section-white {
  background-color: var(--white);
}

.dd-grid-tours {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dd-card-image-180 {
  height: 180px;
}

.dd-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.dd-card-body .dd-card-footer {
  margin-top: auto;
}

.dd-badge-mb-085 {
  margin-bottom: 0.85rem;
}

.dd-tour-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.dd-rating-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.3rem;
}

.dd-star-color {
  color: #f1c40f;
}

.dd-rating-text {
  font-size: 0.85rem;
}

.dd-desc-text {
  font-size: 0.9rem;
  margin-top: 0.4rem;
  color: var(--body-text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dd-duration-text {
  font-size: 0.8rem;
  color: var(--turquoise);
  margin-top: 0.25rem;
}

.dd-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.dd-price-color {
  color: var(--primary-ocean);
}

.dd-btn-view {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

.dd-section-aqua {
  background-color: var(--light-aqua);
  background-image: var(--gradient-aqua-fade);
}

/* ===== Feature Sections 7-9 ===== */
.dd-feature-section {
  padding: 5rem 2rem;
}

.dd-feature-aqua {
  background: linear-gradient(135deg, #f0f8fc 0%, #e8f4f8 100%);
}

.dd-feature-white {
  background: #ffffff;
}

.dd-feature-sand {
  background: linear-gradient(135deg, #fdf6f0 0%, #f8efe6 100%);
}

.dd-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-areas: "img text";
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.dd-feature-image-col {
  grid-area: img;
}

.dd-feature-text-col {
  grid-area: text;
}

.dd-feature-reverse {
  grid-template-areas: "text img";
}

.dd-feature-image-col {
  position: relative;
}

.dd-feature-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
}

.dd-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dd-feature-image-wrap:hover .dd-feature-img {
  transform: scale(1.05);
}

.dd-feature-img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-ocean);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dd-img-badge-coral {
  color: var(--coral);
}

.dd-feature-text-col {
  padding: 1rem 0;
}

.dd-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--primary-ocean), #0288a3);
  color: #fff;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.dd-feature-badge-coral {
  background: linear-gradient(135deg, #ff6a52, #e84c3d);
}

.dd-feature-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.15;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.dd-feature-title span {
  background: linear-gradient(135deg, #f5b895, #ff8a65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dd-feature-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--turquoise);
  margin-bottom: 0.75rem;
}

.dd-feature-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: 1.5rem;
}

.dd-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.dd-feature-tags span {
  font-size: 0.82rem;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dd-feature-tags i {
  color: var(--turquoise);
  font-size: 0.75rem;
}

@media (max-width: 1024px) {
  .dd-feature-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "text";
    gap: 2.5rem;
  }

  .dd-feature-image-wrap {
    max-width: 600px;
    margin: 0 auto;
  }

  .dd-feature-text-col {
    text-align: center;
  }

  .dd-feature-tags {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .dd-feature-section {
    padding: 3rem 1.5rem;
  }

  .dd-feature-grid {
    gap: 1.5rem;
  }
}

.dd-section-tips {
  background-color: var(--white);
}

.dd-tip-card {
  padding: 1.5rem;
}

.dd-badge-tip {
  width: max-content;
  margin-bottom: 1rem;
}

.dd-tip-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.dd-tip-text {
  font-size: 0.9rem;
}

.dd-section-weather {
  background-image: var(--gradient-ocean);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.dd-section-weather::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 200, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

.dd-badge-weather {
  background: var(--gradient-coral);
}

.dd-weather-heading {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: white;
  margin: 1.5rem 0 0.5rem;
}

.dd-weather-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.dd-weather-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.dd-wcard {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dd-wcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.dd-wcard-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffe08a;
  transition: transform 0.3s ease, background 0.3s ease;
}

.dd-wcard:hover .dd-wcard-icon {
  transform: scale(1.1) rotate(-6deg);
  background: rgba(255, 255, 255, 0.25);
}

.dd-wcard-body {
  flex: 1;
  min-width: 0;
}

.dd-wcard-stat {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.dd-wcard-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.15rem 0 0.35rem;
}

.dd-wcard-desc {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .dd-weather-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dd-weather-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .dd-weather-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .dd-weather-heading {
    font-size: 1.8rem;
  }

  .dd-wcard {
    padding: 1.25rem 1rem;
  }

  .dd-wcard-stat {
    font-size: 1.2rem;
  }
}

.dd-section-facts {
  background-color: var(--light-aqua);
  background-image: var(--gradient-aqua-fade);
}

.dd-facts-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dd-fact-card {
  padding: 1.25rem;
  text-align: center;
}

.dd-fact-icon-wrapper {
  margin: 0 auto 0.75rem auto;
}

.dd-fact-icon {
  width: 18px;
  height: 18px;
}

.dd-fact-text {
  font-size: 0.95rem;
  font-weight: 700;
}

.dd-section-faq {
  background-color: var(--white);
  padding: 5rem 2rem;
}

.dd-faq-container {
  max-width: 800px;
}

.dd-section-subscribe {
  background: var(--sand-beige);
  position: relative;
  z-index: 10;
}

.dd-banner-coral {
  background-image: var(--gradient-coral);
}

.dd-subscribe-msg {
  display: none;
  color: white;
  font-weight: 700;
  margin-top: 1rem;
}

.dd-section-cta {
  background-image: var(--gradient-ocean);
  text-align: center;
  padding: 6rem 2rem;
  color: white;
}

.dd-cta-container {
  max-width: 800px;
}

.dd-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin: 1rem 0 2rem 0;
}

.dd-btn-cta {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

/* ===== tours.php ===== */
.to-hero-section {
  background-image: var(--gradient-ocean);
  padding: 8rem 2rem 5rem 2rem;
  color: var(--white);
  text-align: center;
}

.to-hero-container {
  max-width: 800px;
}

.to-badge-coral {
  background: var(--gradient-coral);
  color: white;
  border: none;
}

.to-hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--white);
  margin: 1.5rem 0;
}

.to-hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.to-section-white-padding {
  background-color: var(--white);
  overflow: visible;
}

.to-btn-mt {
  margin-top: 1rem;
}

.to-selector-no-shadow {
  box-shadow: none;
}

.to-selector-grid-active {
  cursor: pointer;
  background-color: var(--light-gray);
}

.to-selector-item {
  cursor: pointer;
}

.to-grid-tours {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .to-grid-tours {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .to-grid-tours {
    grid-template-columns: 1fr;
  }
}

.active-filters-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: var(--light-aqua);
  border-radius: 12px;
  border: 1px solid var(--card-border);
}

.active-filters-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-ocean);
  margin-right: 0.25rem;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark-text);
  border: 1px solid var(--card-border);
}

.active-filter-tag i {
  font-size: 0.65rem;
  color: var(--body-text);
  cursor: pointer;
}

.active-filter-tag i:hover {
  color: var(--coral);
}

.clear-filters-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coral);
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.clear-filters-link:hover {
  color: var(--sunset-orange);
}

.to-no-results {
  text-align: center;
  background: var(--light-aqua);
  border-radius: 20px;
  border: 1px solid var(--card-border);
}

.to-no-results-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--turquoise);
  box-shadow: var(--shadow-sm);
}

.to-no-results h3 {
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.to-no-results p {
  color: var(--body-text);
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.to-card-image-200 {
  height: 200px;
}

.to-pagination-bar {
  margin-top: 3.5rem;
  justify-content: center;
  gap: 0.5rem;
}

.to-page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

.load-more-container {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.load-more-btn {
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(1, 83, 165, 0.25);
}

.load-more-loading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary-ocean);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 0;
}

.load-more-count {
  color: var(--body-text);
  font-size: 0.875rem;
  opacity: 0.8;
}

.to-icon-16 {
  width: 16px;
  height: 16px;
}

.to-cta-section {
  background-image: var(--gradient-coral);
  text-align: center;
  color: white;
}

.to-cta-container {
  max-width: 800px;
}

.to-cta-text {
  margin: 1rem 0 2rem 0;
  font-size: 1.15rem;
  font-weight: 500;
}

/* ===== activity-detail.php ===== */
.ad-hero-section {
  position: relative;
  height: 75vh;
  min-height: 500px;
  max-height: 900px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ad-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.ad-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.ad-hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #ff6a52, #e84c3d);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(232, 76, 61, 0.35);
}

.ad-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.ad-section-white {
  background-color: var(--white);
}

.ad-section-center {
  max-width: 850px;
  text-align: center;
}

.ad-section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin: 1.5rem 0;
}

.ad-body-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--body-text);
}

.ad-grid-tours {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ===== Section 3: Benefits ===== */
.ad-benefits-section {
  position: relative;
  background: linear-gradient(135deg, #0a4a7a 0%, #0d6b8a 50%, #1a8a9e 100%);
  padding: 5rem 2rem;
  overflow: hidden;
  color: #fff;
}

.ad-benefits-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  z-index: 1;
}

.ad-benefits-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ad-benefits-content {
  position: relative;
}

.ad-benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ad-benefits-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #fff;
}

.ad-benefits-title span {
  background: linear-gradient(135deg, #f5b895, #ff8a65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ad-benefits-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.ad-benefits-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.ad-benefit-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ad-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #f5b895;
}

.ad-stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.ad-benefits-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ad-benefits-card-decor {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-decor-circle {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  animation: ad-float 3s ease-in-out infinite;
}

.ad-decor-circle-1 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6a52, #e84c3d);
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.ad-decor-circle-2 {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f5b895, #f0a070);
  bottom: 15%;
  left: 5%;
  animation-delay: 0.5s;
}

.ad-decor-circle-3 {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #4dd0e1, #26c6da);
  top: 5%;
  left: 10%;
  animation-delay: 1s;
}

.ad-benefits-img-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 2px dashed rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.ad-benefits-img-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes ad-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .ad-benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .ad-benefits-stats {
    justify-content: center;
  }

  .ad-benefits-visual {
    display: none;
  }
}

/* ===== Section 5: Booking Cards ===== */
.ad-booking-section {
  background: linear-gradient(180deg, #e8f4f8 0%, #f5fafc 100%);
  padding: 5rem 2rem;
  position: relative;
}

.ad-booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.ad-booking-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.ad-booking-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #ffffff, #f0f8fc);
  border: 1px solid rgba(2, 182, 214, 0.15);
  border-radius: 24px;
  transition: all 0.4s ease;
}

.ad-booking-card:hover {
  transform: translateY(-12px);
}

.ad-booking-card:hover .ad-booking-card-bg {
  border-color: var(--turquoise);
  box-shadow: 0 20px 60px rgba(2, 182, 214, 0.2), 0 0 40px rgba(2, 182, 214, 0.08);
}

.ad-booking-card-content {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
  z-index: 1;
}

.ad-booking-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, #02b6d6, #0288a3);
  color: #fff;
  box-shadow: 0 8px 25px rgba(2, 182, 214, 0.3);
  transition: all 0.4s ease;
}

.ad-booking-card:hover .ad-booking-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 35px rgba(2, 182, 214, 0.4);
}

.ad-booking-tier {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff6a52, #e84c3d);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.ad-booking-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark-text);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.ad-booking-details {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--body-text);
}

.ad-booking-details span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ad-booking-details i {
  color: var(--turquoise);
  width: 16px;
}

.ad-booking-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.ad-status-available {
  background: linear-gradient(135deg, #e8f8f0, #d0f0e0);
  color: #0a7a4a;
}

.ad-status-limited {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  color: #c67a00;
}

.ad-booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-ocean), #0288a3);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 107, 133, 0.3);
}

.ad-booking-btn:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(2, 107, 133, 0.4);
}

.ad-booking-btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.ad-booking-btn:hover i {
  transform: translateX(3px);
}

.ad-booking-btn-alt {
  background: linear-gradient(135deg, #ff6a52, #e84c3d);
  box-shadow: 0 4px 15px rgba(232, 76, 61, 0.3);
}

.ad-booking-btn-alt:hover {
  box-shadow: 0 6px 20px rgba(232, 76, 61, 0.4);
}

@media (max-width: 1040px) {
  .ad-booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ad-booking-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ===== Section 6: Filter Finder ===== */
.ad-filter-section {
  background: linear-gradient(135deg, #0a4a7a 0%, #0d6b8a 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.ad-filter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(2, 182, 214, 0.15);
  filter: blur(60px);
}

.ad-filter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(245, 184, 149, 0.1);
  filter: blur(50px);
}

.ad-filter-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ad-filter-header {
  margin-bottom: 3rem;
}

.ad-filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1rem;
}

.ad-filter-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.ad-filter-title span {
  background: linear-gradient(135deg, #f5b895, #ff8a65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ad-filter-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.ad-filter-pills {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.ad-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  backdrop-filter: blur(10px);
}

.ad-filter-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.ad-filter-pill-active {
  background: rgba(255, 255, 255, 0.95);
  border-color: #fff;
  color: var(--primary-ocean);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ad-filter-pill-active .ad-pill-icon {
  background: linear-gradient(135deg, var(--primary-ocean), #0288a3);
  color: #fff;
}

.ad-pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.ad-filter-pill:hover .ad-pill-icon {
  background: rgba(255, 255, 255, 0.25);
}

.ad-pill-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--turquoise);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.ad-filter-pill-active .ad-pill-check {
  opacity: 1;
  transform: scale(1);
}

.ad-filter-result {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ad-filter-result i {
  color: #f5b895;
}

.ad-filter-result strong {
  color: #fff;
}

@media (max-width: 768px) {
  .ad-filter-pills {
    flex-direction: column;
    align-items: center;
  }

  .ad-filter-pill {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

.ad-card-image-160 {
  height: 160px;
}

.ad-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ad-card-body .ad-flex-between {
  margin-top: auto;
}

.ad-mt-05 {
  margin-top: 0.5rem;
}

.ad-card-text {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: var(--body-text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ad-flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.ad-price-color {
  color: var(--primary-ocean);
}

.ad-btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

.ad-section-sand {
  background-color: var(--sand-beige);
  background-image: var(--gradient-sand-fade);
}

.ad-card-padded-center {
  padding: 1.5rem;
  text-align: center;
}

.ad-flex-center {
  justify-content: center;
}

.ad-gap-1 {
  gap: 1rem;
}

.ad-gallery-card {
  height: 230px;
  border-radius: 12px;
}

.ad-quote-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  margin: 1rem 0;
}

.ad-name-color {
  color: var(--turquoise);
}

.ad-grid-wide {
  max-width: 900px;
  margin: 0 auto;
  gap: 2rem;
}

.ad-card-text-sm {
  font-size: 0.9rem;
  color: var(--body-text);
  overflow: hidden;
  line-height: 1.4;
}

.ad-icon-coral-lg {
  color: var(--coral);
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem auto;
}

.ad-icon-turquoise-lg {
  color: var(--turquoise);
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem auto;
}

.ad-container-slim {
  max-width: 800px;
}

.ad-section-subscribe {
  background: var(--light-aqua);
  position: relative;
  z-index: 10;
}

.ad-banner-coral {
  background-image: var(--gradient-coral);
}

.ad-subscribe-msg {
  display: none;
  color: white;
  font-weight: 700;
  margin-top: 1rem;
}

.ad-section-cta {
  background-image: var(--gradient-ocean);
  text-align: center;
  padding: 6rem 2rem;
  color: white;
}

.ad-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin: 1rem 0 2rem 0;
}

.ad-btn-cta {
  font-size: 1rem;
  padding: 1.1rem 2.5rem;
}

/* ===== attraction-detail.php ===== */
.at-hero-overlay {
  position: relative;
  z-index: 3;
  color: white;
}

.at-badge-coral {
  background: var(--gradient-coral);
  color: white;
  border: none;
}

.at-hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: white;
  margin-top: 1rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.at-section-white {
  background-color: var(--white);
}

.at-overview-container {
  max-width: 850px;
  text-align: center;
}

.at-overview-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin: 1.5rem 0;
}

.at-overview-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--body-text);
}

.at-section-aqua {
  background-color: var(--light-aqua);
  background-image: linear-gradient(180deg, #8ae7fd 0%, #ffffff 100%);
}

.at-history-container {
  max-width: 850px;
}

.at-history-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--dark-text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.at-history-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--body-text);
  text-align: justify;
}

.at-gallery-grid {
  gap: 1rem;
}

.at-gallery-card {
  height: 230px;
  border-radius: 12px;
}

.at-section-sand {
  background-color: var(--sand-beige);
  background-image: var(--gradient-sand-fade);
}

.at-highlights-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.at-highlight-card {
  padding: 2rem 1rem;
  background: white;
}

.at-highlight-title {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.at-geo-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin: 1rem 0;
}

.at-map-box {
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.at-iframe-border {
  border: 0;
}

.at-section-aqua-no-pad {
  background-color: var(--light-aqua);
  background-image: var(--gradient-aqua-fade);
}

.at-info-card {
  padding: 2rem;
  text-align: center;
}

.at-icon-coral {
  color: var(--coral);
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem auto;
}

.at-info-text {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  color: var(--body-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.at-icon-turquoise {
  color: var(--turquoise);
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem auto;
}

.at-icon-ocean {
  color: var(--primary-ocean);
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem auto;
}

.at-tour-card-body {
  padding: 2rem;
}

.at-tour-text {
  font-size: 0.9rem;
  margin-top: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.at-tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border-top: 1px solid #f1f6fa;
  padding-top: 1rem;
}

.at-tour-price {
  font-weight: 700;
  color: var(--primary-ocean);
}

.at-tour-btn {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

.at-review-container {
  max-width: 800px;
  text-align: center;
}

.at-section-header-mb {
  margin-bottom: 2rem;
}

.at-review-card {
  padding: 2.5rem;
  background: white;
}

.at-stars-center {
  justify-content: center;
}

.at-review-text {
  font-size: 1.2rem;
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--dark-text);
  margin: 1rem 0 1.5rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.at-review-author {
  font-size: 1rem;
  color: var(--turquoise);
}

.at-faq-container {
  max-width: 800px;
}

.at-section-subscribe {
  background-color: var(--light-aqua);
  position: relative;
  z-index: 10;
}

.at-banner-coral {
  background-image: var(--gradient-coral);
}

.at-subscribe-msg {
  display: none;
  color: white;
  font-weight: 700;
  margin-top: 1rem;
}

.at-section-cta {
  background-image: var(--gradient-ocean);
  text-align: center;
  padding: 6rem 2rem;
  color: white;
}

.at-cta-container {
  max-width: 800px;
}

.at-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin: 1rem 0 2rem 0;
}

.at-btn-cta {
  font-size: 1rem;
  padding: 1.1rem 2.5rem;
}

/* ===== blog-detail.php ===== */
.bl-hero-overlay {
  position: relative;
  z-index: 3;
  color: white;
}

.bl-badge-coral {
  background: var(--gradient-coral);
  color: white;
  border: none;
}

.bl-hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: white;
  margin-top: 1rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.bl-hero-meta {
  margin-top: 1rem;
  font-weight: 500;
}

.bl-section-white {
  background-color: var(--white);
  padding: 5rem 2rem;
}

.bl-content-container {
  max-width: 800px;
}

.bl-content-body {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--body-text);
}

.bl-blockquote {
  margin: 3.5rem 0;
  padding-left: 2rem;
  border-left: 5px solid var(--coral);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.5;
}

.bl-share-bar {
  border-top: 1px solid #f0f4f8;
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl-back-link {
  color: var(--primary-ocean);
  font-weight: 700;
  text-decoration: none;
}

.bl-share-icons {
  display: flex;
  gap: 1rem;
}

.bl-share-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.bl-social-fb {
  color: var(--turquoise);
}

.bl-social-ig {
  color: var(--coral);
}

.bl-icon-middle {
  vertical-align: middle;
}

/* ===== about.php ===== */
.about-hero-section {
  background-image: var(--gradient-ocean);
  padding: 8rem 2rem 5rem 2rem;
  color: var(--white);
  text-align: center;
}

.about-hero-container {
  max-width: 800px;
}

.about-badge-coral {
  background: var(--gradient-coral);
  color: white;
  border: none;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--white);
  margin: 1.5rem 0;
}

.about-hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.about-section-white {
  background-color: var(--white);
  padding: 5rem 2rem;
}

.about-mb-5 {
  margin-bottom: 5rem;
}

.about-h3-serif {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin: 1rem 0;
}

.about-p-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--body-text);
}

.about-p-body-mt {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--body-text);
  margin-top: 1rem;
}

.about-img-frame {
  border-radius: 24px;
  box-shadow: var(--shadow-luxury);
}

.about-layout-reverse {
  grid-template-areas: 'img text';
  margin-bottom: 5rem;
}

.about-grid-img {
  grid-area: img;
}

.about-grid-text {
  grid-area: text;
  padding-left: 2rem;
}

.about-section-aqua {
  background-color: var(--light-aqua);
  background-image: var(--gradient-aqua-fade);
  padding: 5rem 2rem;
}

.about-card-center {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.about-step-center {
  margin: 0 auto 1.5rem auto;
}

.about-p-role {
  font-weight: 700;
  color: var(--turquoise);
  margin-bottom: 0.5rem;
}

.about-p-sm {
  font-size: 0.9rem;
}

.about-cta-section {
  background-image: var(--gradient-coral);
  text-align: center;
  color: white;
}

.about-cta-container {
  max-width: 800px;
}

.about-cta-text {
  margin: 1rem 0 2rem 0;
  font-size: 1.15rem;
  font-weight: 500;
}

/* ===== activities.php ===== */
.act-hero-section {
  background-image: var(--gradient-ocean);
  padding: 8rem 2rem 5rem 2rem;
  color: var(--white);
  text-align: center;
}

.act-hero-container {
  max-width: 800px;
}

.act-badge-coral {
  background: var(--gradient-coral);
  color: white;
  border: none;
}

.act-hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--white);
  margin: 1.5rem 0;
}

.act-hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.act-section-white {
  background-color: var(--white);
}

.act-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.act-card-image-220 {
  height: 220px;
}

.act-card-body {
  padding: 1.5rem;
}

.act-tour-count {
  font-size: 0.8rem;
  color: var(--turquoise);
  font-weight: 600;
}

.act-btn-mt {
  margin-top: 0.8rem;
}

.act-cta-section {
  background-image: var(--gradient-coral);
  text-align: center;
  color: white;
}

.act-cta-container {
  max-width: 800px;
}

.act-cta-text {
  margin: 1rem 0 2rem 0;
  font-size: 1.15rem;
  font-weight: 500;
}

/* ===== attractions.php ===== */
.attr-hero-section {
  background-image: var(--gradient-ocean);
  padding: 8rem 2rem 5rem 2rem;
  color: var(--white);
  text-align: center;
}

.attr-hero-container {
  max-width: 800px;
}

.attr-badge-coral {
  background: var(--gradient-coral);
  color: white;
  border: none;
}

.attr-hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--white);
  margin: 1.5rem 0;
}

.attr-hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.attr-section-white {
  background-color: var(--white);
}

.attr-card-image-230 {
  height: 230px;
}

.attr-cta-section {
  background-image: var(--gradient-coral);
  text-align: center;
  color: white;
}

.attr-cta-container {
  max-width: 750px;
}

.attr-cta-text {
  margin: 1rem 0 2rem 0;
  font-size: 1.15rem;
}

/* ===== blog.php ===== */
.bl-hero-section {
  background-image: var(--gradient-ocean);
  padding: 8rem 2rem 5rem 2rem;
  color: var(--white);
  text-align: center;
}

.bl-hero-container {
  max-width: 800px;
}

.bl-badge-coral {
  background: var(--gradient-coral);
  color: white;
  border: none;
}

.bl-hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--white);
  margin: 1.5rem 0;
}

.bl-hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.bl-section-white {
  background-color: var(--white);
}

.bl-card-image-230 {
  height: 230px;
}

.bl-date-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coral);
}

.bl-h3-margin {
  margin: 0.5rem 0;
}

.bl-article-footer {
  margin-top: 1.5rem;
  border-top: 1px solid #f0f5fa;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl-btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

.bl-pagination-bar {
  margin-top: 3.5rem;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: none;
}

.bl-page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

.bl-icon-16 {
  width: 16px;
  height: 16px;
}

.bl-cta-section {
  background-image: var(--gradient-coral);
  text-align: center;
  color: white;
}

.bl-cta-container {
  max-width: 800px;
}

.bl-cta-text {
  margin: 1rem 0 2rem 0;
  font-size: 1.15rem;
  font-weight: 500;
}

/* ===== destinations.php ===== */
.dest-hero-section {
  background-image: var(--gradient-ocean);
  padding: 8rem 2rem 5rem 2rem;
  color: var(--white);
  text-align: center;
}

.dest-hero-container {
  max-width: 800px;
}

.dest-badge-coral {
  background: var(--gradient-coral);
  color: white;
  border: none;
}

.dest-hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--white);
  margin: 1.5rem 0;
}

.dest-hero-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.dest-section-white {
  background-color: var(--white);
}

.dest-card-image-230 {
  height: 230px;
}

.dest-section-aqua {
  background-color: var(--light-aqua);
  background-image: var(--gradient-aqua-fade);
}

.dest-mb-5 {
  margin-bottom: 5rem;
}

.dest-badge-coral-light {
  background-color: #ffebe8;
  color: var(--coral);
  border: none;
}

.dest-h3-serif {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin: 1rem 0;
}

.dest-p-body {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.dest-img-frame {
  border-radius: 24px;
  box-shadow: var(--shadow-luxury);
  border: 8px solid white;
}

.dest-layout-reverse {
  grid-template-areas: 'img text';
}

.dest-grid-img {
  grid-area: img;
}

.dest-grid-text {
  grid-area: text;
  padding-left: 2rem;
}

.dest-cta-section {
  background-image: var(--gradient-coral);
  text-align: center;
  color: white;
}

.dest-cta-container {
  max-width: 700px;
}

.dest-cta-text {
  margin: 1rem 0 2rem 0;
  font-size: 1.15rem;
  font-weight: 500;
}

/* ===== travel-guide.php ===== */
.guide-hero-section {
  background-image: var(--gradient-ocean);
  padding: 8rem 2rem 5rem 2rem;
  color: var(--white);
  text-align: center;
}

.guide-hero-container {
  max-width: 800px;
}

.guide-badge-coral {
  background: var(--gradient-coral);
  color: white;
  border: none;
}

.guide-hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--white);
  margin: 1.5rem 0;
}

.guide-hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.guide-section-white {
  background-color: var(--white);
}

.guide-chapters-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.guide-chapter-card {
  padding: 1.5rem;
  text-decoration: none;
}

.guide-chapter-icon {
  color: var(--coral);
  width: 24px;
  height: 24px;
  margin-bottom: 0.5rem;
}

.guide-chapter-icon-turquoise {
  color: var(--turquoise);
  width: 24px;
  height: 24px;
  margin-bottom: 0.5rem;
}

.guide-chapter-icon-ocean {
  color: var(--primary-ocean);
  width: 24px;
  height: 24px;
  margin-bottom: 0.5rem;
}

.guide-chapter-title {
  font-size: 1rem;
  color: var(--dark-text);
}

.guide-section-scroll {
  margin-bottom: 5rem;
  scroll-margin-top: 100px;
}

.guide-h3-serif {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin: 1rem 0;
}

.guide-p-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--body-text);
}

.guide-p-body-mt {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--body-text);
  margin-top: 1rem;
}

.guide-img-frame {
  border-radius: 20px;
  box-shadow: var(--shadow-luxury);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.guide-layout-reverse {
  grid-template-areas: 'img text';
  margin-bottom: 5rem;
  scroll-margin-top: 100px;
}

.guide-grid-img {
  grid-area: img;
}

.guide-grid-text {
  grid-area: text;
  padding-left: 2rem;
}

.guide-p-warning {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--body-text);
  margin-top: 1rem;
  font-weight: 600;
  color: var(--coral);
}

.guide-grid-gap {
  gap: 2.5rem;
  margin-bottom: 5rem;
  scroll-margin-top: 100px;
}

.guide-card-padding {
  padding: 2.5rem;
}

.guide-h3-margin {
  margin: 1rem 0 0.5rem 0;
}

.guide-p-card {
  font-size: 0.95rem;
  color: var(--body-text);
}

.guide-section-scroll-only {
  scroll-margin-top: 100px;
  margin-bottom: 5rem;
}

.guide-cta-section {
  background-image: var(--gradient-coral);
  text-align: center;
  color: white;
}

.guide-cta-container {
  max-width: 800px;
}

.guide-cta-text {
  margin: 1rem 0 2rem 0;
  font-size: 1.15rem;
  font-weight: 500;
}

/* ===== contact.php ===== */
.cont-hero-section {
  background-image: var(--gradient-ocean);
  padding: 8rem 2rem 5rem 2rem;
  color: var(--white);
  text-align: center;
}

.cont-hero-container {
  max-width: 800px;
}

.cont-badge-coral {
  background: var(--gradient-coral);
  color: white;
  border: none;
}

.cont-hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--white);
  margin: 1.5rem 0;
}

.cont-hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.cont-section-white {
  background-color: var(--white);
  padding: 5rem 2rem;
}

.cont-grid-2cols {
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
}

.cont-h2-serif {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin: 1rem 0;
}

.cont-p-body {
  color: var(--body-text);
  margin-bottom: 2rem;
}

.cont-contact-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cont-contact-card {
  padding: 1.5rem;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
}

.cont-icon-circle {
  background-image: var(--gradient-ocean);
  color: white;
  width: 48px;
  height: 48px;
}

.cont-h4-lg {
  font-size: 1.1rem;
}

.cont-map-box {
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2.5rem;
}

.cont-iframe-border {
  border: 0;
}

.cont-sidebar-card {
  box-shadow: var(--shadow-luxury);
  border: 1px solid #e3edf5;
  width: 100%;
  position: static;
}

.cont-sidebar-header {
  background-image: var(--gradient-coral);
}

.cont-form-padding {
  padding: 2rem;
}

.cont-textarea-style {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  padding: 0.85rem;
  outline: none;
}

.cont-btn-mt {
  margin-top: 1rem;
}

.cont-success-msg {
  display: none;
  color: var(--sea-green);
  font-weight: 700;
  text-align: center;
  padding: 2rem;
}

/* ===== footer.php ===== */
.foot-newsletter-msg {
  display: none;
}

/* Shared utilities for remaining inline styles */
.guide-icon-warning {
  vertical-align: middle;
  width: 18px;
  height: 18px;
}

.cont-phone-text {
  color: var(--turquoise);
  font-weight: 700;
}

.cont-sidebar-title {
  color: white;
  font-size: 1.5rem;
}

.cont-icon-middle {
  vertical-align: middle;
}

/* ===== tour-detail.php (Viator-style redesign) ===== */
.td-hero-gallery {
  display: flex;
  gap: 4px;
  height: 420px;
  background: #1a1a2e;
  overflow: hidden;
}

.td-hero-main-img {
  flex: 1;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.td-hero-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.td-hero-img-count {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.td-hero-thumbs {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.td-hero-thumb {
  width: 140px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.td-hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.td-hero-thumb-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.td-hero-thumb-more:hover {
  background: rgba(0, 0, 0, 0.85);
}

.td-title-bar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 1.25rem 0;
}

.td-title-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.td-title-h1 {
  font-family: var(--font-sans);
  font-size: 1.65rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.td-title-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #555;
}

.td-star-rating {
  color: #f1c40f;
  font-weight: 600;
  color: #1a1a2e;
}

.td-star-rating i {
  color: #f1c40f;
}

.td-meta-sep {
  color: #ccc;
}

.td-review-link {
  color: #0071c2;
  text-decoration: underline;
  cursor: pointer;
}

.td-title-price {
  text-align: right;
  flex-shrink: 0;
}

.td-price-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.05em;
}

.td-price-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a2e;
}

/* Section Nav */
.td-section-nav {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: relative;
  z-index: 100;
}

.td-section-nav.sticky {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.td-section-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.td-nav-link {
  display: block;
  padding: 0.85rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.td-nav-link:hover,
.td-nav-link.active {
  color: #0071c2;
  border-bottom-color: #0071c2;
}

/* Main Two-Column */
.td-main-content {
  background: #fff;
  padding: 2rem 0 4rem;
}

.td-layout-2col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.td-left-col {
  min-width: 0;
}

.td-right-col {
  position: relative;
}

.td-sidebar-sticky {
  position: sticky;
  top: 150px;
}

.td-section-block {
  scroll-margin-top: 140px;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #eee;
}

.td-section-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.td-section-title {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 1rem;
}

.td-subsection-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 1.25rem 0 0.75rem;
}

.td-desc-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}

/* Checklists */
.td-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.td-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}

.td-check-icon {
  color: #2ecc71;
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.td-ex-icon {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Meeting & Pickup */
.td-meeting-card {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

.td-meeting-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #edf2f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0071c2;
  font-size: 0.9rem;
}

.td-meeting-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.2rem;
}

.td-meeting-address {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
}

.td-map-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #0071c2;
  text-decoration: none;
  font-weight: 500;
}

.td-map-link:hover {
  text-decoration: underline;
}

.td-map-sm {
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1rem;
}

.td-map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 350px;
}

/* Itinerary */
.td-itinerary {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.td-itinerary-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #eef2f7;
}

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

.td-itin-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0071c2;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.td-itin-body {
  flex: 1;
  min-width: 0;
}

.td-itin-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 0.3rem;
}

.td-itin-body p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.td-itin-duration {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #888;
}

.td-itin-duration i {
  margin-right: 0.25rem;
}

/* Additional Info */
.td-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.td-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}

.td-info-icon {
  color: #0071c2;
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.td-operator-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #555;
}

.td-product-code {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.3rem;
}

/* Cancellation */
.td-cancel-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #f8ffed;
  border: 1px solid #d4edda;
  border-radius: 12px;
}

.td-cancel-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #d4edda;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #28a745;
  font-size: 1.1rem;
}

.td-cancel-desc {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.td-cancel-type {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #888;
}

/* Reviews */
.td-reviews-summary {
  margin-bottom: 1.5rem;
}

.td-review-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.td-review-big {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1;
}

.td-review-stars {
  display: flex;
  gap: 2px;
  color: #f1c40f;
  font-size: 1.1rem;
}

.td-review-count {
  font-size: 0.85rem;
  color: #666;
}

.td-no-reviews {
  font-size: 0.9rem;
  color: #999;
}

/* Sidebar */
.td-sidebar-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.td-sidebar-price {
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 1.25rem;
}

.td-price-from {
  display: block;
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.td-price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
}

.td-sidebar-row {
  margin-bottom: 1rem;
}

.td-sidebar-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.td-sidebar-desc {
  font-size: 0.88rem;
  color: #333;
  margin: 0;
}

.td-sidebar-input,
.td-sidebar-select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #333;
  background: #fff;
  box-sizing: border-box;
}

.td-sidebar-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem;
  font-size: 1rem;
}

.td-sidebar-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #555;
}

.td-sidebar-badges i {
  width: 16px;
  color: #2ecc71;
  margin-right: 0.3rem;
}

.td-sidebar-footer {
  margin-top: 1rem;
}

.td-booking-msg {
  display: none;
  color: var(--sea-green);
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* Activity detail hero & tours responsive */
@media (max-width: 1040px) {
  .ad-hero-section {
    height: 65vh;
    min-height: 420px;
  }

  .ad-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
  }

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

@media (max-width: 768px) {
  .ad-hero-section {
    height: 60vh;
    min-height: 380px;
  }

  .ad-hero-title {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

  .ad-hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 1.2rem;
  }

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

@media (max-width: 640px) {
  .ad-hero-section {
    height: 55vh;
    min-height: 320px;
  }

  .ad-hero-content {
    padding: 1.5rem;
  }

  .ad-hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .td-hero-gallery {
    height: 300px;
  }

  .td-hero-thumbs {
    display: none;
  }

  .td-layout-2col {
    grid-template-columns: 1fr;
  }

  .td-sidebar-sticky {
    position: static;
  }

  .td-title-bar-inner {
    flex-direction: column;
  }

  .td-title-price {
    text-align: left;
  }

  .td-section-nav-inner {
    gap: 0;
  }

  .td-nav-link {
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .td-hero-gallery {
    height: 220px;
  }

  .td-title-h1 {
    font-size: 1.3rem;
  }

  .td-price-value {
    font-size: 1.3rem;
  }

  .td-layout-2col {
    gap: 2rem;
  }
}

/* ===== Scroll to Top Button ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e7490 0%, #0891b2 50%, #06b6d4 100%);
  border: none;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.8);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.5s,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  overflow: visible;
  pointer-events: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.5);
  background: linear-gradient(135deg, #0e7490 0%, #06b6d4 50%, #22d3ee 100%);
}

.scroll-top-btn:active {
  transform: scale(0.92);
}

.stp-icon {
  font-size: 1.3rem;
  color: white;
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-top-btn:hover .stp-icon {
  transform: rotate(-12deg) scale(1.15);
}

/* Water ripple waves behind the button */
.stp-wave {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(6, 182, 212, 0.3);
  animation: stp-ripple 2.5s ease-out infinite;
  pointer-events: none;
  opacity: 0;
}

.stp-wave-1 {
  animation-delay: 0s;
}

.stp-wave-2 {
  animation-delay: 0.8s;
}

.stp-wave-3 {
  animation-delay: 1.6s;
}

@keyframes stp-ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
    border-width: 2px;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
    border-width: 1px;
  }
}

/* Cinematic glow pulse on the button */
.scroll-top-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
  animation: stp-glow 2s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes stp-glow {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.5);
    opacity: 1;
  }
}

/* Tooltip */
.stp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
}

.stp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid rgba(15, 23, 42, 0.9);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.scroll-top-btn:hover .stp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Water splash / shake animation on click */
@keyframes stp-splash {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.6), 0 4px 20px rgba(6, 182, 212, 0.35);
    transform: scale(1);
  }

  15% {
    box-shadow: 0 0 0 20px rgba(6, 182, 212, 0), 0 0 0 40px rgba(6, 182, 212, 0);
    transform: scale(1.25);
  }

  30% {
    transform: scale(0.9) translateX(-4px);
  }

  45% {
    transform: scale(1.05) translateX(4px);
  }

  60% {
    transform: scale(0.95) translateX(-3px);
  }

  75% {
    transform: scale(1.02) translateX(2px);
  }

  90% {
    transform: scale(0.98) translateX(-1px);
  }

  100% {
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
    transform: scale(1) translateX(0);
  }
}

.scroll-top-btn.splashing {
  animation: stp-splash 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Floating particles that burst on click */
.stp-particle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  animation: stp-particle-float 1s ease-out forwards;
}

@keyframes stp-particle-float {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .scroll-top-btn {
    width: 48px;
    height: 48px;
    bottom: 1.5rem;
    right: 1.5rem;
  }

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

  .stp-tooltip {
    display: none;
  }
}

/* ===== 3D Ocean CTA Section ===== */
.ocean-cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 4.5rem 1.5rem;
}

.ocean-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0c4a6e 0%, #0e7490 30%, #0d9488 60%, #0f766e 85%, #0c4a6e 100%);
  z-index: 0;
}

.ocean-cta-surface {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(34, 211, 238, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.ocean-cta-wave {
  position: absolute;
  width: 200%;
  height: 120px;
  bottom: 0;
  left: -50%;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.3;
  will-change: transform;
}

.ocean-cta-wave-1 {
  background: radial-gradient(ellipse at 50% 100%, rgba(34, 211, 238, 0.4) 0%, transparent 70%);
  animation: octa-wave-drift 2.5s ease-in-out infinite alternate;
  bottom: -20px;
}

.ocean-cta-wave-2 {
  background: radial-gradient(ellipse at 50% 100%, rgba(14, 116, 144, 0.5) 0%, transparent 70%);
  animation: octa-wave-drift 3s ease-in-out infinite alternate-reverse;
  bottom: -40px;
  opacity: 0.2;
}

.ocean-cta-wave-3 {
  background: radial-gradient(ellipse at 50% 100%, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
  animation: octa-wave-drift 2s ease-in-out infinite alternate;
  bottom: -10px;
  opacity: 0.15;
}

@keyframes octa-wave-drift {
  0% {
    transform: translateX(-5%) scaleY(1);
  }

  100% {
    transform: translateX(5%) scaleY(1.2);
  }
}

.ocean-cta-deep {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(34, 211, 238, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
  z-index: 1;
}

/* Floating bubbles */
.ocean-cta-bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.octa-bubble {
  position: absolute;
  bottom: -30px;
  left: var(--x);
  width: calc(10px * var(--s));
  height: calc(10px * var(--s));
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: octa-bubble-rise 2.5s linear infinite;
  animation-delay: var(--d);
  will-change: transform;
}

@keyframes octa-bubble-rise {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 0;
  }

  10% {
    opacity: 0.5;
    transform: translateY(0) scale(1);
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(calc(-100vh)) scale(0.6);
    opacity: 0;
  }
}

.octa-bubble:nth-child(odd) {
  --x-offset: 40px;
}

.octa-bubble:nth-child(even) {
  --x-offset: -30px;
}

/* Sea life illustrations */
.ocean-cta-sea-life {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.ocean-cta-creature {
  position: absolute;
  display: block;
  will-change: transform;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.22));
}

.ocean-cta-creature--fish-a {
  top: 10%;
  left: -90px;
  width: clamp(68px, 7vw, 96px);
  animation: ocean-fish-swim-right 16s linear infinite;
}

.ocean-cta-creature--fish-b {
  right: -100px;
  bottom: 12%;
  width: clamp(74px, 7.5vw, 108px);
  transform: scaleX(-1);
  animation: ocean-fish-swim-left 18s linear infinite 2s;
}

.ocean-cta-creature--turtle {
  top: 18%;
  right: 10%;
  width: clamp(84px, 8vw, 118px);
  animation: ocean-turtle-glide 7.5s ease-in-out infinite alternate;
}

.ocean-cta-creature--jelly {
  right: 7%;
  bottom: 27%;
  width: clamp(52px, 5vw, 74px);
  opacity: 0.9;
  animation: ocean-jelly-float 4.4s ease-in-out infinite alternate;
}

.ocean-cta-creature--star {
  left: 5%;
  bottom: 24%;
  width: clamp(42px, 4.5vw, 60px);
  animation: ocean-starfish-pulse 5s ease-in-out infinite;
}

@keyframes ocean-fish-swim-right {
  0% {
    transform: translateX(0) translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateX(50vw) translateY(10px) rotate(2deg);
  }

  100% {
    transform: translateX(calc(100vw + 180px)) translateY(-4px) rotate(-2deg);
  }
}

@keyframes ocean-fish-swim-left {
  0% {
    transform: scaleX(-1) translateX(0) translateY(0) rotate(2deg);
  }

  50% {
    transform: scaleX(-1) translateX(-50vw) translateY(-10px) rotate(-2deg);
  }

  100% {
    transform: scaleX(-1) translateX(calc(-100vw - 180px)) translateY(6px) rotate(1deg);
  }
}

@keyframes ocean-jelly-float {
  0% {
    transform: translateY(0) rotate(-2deg);
  }

  100% {
    transform: translateY(-18px) rotate(3deg);
  }
}

@keyframes ocean-starfish-pulse {

  0%,
  100% {
    transform: translateY(0) rotate(-8deg) scale(0.96);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-6px) rotate(2deg) scale(1.04);
    opacity: 1;
  }
}

@keyframes ocean-turtle-glide {
  0% {
    transform: translate(0, 0) rotate(-3deg);
  }

  100% {
    transform: translate(-22px, -14px) rotate(2deg);
  }
}

/* 3D card */
.ocean-cta-container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
}

.ocean-cta-card {
  position: relative;
  width: 100%;
  padding: 3rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25),
    0 0 60px rgba(6, 182, 212, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}

.ocean-cta-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(6, 182, 212, 0.2);
  border-color: rgba(255, 255, 255, 0.25);
}

.ocean-cta-card-shine {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0) 60%);
  background-size: 200% 200%;
  animation: octa-shine 2s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes octa-shine {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

.ocean-cta-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #67e8f9;
  background: rgba(6, 182, 212, 0.15);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  margin-bottom: 1.5rem;
}

.ocean-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: white;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.ocean-cta-heading span {
  background: linear-gradient(135deg, #22d3ee, #67e8f9, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ocean-cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.ocean-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 1rem 2.5rem;
  border-radius: 60px;
  background: linear-gradient(135deg, #fff, #f0fdfa);
  color: #0c4a6e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  position: relative;
}

.ocean-cta-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.ocean-cta-btn:hover::after {
  transform: translateX(4px);
}

.ocean-cta-btn:active {
  transform: scale(0.96);
}

/* Ripple rings below button */
.ocean-cta-ripples {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  height: 20px;
}

.ocean-cta-ripples span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  animation: octa-ripple-dot 1s ease-in-out infinite;
}

.ocean-cta-ripples span:nth-child(2) {
  animation-delay: 0.2s;
}

.ocean-cta-ripples span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes octa-ripple-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .ocean-cta-section {
    padding: 5rem 1.5rem;
    min-height: 420px;
  }

  .ocean-cta-card {
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
  }

  .ocean-cta-card:hover {
    transform: none;
  }

  .ocean-cta-heading {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .ocean-cta-text {
    font-size: 0.95rem;
  }

  .ocean-cta-btn {
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
  }

  .ocean-cta-creature--turtle,
  .ocean-cta-creature--jelly {
    right: 4%;
  }

  .ocean-cta-creature--star {
    left: 3%;
    bottom: 18%;
  }
}

@media (max-width: 480px) {
  .ocean-cta-section {
    padding: 4rem 1rem;
    min-height: 360px;
  }

  .ocean-cta-card {
    padding: 2rem 1.25rem;
  }

  .ocean-cta-heading {
    font-size: 1.4rem;
  }

  .ocean-cta-creature--fish-a,
  .ocean-cta-creature--fish-b,
  .ocean-cta-creature--jelly,
  .ocean-cta-creature--star {
    opacity: 0.72;
  }

  .ocean-cta-creature--turtle {
    width: 74px;
    top: 12%;
  }
}

/* ====== TOUR DETAIL REDESIGN ====== */

.td-404 {
  padding: 12rem 2rem 8rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.td-404-inner {
  max-width: 480px;
}

.td-404-icon {
  font-size: 3.5rem;
  color: var(--turquoise);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.td-404 h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.td-404 p {
  font-size: 1.1rem;
  color: var(--body-text);
  margin-bottom: 2rem;
}


/* ===== TOUR DETAIL - CINEMATIC HERO ===== */
.td-hero-cine {
  position: relative;
  height: 95vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin-top: -1px;
}

.td-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.td-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 22, 40, 0.3) 0%,
      rgba(10, 22, 40, 0.15) 30%,
      rgba(10, 22, 40, 0.6) 60%,
      rgba(10, 22, 40, 0.92) 100%);
  z-index: 1;
}

.td-hero-breadcrumb {
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 2rem;
}

.td-hero-breadcrumb .container-width {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.td-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.td-hero-breadcrumb a:hover {
  color: #fff;
}

.td-hero-breadcrumb i {
  font-size: 0.55rem;
  opacity: 0.5;
}

.td-hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.td-hero-body {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 2rem;
  margin-top: -2rem;
}

.td-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.15rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.td-hero-body .td-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 0.75rem;
  max-width: 800px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.td-hero-sub {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.td-hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.td-hero-stats-bottom {
  flex: 0 0 100%;
  gap: 2rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.td-hero-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.td-hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.td-hero-stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.td-hero-stat span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.td-hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1.5rem 2rem 2rem;
  background: linear-gradient(0deg, rgba(10, 22, 40, 0.7) 0%, transparent 100%);
}

.td-hero-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.td-hero-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.td-hero-price-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.td-hero-price-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: var(--font-display);
}

.td-hero-price-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.td-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.td-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.td-hero-btn-primary {
  background: linear-gradient(135deg, #ff6a52, #ff9130);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 106, 82, 0.35);
}

.td-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 106, 82, 0.45);
}

.td-hero-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.td-hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.td-hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.5;
  animation: tdScrollBounce 2.5s ease-in-out infinite;
}

.td-hero-scroll span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.td-hero-scroll i {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes tdScrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* Responsive: Cinematic Hero */
@media (max-width: 1024px) {
  .td-hero-cine {
    height: auto;
    min-height: 100svh;
    padding-top: 100px;
    padding-bottom: 0;
  }

  .td-hero-breadcrumb {
    top: 110px;
  }

  .td-hero-body {
    padding: 6rem 1.5rem 2rem;
    margin-top: 0;
  }

  .td-hero-bottom {
    position: relative;
    padding: 1.25rem 1.5rem;
    background: rgba(10, 22, 40, 0.95);
  }

  .td-hero-bottom-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .td-hero-actions {
    flex-direction: column;
  }

  .td-hero-btn {
    width: 100%;
    justify-content: center;
  }

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

  .td-hero-stats {
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .td-hero-body {
    padding: 5rem 1rem 1.5rem;
  }

  .td-hero-breadcrumb {
    top: 100px;
    padding: 0 1rem;
  }

  .td-hero-breadcrumb span {
    max-width: 120px;
  }

  .td-hero-stat-icon {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  .td-hero-price-number {
    font-size: 1.8rem;
  }

  .td-hero-bottom {
    padding: 1rem;
  }
}

/* td-nav - native sticky */
.td-nav {
  position: sticky;
  width: 1280px;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  top: 92px;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid rgba(2, 182, 214, 0.1);
  box-shadow: 0 4px 20px rgba(1, 83, 165, 0.08);
}

.td-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.td-nav-inner::-webkit-scrollbar {
  display: none;
}

.td-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--body-text);
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.td-nav-link:hover {
  color: var(--primary-ocean);
}

.td-nav-link.active {
  color: var(--primary-ocean);
  border-bottom-color: var(--primary-ocean);
}

.td-nav-book {
  margin-left: auto;
  background: var(--gradient-coral);
  color: #fff !important;
  border-radius: 0 0 12px 12px;
  padding: 1rem 1.75rem;
  border-bottom: none !important;
}

.td-nav-book:hover {
  opacity: 0.9;
}

.td-main {
  padding: 3rem 2rem 5rem;
  background: #f8fafc;
}

.td-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.td-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.td-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(2, 182, 214, 0.08);
  transition: box-shadow 0.3s ease;
}

.td-card:hover {
  box-shadow: var(--shadow-md);
}

.td-section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.td-title-accent {
  display: inline-block;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: var(--gradient-ocean);
  flex-shrink: 0;
}

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

.td-desc p {
  margin-bottom: 1rem;
}

.td-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.td-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--light-aqua);
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--dark-text);
  line-height: 1.4;
  transition: background 0.2s ease, transform 0.2s ease;
}

.td-highlight-item:hover {
  background: #d4eaea;
  transform: translateX(3px);
}

.td-highlight-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  margin-top: 1px;
}

.td-love-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #fef2f2, #fff5f5);
  border-radius: 14px;
  margin-top: 1.25rem;
  border: 1px solid rgba(239, 68, 68, 0.08);
}

.td-love-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.12);
}

.td-love-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.35rem;
}

.td-love-card p {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.6;
}

.td-perfect-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #f0fdf4, #f0fdf4);
  border-radius: 14px;
  margin-top: 0.75rem;
  border: 1px solid rgba(34, 197, 94, 0.08);
}

.td-perfect-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.12);
}

.td-perfect-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.35rem;
}

.td-perfect-card p {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.6;
}

.td-inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.td-inc-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.td-inc-included {
  color: #16a34a;
}

.td-inc-excluded {
  color: #dc2626;
}

.td-inc-included i {
  font-size: 1rem;
}

.td-inc-excluded i {
  font-size: 1rem;
}

.td-inc-list {
  list-style: none;
}

.td-inc-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--body-text);
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.td-inc-list li:last-child {
  border-bottom: none;
}

.td-inc-list-yes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.td-inc-list-no li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}

.td-itin-desc {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}

.td-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.td-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--turquoise), var(--primary-ocean));
  border-radius: 2px;
}

.td-timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}

.td-timeline-item:last-child {
  margin-bottom: 0;
}

.td-timeline-num {
  position: absolute;
  left: -2.5rem;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-ocean);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(1, 83, 165, 0.25);
}

.td-timeline-body h4 {
  font-size: 1.05rem;
  color: var(--dark-text);
  margin-bottom: 0.35rem;
}

.td-timeline-body p {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

.td-timeline-dur {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--turquoise);
  font-weight: 600;
}

.td-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.td-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--light-gray);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.4;
}

.td-info-item i {
  color: var(--turquoise);
  margin-top: 2px;
  flex-shrink: 0;
}

.td-supplier {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--light-aqua);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--body-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.td-supplier i {
  color: var(--primary-ocean);
}

.td-product-code {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

.td-meeting-block {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--light-aqua);
  border-radius: 14px;
  margin-bottom: 0.75rem;
}

.td-meeting-block-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(1, 83, 165, 0.1);
}

.td-meeting-block-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.25rem;
}

.td-meeting-block-body p {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.5;
}

.td-meeting-address {
  font-weight: 600;
}

.td-map-wrap {
  margin-top: 1rem;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.td-cancel-block {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #fefce8, #fef9c3);
  border-radius: 14px;
  border: 1px solid rgba(234, 179, 8, 0.1);
}

.td-cancel-block-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #eab308;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.td-cancel-block-body p {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.5;
}

.td-cancel-type {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.65rem;
  background: rgba(234, 179, 8, 0.12);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #a16207;
}

.td-reviews-summary {
  text-align: center;
  padding: 1.5rem;
}

.td-review-big-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark-text);
  display: block;
  line-height: 1;
}

.td-review-big-stars {
  margin: 0.5rem 0;
  font-size: 1.25rem;
  color: #f59e0b;
}

.td-review-big-count {
  font-size: 0.9rem;
  color: var(--body-text);
}

.td-no-reviews {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--body-text);
}

.td-no-reviews i {
  font-size: 2rem;
  color: var(--turquoise);
  margin-bottom: 0.75rem;
  opacity: 0.4;
}

.td-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.td-sidebar-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(2, 182, 214, 0.12);
}

.td-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.td-sidebar-from {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  font-weight: 600;
}

.td-sidebar-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-ocean);
  line-height: 1.2;
}

.td-sidebar-op {
  font-size: 0.8rem;
  color: var(--body-text);
  text-align: right;
}

.td-sidebar-divider {
  height: 1px;
  background: var(--card-border);
  margin: 1.1rem 0;
}

.td-sidebar-row {
  margin-bottom: 1rem;
}

.td-sidebar-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-ocean);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}

.td-sidebar-label i {
  font-size: 0.7rem;
  opacity: 0.6;
}

.td-sidebar-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-text);
}

.td-sidebar-desc {
  font-size: 0.82rem;
  color: var(--body-text);
  margin-top: 0.2rem;
}

.td-sidebar-input,
.td-sidebar-select {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--card-border);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
  outline: none;
  background: var(--light-gray);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.td-sidebar-input:focus,
.td-sidebar-select:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(2, 182, 214, 0.1);
  background: #fff;
}

.td-sidebar-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  border: none;
  background: var(--gradient-ocean);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(1, 83, 165, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.td-sidebar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(1, 83, 165, 0.35);
}

.td-sidebar-btn:active {
  transform: scale(0.98);
}

.td-sidebar-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--card-border);
}

.td-sidebar-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--body-text);
}

.td-sidebar-badges i {
  color: var(--sea-green);
  width: 16px;
  text-align: center;
}

.td-sidebar-footer {
  margin-top: 1rem;
}

.td-sidebar-footer p {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.td-sidebar-footer p i {
  margin-right: 0.4rem;
}

.td-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.td-lightbox.active {
  display: flex;
}

.td-lightbox-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.td-lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

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

.td-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

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

.td-lightbox-prev {
  left: 20px;
}

.td-lightbox-next {
  right: 20px;
}

.td-lightbox-counter {
  position: absolute;
  bottom: 25px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .td-hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 0.4fr;
    height: 60vh;
    min-height: 420px;
  }

  .td-hero-thumbs {
    display: flex;
    gap: 4px;
  }

  .td-hero-thumb {
    flex: 1;
    height: 160px;
  }

  .td-hero-price-badge {
    display: none;
  }

  .td-layout {
    grid-template-columns: 1fr;
  }

  .td-right {
    position: static;
  }

  .td-sidebar-sticky {
    position: static;
  }

  .td-inc-grid {
    grid-template-columns: 1fr;
  }

  .td-highlights-grid {
    grid-template-columns: 1fr;
  }

  .td-info-grid {
    grid-template-columns: 1fr;
  }

  .td-nav-inner {
    gap: 0;
  }

  .td-nav-link {
    padding: 0.85rem 1rem;
    font-size: 0.8rem;
  }

  .td-nav-book {
    padding: 0.85rem 1.25rem;
  }

  .td-hero-content {
    padding: 2rem 1.5rem 1.5rem;
  }

  .td-card {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .td-hero-grid {
    height: 50vh;
    min-height: 360px;
  }

  .td-hero-thumb {
    height: 120px;
  }

  .td-hero-title {
    font-size: 1.4rem;
  }

  .td-hero-subtitle {
    font-size: 0.85rem;
  }

  .td-main {
    padding: 2rem 1rem 4rem;
  }

  .td-section-title {
    font-size: 1.15rem;
  }

  .td-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .td-inc-grid {
    gap: 1rem;
  }

  .td-highlight-item {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .td-nav-link {
    padding: 0.7rem 0.75rem;
    font-size: 0.75rem;
  }

  .td-hero-content {
    padding: 1.5rem 1rem 1rem;
  }

  .td-hero-meta {
    font-size: 0.8rem;
  }

  .td-info-grid {
    gap: 0.5rem;
  }

  .td-info-item {
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
  }

  .td-timeline {
    padding-left: 2rem;
  }

  .td-timeline-num {
    left: -2rem;
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }

  .td-map-wrap {
    height: 220px;
  }

  .td-sidebar-card {
    padding: 1.25rem;
  }

  .td-sidebar-price {
    font-size: 1.6rem;
  }
}

/* ===== FIX: Tour Detail Hero Padding & Sidebar Sticky ===== */

/* Hero: offset for fixed header (~95px) */
.td-hero {
  padding-top: 100px;
}

.td-hero-main {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

/* Sticky sidebar: only sidebar-sticky is sticky, not td-right */
.td-right {
  position: static !important;
}

.td-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.td-sidebar-sticky.is-stuck {
  position: fixed;
  top: 100px;
}

/* Scroll margin for sticky nav offset on all section cards */
.td-card {
  scroll-margin-top: 130px;
}

/* 404 page styling */
.td-404 {
  padding: 10rem 2rem;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.td-404-inner {
  max-width: 500px;
}

.td-404-icon {
  font-size: 4rem;
  color: var(--turquoise);
  margin-bottom: 1.5rem;
}

.td-404 h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.td-404 p {
  font-size: 1.1rem;
  color: var(--body-text);
  margin-bottom: 2rem;
}

/* Mobile: revert to static */
@media (max-width: 1024px) {
  .td-right {
    position: static !important;
  }

  .td-sidebar-sticky {
    position: static !important;
  }
}

/* ===== Live Search Suggestions ===== */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 20px 50px rgba(1, 83, 165, 0.15), 0 0 0 1px rgba(2, 182, 214, 0.08);
  z-index: 100;
  max-height: 420px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  margin-top: 2px;
}

.search-suggestions.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-suggestions::-webkit-scrollbar {
  width: 5px;
}

.search-suggestions::-webkit-scrollbar-track {
  background: transparent;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: rgba(2, 182, 214, 0.25);
  border-radius: 10px;
}

.ss-loading,
.ss-empty {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--body-text);
  font-weight: 500;
}

.ss-loading i,
.ss-empty i {
  color: var(--turquoise);
  font-size: 0.95rem;
}

.ss-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem;
  transition: background 0.15s ease;
  text-decoration: none;
  border-bottom: 1px solid rgba(2, 182, 214, 0.06);
}

.ss-item:last-of-type {
  border-bottom: none;
}

.ss-item:hover {
  background: rgba(2, 182, 214, 0.04);
}

.ss-item-left {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--light-aqua);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ss-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-item-icon {
  font-size: 1rem;
  color: var(--turquoise);
}

.ss-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ss-item-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ss-item-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
}

.ss-item-type {
  color: var(--turquoise);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.68rem;
}

.ss-item-price {
  color: var(--primary-ocean);
  font-weight: 700;
}

.ss-item-rating {
  color: var(--sunset-orange);
  font-weight: 600;
}

.ss-item-rating i {
  font-size: 0.65rem;
}

.ss-footer {
  border-top: 1px solid rgba(2, 182, 214, 0.08);
  padding: 0.65rem 1.25rem;
  text-align: center;
  background: var(--light-aqua);
  border-radius: 0 0 20px 20px;
}

.ss-footer a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.ss-footer a:hover {
  color: var(--turquoise);
}

.ss-footer i {
  font-size: 0.7rem;
}

/* ===== 404 Error Page ===== */
.e404-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 2rem 4rem;
  background: linear-gradient(135deg, #0a1628 0%, #0d2b4a 30%, #0a3d5c 60%, #0d4f6b 100%);
  overflow: hidden;
}

.e404-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(2, 182, 214, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(255, 106, 82, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(1, 83, 165, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.e404-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.e404-icon-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
}

.e404-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(2, 182, 214, 0.25);
  animation: e404-rotate 8s linear infinite;
}

.e404-icon-ring::before,
.e404-icon-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.e404-icon-ring::before {
  inset: -6px;
  border: 1px dashed rgba(2, 182, 214, 0.12);
  animation: e404-rotate 12s linear infinite reverse;
}

.e404-icon {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(2, 182, 214, 0.15), rgba(1, 83, 165, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #02b6d6;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(2, 182, 214, 0.2);
}

@keyframes e404-rotate {
  to {
    transform: rotate(360deg);
  }
}

.e404-badge {
  display: inline-block;
  background: rgba(255, 106, 82, 0.15);
  color: #ff6a52;
  padding: 0.4rem 1.5rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 106, 82, 0.25);
  margin-bottom: 1.5rem;
}

.e404-title {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 30px rgba(2, 182, 214, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #8cefff 50%, #02b6d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.e404-subtitle {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.e404-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.e404-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.e404-search-box {
  max-width: 500px;
  margin: 0 auto;
}

.e404-search-box form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.35rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.e404-search-box form:focus-within {
  border-color: rgba(2, 182, 214, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.e404-search-box i {
  margin-left: 1.25rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.95rem;
}

.e404-search-box input {
  flex: 1;
  border: none;
  background: none;
  padding: 0.75rem 1rem;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #fff;
}

.e404-search-box input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.e404-search-box button {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #02b6d6, #0153a5);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.e404-search-box button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(2, 182, 214, 0.3);
}

/* Quick Links Section */
.e404-links-section {
  background: var(--white);
  padding: 5rem 2rem;
}

.e404-links-header {
  text-align: center;
  margin-bottom: 3rem;
}

.e404-links-header h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--dark-text);
  margin-top: 1rem;
}

.e404-links-header h2 span {
  background: linear-gradient(135deg, #0153a5, #02b6d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.e404-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.e404-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background: var(--light-gray);
  border: 1px solid var(--card-border);
  transition: all var(--transition-normal);
}

.e404-link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--turquoise);
  background: var(--white);
}

.e404-link-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0153a5, #02b6d6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(2, 182, 214, 0.2);
}

.e404-link-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--dark-text);
}

.e404-link-card p {
  font-size: 0.85rem;
  color: var(--body-text);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .e404-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .e404-title {
    font-size: clamp(4rem, 15vw, 6rem);
  }

  .e404-subtitle {
    font-size: 1.15rem;
  }

  .e404-section {
    min-height: 70vh;
    padding: 8rem 1.5rem 3rem;
  }
}

@media (max-width: 480px) {
  .e404-links-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

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

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

  .e404-search-box form {
    flex-direction: column;
    border-radius: 18px;
    padding: 0.75rem;
    gap: 0.65rem;
  }

  .e404-search-box i {
    display: none;
  }

  .e404-search-box input {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .e404-search-box button {
    width: 100%;
  }
}

/* ===== Sitemap Page ===== */
.sm-hero {
  position: relative;
  padding: 10rem 2rem 5rem;
  background: linear-gradient(135deg, #0a1628 0%, #0d2b4a 40%, #0a3d5c 100%);
  text-align: center;
  overflow: hidden;
}

.sm-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(2, 182, 214, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(1, 83, 165, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.sm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.sm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.sm-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #8cefff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sm-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

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

.sm-category {
  margin-bottom: 3.5rem;
}

.sm-category:last-child {
  margin-bottom: 0;
}

.sm-category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--light-gray);
}

.sm-category-header i {
  font-size: 1.2rem;
  color: var(--turquoise);
}

.sm-category-header h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--dark-text);
  flex: 1;
}

.sm-view-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--turquoise);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.sm-view-all:hover {
  gap: 0.6rem;
  color: var(--primary-ocean);
}

/* Pages grid */
.sm-grid-pages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
}

.sm-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: var(--light-gray);
  border: 1px solid var(--card-border);
  transition: all var(--transition-fast);
  font-weight: 600;
  color: var(--dark-text);
  font-size: 0.92rem;
}

.sm-card i {
  font-size: 1rem;
  color: var(--turquoise);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.sm-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--turquoise);
  background: var(--white);
}

/* Links grid */
.sm-grid-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}

.sm-link-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--light-gray);
  border: 1px solid var(--card-border);
  transition: all var(--transition-fast);
}

.sm-link-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--turquoise);
  background: var(--white);
}

.sm-link-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.sm-link-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
}

.sm-link-card:hover .sm-link-text {
  color: var(--primary-ocean);
}

@media (max-width: 768px) {
  .sm-hero {
    padding: 8rem 1.5rem 3.5rem;
  }

  .sm-section {
    padding: 2.5rem 1.25rem 3.5rem;
  }

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

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

  .sm-category-header h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .sm-grid-pages {
    grid-template-columns: 1fr;
  }

  .sm-card {
    padding: 0.85rem 1rem;
  }
}

/* Flight Pages */
.country_main,
#vcfp-main,
.rf-main {
  background: var(--soft-blue);
  color: var(--dark-text);
  overflow: hidden;
}

.vcfp-shell,
.vc-container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.country_hero,
.vcfp-banner,
.rf-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background:
    linear-gradient(135deg, rgba(0, 84, 166, 0.92), rgba(0, 188, 212, 0.78)),
    url('/assets/images/hero-bg.jpg') center/cover;
  color: var(--white);
}

.country_heroGrid,
.vcfp-banner__grid,
.rf-hero-grid,
.country_visitGrid,
.vcfp-contentGrid,
.rf-split,
.rf-route-highlight,
.vcfp-routeOverview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.country_pill,
.vcfp-pill,
.rf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.country_flag,
.vcfp-pill img,
.rf-badge img {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
}

.country_h1,
.vcfp-banner__title,
.rf-title {
  margin: 1.2rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 5.2rem);
  line-height: 0.98;
  color: var(--white);
}

.country_gradText,
.vcfp-banner__title span,
.rf-title span {
  color: var(--sunset);
}

.country_subLead,
.vcfp-banner__text,
.rf-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  max-width: 680px;
}

.country_widget,
.vcfp-searchBox,
.rf-search {
  margin-top: 1.5rem;
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-xl);
  color: var(--dark-text);
}

.vcfp-searchBox__head {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.vcfp-searchBox__head strong {
  color: var(--dark-text);
  font-size: 1.05rem;
}

.vcfp-searchBox__head span {
  color: var(--medium-text);
}

.country_imgStack,
.vcfp-banner__media,
.rf-hero-media,
.country_visitPhotoStack,
.vcfp-contentMedia,
.rf-split__media {
  position: relative;
}

.country_mainCard,
.vcfp-bannerCard,
.rf-hero-media,
.country_visitPhoto,
.vcfp-contentMedia__big,
.vcfp-contentMedia__small,
.rf-split__media {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-xl);
  background: var(--white);
}

.country_mainImg,
.vcfp-bannerCard img,
.rf-hero-media img,
.country_jewelPhoto img,
.country_visitPhoto img,
.vcfp-contentMedia img,
.vcfp-routeCard__media img,
.rf-airport-media img,
.rf-split__media img,
.rf-city-card img,
.vcfp-expCard__media img,
.vcfp-cityCard__media img,
.country_routeImg img,
.country_cityImg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.country_mainCard,
.vcfp-bannerCard,
.rf-hero-media {
  min-height: 430px;
}

.country_imgOverlay,
.vcfp-bannerCard__overlay,
.rf-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 31, 63, 0.72));
}

.country_imgCaption,
.vcfp-bannerCard__caption,
.rf-hero-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-text);
}

.country_floatCard,
.vcfp-float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 18px;
  background: var(--white);
  color: var(--dark-text);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
}

.country_floatCard--top,
.vcfp-float--top {
  top: 1.5rem;
  left: -1rem;
}

.country_floatCard--bottom,
.vcfp-float--bottom {
  right: -1rem;
  bottom: 1.5rem;
}

.country_floatIcon,
.vcfp-float__icon,
.rf-route-plane,
.rf-info-card__icon,
.vcfp-whyCard__icon,
.vcfp-contentList__icon,
.country_tipIc {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-ocean), var(--turquoise));
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}

.country_floatIcon--yellow,
.vcfp-float__icon--gold,
.country_tipIc--yellow {
  background: linear-gradient(135deg, var(--sunset), var(--coral));
}

.country_section,
.vcfp-section,
.rf-section {
  padding: 4.5rem 0;
}

.country_section--white,
.vcfp-section--white,
.rf-section--white {
  background: var(--white);
}

.country_section--soft,
.vcfp-section--soft,
.rf-section--soft {
  background: var(--soft-blue);
}

.country_headRow,
.vcfp-heading,
.rf-sec-head {
  margin-bottom: 2rem;
}

.country_headRow {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.country_center,
.vcfp-heading--center,
.rf-sec-head--center {
  text-align: center;
}

.country_h2,
.vcfp-heading h2,
.rf-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--dark-text);
}

.country_p,
.vcfp-heading p,
.rf-section .rf-sub,
.rf-info-card p,
.vcfp-whyCard p,
.vcfp-contentCard p,
.vcfp-expCard p,
.country_faqBody,
.vcfp-faqItem__body,
.rf-faq-item p {
  color: var(--medium-text);
  line-height: 1.75;
}

.country_kicker,
.vcfp-kicker,
.rf-kicker {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.country_routeCard,
.country_card,
.country_jewel,
.country_cityCard,
.country_tipCard,
.country_faq,
.vcfp-logoCard,
.vcfp-routeCard,
.vcfp-whyCard,
.vcfp-contentCard,
.vcfp-seasonCard,
.vcfp-expCard,
.vcfp-cityCard,
.vcfp-countryCard,
.vcfp-faqItem,
.rf-airport-card,
.rf-info-card,
.rf-airline,
.rf-city-card,
.rf-faq-item {
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.country_routeCard,
.country_cityCard,
.vcfp-cityCard,
.vcfp-countryCard,
.rf-city-card {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.country_routeCard:hover,
.country_cityCard:hover,
.vcfp-cityCard:hover,
.vcfp-countryCard:hover,
.rf-city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.country_cityGrid,
.country_tipGrid,
.vcfp-logoGrid,
.vcfp-whyGrid,
.vcfp-seasonGrid,
.vcfp-expGrid,
.vcfp-countryGrid,
.rf-card-grid,
.rf-airline-grid,
.rf-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.country_routeImg,
.country_cityImg,
.vcfp-routeCard__media,
.rf-airport-media,
.vcfp-expCard__media,
.vcfp-cityCard__media {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.country_routeBody,
.country_cityBody,
.vcfp-routeCard__body,
.vcfp-expCard__body,
.vcfp-cityCard__body,
.rf-airport-body,
.rf-city-card__body {
  padding: 1.2rem;
}

.country_routeLine,
.country_cityCard,
.vcfp-contentList__item,
.country_jewelItem,
.country_visitList li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.country_jewel,
.country_visitGrid,
.vcfp-contentGrid,
.rf-split {
  padding: 1.5rem;
  border-radius: 28px;
}

.country_jewel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.country_jewelFeatures,
.vcfp-contentList,
.rf-destination-points,
.country_faqList,
.vcfp-faqList,
.rf-faq {
  display: grid;
  gap: 1rem;
}

.country_jewelPhoto--lg,
.vcfp-contentMedia__big {
  height: 320px;
}

.country_jewelMediaGrid,
.vcfp-contentMedia__smallWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.country_jewelPhoto,
.vcfp-contentMedia__small {
  height: 160px;
  overflow: hidden;
  border-radius: 18px;
}

.country_visitList {
  list-style: none;
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1.4rem 0 0;
}

.country_visitList i,
.country_planeIc,
.vcfp-routeCard__meta i,
.rf-airport-meta i {
  color: var(--turquoise);
}

.country_swiperBtn,
.vcfp-sliderBtn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--primary-ocean);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.country_routesSwiper,
.country_airlinesSwiper,
.vcfp-cityTrack {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.country_routesSwiper .swiper-wrapper,
.country_airlinesSwiper .swiper-wrapper,
.vcfp-cityTrack {
  display: flex;
  gap: 1rem;
}

.country_routesSwiper .swiper-slide,
.country_airlinesSwiper .swiper-slide,
.vcfp-cityCard {
  min-width: 260px;
  scroll-snap-align: start;
}

.country_airlineItem,
.vcfp-logoCard,
.rf-airline {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 1rem;
}

.country_airlineLogo,
.vcfp-logoCard img,
.rf-airline img {
  max-width: 150px;
  max-height: 52px;
  object-fit: contain;
}

.vcfp-routeOverview,
.rf-route-highlight {
  grid-template-columns: 1fr 160px 1fr;
}

.vcfp-routeMiddle,
.rf-route-middle {
  display: grid;
  place-items: center;
  gap: 0.7rem;
  color: var(--primary-ocean);
  font-weight: 800;
  text-align: center;
}

.vcfp-routeCard__code,
.rf-airport-code {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-weight: 900;
}

.vcfp-seasonCard,
.rf-info-card,
.country_tipCard,
.vcfp-whyCard {
  padding: 1.4rem;
}

.vcfp-seasonCard--gold {
  background: #fff7df;
}

.vcfp-seasonCard--mint {
  background: #e7fbf7;
}

.vcfp-seasonCard--blue {
  background: #e9f6ff;
}

.vcfp-sliderWrap {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 0.75rem;
  align-items: center;
}

.vcfp-cityTrack {
  padding: 0.25rem 0.1rem 1rem;
}

.vcfp-countryCard {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
}

.vcfp-countryCard img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
}

.country_faq,
.vcfp-faqItem,
.rf-faq-item {
  padding: 1.1rem 1.25rem;
}

.country_faq summary,
.vcfp-faqItem summary,
.rf-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--dark-text);
  font-weight: 800;
}

.country_faq summary::-webkit-details-marker,
.vcfp-faqItem summary::-webkit-details-marker,
.rf-faq-item summary::-webkit-details-marker {
  display: none;
}

.rf-airline-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.rf-split__media {
  min-height: 380px;
}

@media (max-width: 980px) {

  .country_heroGrid,
  .vcfp-banner__grid,
  .rf-hero-grid,
  .country_visitGrid,
  .vcfp-contentGrid,
  .rf-split,
  .country_jewel,
  .rf-route-highlight,
  .vcfp-routeOverview {
    grid-template-columns: 1fr;
  }

  .vcfp-routeMiddle,
  .rf-route-middle {
    display: none;
  }

  .country_floatCard,
  .vcfp-float {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {

  .country_hero,
  .vcfp-banner,
  .rf-hero {
    padding: 7rem 0 3rem;
  }

  .country_section,
  .vcfp-section,
  .rf-section {
    padding: 3rem 0;
  }

  .vcfp-sliderWrap {
    grid-template-columns: 1fr;
  }

  .vcfp-sliderBtn,
  .country_navBtns {
    display: none;
  }
}

/* Blog Pages */
.vcb-page,
.vcp-page {
  background: var(--soft-blue);
  color: var(--dark-text);
}

.vcb-wrap,
.vcp-wrap {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.vcb-hero,
.vcp-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 9rem 1rem 4rem;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 84, 166, 0.86), rgba(0, 188, 212, 0.72)),
    url('/assets/images/sections/hero-bg.jpg') center/cover;
}

.vcb-hero::after,
.vcp-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--soft-blue));
  pointer-events: none;
}

.vcb-hero-inner,
.vcp-hero-inner {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.vcb-badge,
.vcp-chip,
.vcp-related-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vcb-hero h1,
.vcp-title {
  margin: 1rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  line-height: 0.98;
  color: var(--white);
}

.vcb-hero h1 span,
.vcp-section-title span {
  color: var(--sunset);
}

.vcb-hero p,
.vcp-excerpt {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.8;
}

.vcb-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.vcb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.vcb-btn:hover {
  transform: translateY(-3px);
}

.vcb-btn-primary {
  color: var(--white);
  background: var(--coral-gradient);
  box-shadow: var(--shadow-coral);
}

.vcb-btn-ghost {
  color: var(--primary-ocean);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.vcb-section,
.vcp-bottom {
  padding: 4rem 0;
}

.vcb-title,
.vcp-section-title {
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.vcb-title span {
  color: var(--turquoise);
}

.vcb-grid-2,
.vcb-grid-3,
.vcp-grid {
  display: grid;
  gap: 1.4rem;
}

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

.vcb-grid-3,
.vcp-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.vcb-card,
.vcp-card,
.vcp-related {
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.vcb-card,
.vcp-related {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.vcb-card:hover,
.vcp-related:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.vcb-media,
.vcp-feature-image,
.vcp-related-media {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--light-gray);
}

.vcb-grid-3 .vcb-media,
.vcp-related-media {
  height: 220px;
}

.vcb-media img,
.vcp-feature-image img,
.vcp-mini-thumb img,
.vcp-related-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vcb-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vcb-actions-mini {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.vcb-round,
.vcp-share a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--primary-ocean);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.vcb-body,
.vcp-related-body {
  padding: 1.25rem;
}

.vcb-meta,
.vcp-meta,
.vcp-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted-text);
  font-size: 0.85rem;
  font-weight: 700;
}

.vcp-meta {
  justify-content: center;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
}

.vcb-card h3,
.vcp-related h3,
.vcp-box h3 {
  margin: 0.75rem 0 0.45rem;
  color: var(--dark-text);
  font-family: var(--font-primary);
  font-size: 1.25rem;
  line-height: 1.25;
}

.vcb-card p,
.vcp-related p,
.vcp-box,
.vcp-mini-title {
  color: var(--medium-text);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vcb-read {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--primary-ocean);
  font-weight: 900;
  text-decoration: none;
}

.vcb-read::after {
  content: "\f061";
  margin-left: 0.45rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.vcb-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.vcb-pagination a {
  min-width: 42px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  color: var(--primary-ocean);
  background: var(--white);
  text-align: center;
  font-weight: 900;
  text-decoration: none;
}

.vcb-pagination a.active,
.vcb-pagination a:hover {
  color: var(--white);
  background: var(--ocean-gradient);
}

.vcp-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
  align-items: start;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

.vcp-article {
  padding: 1.35rem;
}

.vcp-content {
  padding: 1rem 0.6rem 0.4rem;
  color: var(--medium-text);
  font-size: 1.04rem;
  line-height: 1.85;
}

.vcp-content h1,
.vcp-content h2,
.vcp-content h3,
.vcp-content h4 {
  margin: 1.4rem 0 0.75rem;
  color: var(--dark-text);
  font-family: var(--font-display);
  line-height: 1.15;
}

.vcp-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.vcp-content img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.vcp-content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--turquoise);
  border-radius: 12px;
  background: var(--soft-blue);
  color: var(--dark-text);
  font-weight: 700;
}

.vcp-aside {
  position: sticky;
  top: 110px;
  padding: 1.2rem;
}

.vcp-box+.vcp-box {
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--card-border);
}

.vcp-share {
  display: flex;
  gap: 0.65rem;
}

.vcp-share a {
  color: var(--white);
  background: var(--ocean-gradient);
  text-decoration: none;
}

.vcp-mini {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 0.8rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.vcp-mini+.vcp-mini {
  margin-top: 0.9rem;
}

.vcp-mini-thumb {
  height: 64px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--light-gray);
}

.vcp-related {
  display: block;
  color: inherit;
  text-decoration: none;
}

.vcp-related-chip {
  color: var(--primary-ocean);
  background: var(--soft-blue);
  border-color: var(--card-border);
}

@media (max-width: 980px) {

  .vcb-grid-2,
  .vcp-main {
    grid-template-columns: 1fr;
  }

  .vcp-aside {
    position: static;
  }
}

@media (max-width: 640px) {

  .vcb-hero,
  .vcp-hero {
    min-height: 460px;
    padding-top: 7rem;
  }

  .vcb-media,
  .vcp-feature-image {
    height: 230px;
  }

  .vcp-article {
    padding: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   COUNTRY / FLIGHTS PAGE — LUXURY REDESIGN
   ═══════════════════════════════════════════════════════════ */
.cp-page {
  background: #f4f8fc;
  color: var(--dark-text);
  overflow: hidden;
}

.cp-container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ── HERO ── */
.cp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  color: var(--white);
  overflow: hidden;
}

.cp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0a1628 0%, #0f2847 30%, #1a3a5c 60%, #0d2137 100%);
  z-index: 0;
}

.cp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(2, 182, 214, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(1, 83, 165, 0.15) 0%, transparent 60%);
}

.cp-hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cp-hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  animation: cp-float 12s infinite ease-in-out;
}

.cp-hero-particles span:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
  width: 3px;
  height: 3px;
}

.cp-hero-particles span:nth-child(2) {
  top: 25%;
  left: 30%;
  animation-delay: 1.2s;
  width: 5px;
  height: 5px;
}

.cp-hero-particles span:nth-child(3) {
  top: 40%;
  left: 5%;
  animation-delay: 2.5s;
}

.cp-hero-particles span:nth-child(4) {
  top: 60%;
  left: 25%;
  animation-delay: 0.8s;
  width: 3px;
  height: 3px;
}

.cp-hero-particles span:nth-child(5) {
  top: 75%;
  left: 15%;
  animation-delay: 3.2s;
  width: 6px;
  height: 6px;
}

.cp-hero-particles span:nth-child(6) {
  top: 20%;
  left: 70%;
  animation-delay: 1.8s;
}

.cp-hero-particles span:nth-child(7) {
  top: 45%;
  left: 85%;
  animation-delay: 0.4s;
  width: 3px;
  height: 3px;
}

.cp-hero-particles span:nth-child(8) {
  top: 65%;
  left: 75%;
  animation-delay: 2s;
  width: 5px;
  height: 5px;
}

.cp-hero-particles span:nth-child(9) {
  top: 80%;
  left: 90%;
  animation-delay: 1.5s;
}

.cp-hero-particles span:nth-child(10) {
  top: 35%;
  left: 60%;
  animation-delay: 2.8s;
  width: 4px;
  height: 4px;
}

@keyframes cp-float {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-20px) scale(1.3);
    opacity: 0.8;
  }
}

.cp-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.cp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.cp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(6px);
}

.cp-flag {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.cp-hero-title {
  margin: 1.2rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 0.92;
  color: var(--white);
}

.cp-grad {
  background: linear-gradient(135deg, #02b6d6, #8cefff, #02b6d6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: cp-shimmer 4s ease-in-out infinite;
}

@keyframes cp-shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.cp-hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  max-width: 540px;
}

.cp-hero-sub strong {
  color: #8cefff;
}

.cp-hero-cta {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.cp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0;
}

.cp-btn--primary {
  background: var(--ocean-gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(2, 182, 214, 0.3);
}

.cp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(2, 182, 214, 0.4);
}

.cp-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.cp-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cp-stat {
  text-align: left;
}

.cp-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #8cefff;
  line-height: 1;
}

.cp-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
  display: block;
}

.cp-widget {
  margin-top: 1.5rem;
}

.cp-widget>* {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

/* Hero visual */
.cp-hero-visual {
  position: relative;
}

.cp-hero-card-wrap {
  position: relative;
}

.cp-hero-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  min-height: 460px;
  position: relative;
}

.cp-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cp-hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 10, 30, 0.85));
}

.cp-hero-card-label {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark-text);
  backdrop-filter: blur(8px);
}

.cp-hero-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}

.cp-hero-card-meta {
  font-size: 0.82rem;
  color: var(--medium-text);
  margin-top: 0.15rem;
}

.cp-hero-card-meta i {
  color: #f59e0b;
}

/* Float cards */
.cp-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-text);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  min-width: 190px;
}

.cp-float small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--medium-text);
}

.cp-float strong {
  font-size: 0.9rem;
}

.cp-float--top {
  top: 1.8rem;
  left: -1.2rem;
}

.cp-float--bottom {
  right: -1.2rem;
  bottom: 2rem;
}

.cp-float-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ocean-gradient);
  flex: 0 0 auto;
}

.cp-float-ic--gold {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* ── SECTION BASE ── */
.cp-section {
  padding: 5rem 0;
}

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

.cp-section--soft {
  background: #f4f8fc;
}

.cp-section--dark {
  background: linear-gradient(135deg, #0a1628, #0f2847);
  color: var(--white);
}

.cp-section--dark .cp-h2 {
  color: var(--white);
}

.cp-section--dark .cp-kicker {
  color: #8cefff;
}

.cp-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.cp-head--center {
  text-align: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.cp-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.cp-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.08;
  color: var(--dark-text);
}

.cp-p {
  color: var(--medium-text);
  line-height: 1.75;
  margin-top: 0.5rem;
}

.cp-p--max {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cp-h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark-text);
  margin: 0.8rem 0 0.4rem;
}

/* ── NAV BUTTONS ── */
.cp-nav {
  display: flex;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.cp-nav-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--primary-ocean);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(1, 83, 165, 0.08);
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.cp-nav-btn:hover {
  background: var(--primary-ocean);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(1, 83, 165, 0.2);
}

.cp-nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ── ROUTES SWIPER ── */
.cp-routes-swiper {
  overflow: visible !important;
}

.cp-routes-swiper .swiper-wrapper {
  padding: 0.5rem 0 1rem;
}

.cp-routes-swiper .swiper-slide {
  width: 280px;
  height: auto;
}

.cp-route-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(2, 182, 214, 0.1);
  box-shadow: 0 4px 20px rgba(1, 83, 165, 0.06);
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cp-route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(1, 83, 165, 0.12);
}

.cp-route-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.cp-route-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cp-route-card:hover .cp-route-img img {
  transform: scale(1.05);
}

.cp-route-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.15));
}

.cp-route-body {
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cp-route-from {
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark-text);
}

.cp-route-code {
  display: block;
  font-size: 0.78rem;
  color: var(--medium-text);
  margin-top: 0.15rem;
}

.cp-route-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-ocean);
  font-weight: 800;
  font-size: 0.85rem;
  flex: 0 0 auto;
}

.cp-route-plane-ic {
  font-size: 0.75rem;
  transform: rotate(90deg);
}

.cp-routes-pag {
  position: static !important;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.cp-routes-pag .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(1, 83, 165, 0.15);
  opacity: 1;
  transition: all 0.3s ease;
}

.cp-routes-pag .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--primary-ocean);
  border-radius: 4px;
}

/* ── AIRLINES MARQUEE ── */
.cp-marquee-wrap {
  overflow: hidden;
  margin-top: 2rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.cp-marquee {
  display: flex;
  overflow: hidden;
}

.cp-marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: cp-marquee-scroll 40s linear infinite;
  padding: 0.5rem 0;
}

.cp-marquee-track+.cp-marquee-track {
  margin-left: 1.5rem;
}

@keyframes cp-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cp-marquee:hover .cp-marquee-track {
  animation-play-state: paused;
}

.cp-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 80px;
  padding: 0.8rem 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.cp-marquee-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.15);
}

.cp-marquee-item img {
  max-width: 120px;
  max-height: 42px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.05));
}

.cp-marquee-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* ── SPLIT LAYOUT ── */
.cp-split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.cp-split--rev {
  direction: rtl;
}

.cp-split--rev>* {
  direction: ltr;
}

.cp-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cp-media-lg {
  grid-column: 1 / -1;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
}

.cp-media-sm {
  height: 160px;
  border-radius: 18px;
  overflow: hidden;
}

.cp-media-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── FEATURES ── */
.cp-features {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.8rem;
}

.cp-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cp-feature i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ocean-gradient);
  flex: 0 0 auto;
  font-size: 1rem;
}

.cp-feature h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.2rem;
  color: var(--dark-text);
}

.cp-feature p {
  font-size: 0.88rem;
  color: var(--medium-text);
  margin: 0;
  line-height: 1.5;
}

/* ── CITIES GRID ── */
.cp-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.cp-city-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(2, 182, 214, 0.1);
  box-shadow: 0 2px 12px rgba(1, 83, 165, 0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.cp-city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(1, 83, 165, 0.1);
}

.cp-city-img {
  height: 170px;
  overflow: hidden;
}

.cp-city-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cp-city-card:hover .cp-city-img img {
  transform: scale(1.05);
}

.cp-city-body {
  padding: 1rem 1.1rem;
  flex: 1;
}

.cp-city-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark-text);
}

.cp-city-sub {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: var(--medium-text);
}

.cp-city-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  background: rgba(2, 182, 214, 0.1);
  color: var(--primary-ocean);
  font-weight: 800;
  font-size: 0.72rem;
}

.cp-city-arr {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ocean-gradient);
  color: var(--white);
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.cp-city-card:hover .cp-city-arr {
  opacity: 1;
  transform: translateX(0);
}

/* ── VISIT STACK ── */
.cp-stack {
  position: relative;
  min-height: 420px;
}

.cp-stack-lg {
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
}

.cp-stack-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cp-stack-sm {
  position: absolute;
  width: 180px;
  height: 130px;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cp-stack-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cp-stack-sm--tl {
  top: -1rem;
  right: -1rem;
}

.cp-stack-sm--br {
  bottom: -1rem;
  left: -1rem;
}

/* ── CHECKLIST ── */
.cp-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
}

.cp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.cp-checklist i {
  color: #10b981;
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex: 0 0 auto;
}

.cp-checklist strong {
  display: block;
  font-family: var(--font-display);
  color: var(--dark-text);
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.cp-checklist span {
  font-size: 0.88rem;
  color: var(--medium-text);
  line-height: 1.5;
}

/* ── TIPS GRID ── */
.cp-tip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
}

.cp-tip-card {
  padding: 1.6rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(2, 182, 214, 0.08);
  box-shadow: 0 2px 12px rgba(1, 83, 165, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cp-tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(1, 83, 165, 0.08);
}

.cp-tip-card p {
  font-size: 0.9rem;
  color: var(--medium-text);
  line-height: 1.6;
}

.cp-tip-ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ocean-gradient);
  font-size: 1.1rem;
}

.cp-tip-ic--gold {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.cp-tip-ic--coral {
  background: linear-gradient(135deg, #ff6a52, #ff9130);
}

/* ── FAQ ── */
.cp-faq-wrap {
  max-width: 780px;
}

.cp-faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.cp-faq {
  padding: 0;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(2, 182, 214, 0.08);
  box-shadow: 0 2px 8px rgba(1, 83, 165, 0.03);
  overflow: hidden;
}

.cp-faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 800;
  color: var(--dark-text);
  padding: 1rem 1.3rem;
  user-select: none;
  transition: color 0.3s ease;
}

.cp-faq-head:hover {
  color: var(--primary-ocean);
}

.cp-faq-head i {
  transition: transform 0.4s ease;
  color: var(--primary-ocean);
  flex: 0 0 auto;
  font-size: 0.85rem;
}

.cp-faq-head.cp-faq-open i {
  transform: rotate(180deg);
}

.cp-faq-body-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
  padding: 0 1.3rem;
}

.cp-faq-body-wrap.cp-faq-open {
  max-height: 400px;
  padding: 0 1.3rem 1rem;
}

.cp-faq-body {
  color: var(--medium-text);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ── PLANE SCROLL ANIMATION ── */
.cp-plane {
  position: fixed;
  z-index: 50;
  left: 3%;
  bottom: 28%;
  pointer-events: none;
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 0 50px rgba(2, 182, 214, 0.45)) drop-shadow(0 0 100px rgba(140, 239, 255, 0.2));
  will-change: transform, opacity;
}

.cp-plane-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-plane i {
  font-size: clamp(5rem, 10vw, 10rem);
  display: block;
  background: linear-gradient(135deg, #fff 0%, #8cefff 50%, #02b6d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(140, 239, 255, 0.4)) drop-shadow(0 0 80px rgba(2, 182, 214, 0.2));
}

.cp-plane-trail {
  position: absolute;
  bottom: 42%;
  right: 60%;
  width: 260px;
  height: 140px;
  pointer-events: none;
}

.cp-plane-trail::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(270deg, rgba(140, 239, 255, 0.6), rgba(140, 239, 255, 0.2), transparent);
  border-radius: 2px;
  transform: rotate(-12deg);
  transform-origin: bottom right;
  box-shadow: 0 0 25px rgba(140, 239, 255, 0.2);
}

.cp-plane-trail::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(270deg, rgba(140, 239, 255, 0.35), transparent);
  border-radius: 1px;
  transform: rotate(-12deg);
  transform-origin: bottom right;
  opacity: 0.6;
}

/* ── SCROLL REVEAL (custom for cp-*) ── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cp-revealed {
  opacity: 1;
}

[data-reveal].cp-no-anim {
  opacity: 1;
  transform: none !important;
  transition: none !important;
}

.cp-fade-up {
  transform: translateY(30px);
}

.cp-fade-left {
  transform: translateX(-30px);
}

.cp-fade-right {
  transform: translateX(30px);
}

.cp-zoom {
  transform: scale(0.92);
}

.cp-revealed.cp-fade-up,
.cp-revealed.cp-fade-left,
.cp-revealed.cp-fade-right {
  transform: translate(0);
}

.cp-revealed.cp-zoom {
  transform: scale(1);
}

/* ── STAGGER ── */
.reveal-stagger {
  display: grid;
}

.cp-tip-card,
.cp-faq,
.reveal-stagger-item {
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--order, 0) * 0.08s);
}

.cp-revealed.cp-tip-card,
.cp-revealed.cp-faq,
.cp-revealed.reveal-stagger-item,
.reveal-stagger .cp-revealed.cp-tip-card,
.reveal-stagger .cp-revealed.cp-faq,
.reveal-stagger .cp-revealed.reveal-stagger-item {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cp-hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .cp-hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }

  .cp-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cp-split--rev {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .cp-hero {
    padding: 6rem 0 2.5rem;
  }

  .cp-stats {
    gap: 1.5rem;
  }

  .cp-float {
    display: none;
  }

  .cp-marquee-item {
    min-width: 120px;
    height: 64px;
  }

  .cp-marquee-item img {
    max-width: 90px;
    max-height: 32px;
  }

  .cp-marquee-track {
    animation-duration: 30s;
    gap: 1rem;
  }

  .cp-city-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .cp-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cp-plane {
    opacity: 0.3;
  }

  .cp-hero-card {
    min-height: 320px;
  }

  .cp-stack-lg {
    height: 280px;
  }

  .cp-stack-sm {
    width: 130px;
    height: 95px;
  }

  .cp-routes-swiper .swiper-slide {
    width: 240px;
  }
}

@media (max-width: 480px) {
  .cp-hero-cta {
    flex-direction: column;
  }

  .cp-btn {
    width: 100%;
    justify-content: center;
  }

  .cp-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .cp-stat {
    min-width: 80px;
  }

  .cp-plane {
    display: none;
  }
}