/* ===== RESET & BASE ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--sea-mid);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 16px;
}

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

:root {
  --sea-deep: #0c2d48;
  --sea-mid: #145da0;
  --sea-light: #2e8bc0;
  --sea-sky: #b1d4e0;
  --seafoam: #d4f1f9;
  --sand: #f5e6ca;
  --coral: #e8634a;
  --white: #ffffff;
  --dark: #1a1a2e;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --gray-light: #e5e7eb;
  --text-light: #6b7280;
  --text: #374151;
  --shadow: 0 4px 20px rgba(12, 45, 72, 0.08);
  --shadow-lg: 0 10px 40px rgba(12, 45, 72, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  touch-action: manipulation;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

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

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

ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--sea-light);
  outline-offset: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--sea-deep);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sea-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.btn-block { width: 100%; }
.map-container { border-radius: var(--radius, 12px); overflow: hidden; box-shadow: var(--shadow, 0 4px 20px rgba(0,0,0,0.1)); }
.map-embed { border: 0; display: block; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-light, #6b7280); margin-top: 12px; }
.newsletter .btn { margin-top: 10px; }
.service-card .btn { margin-top: 16px; }
.featured-cta-wrap { text-align: center; margin-top: 40px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--sea-mid);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sea-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 93, 160, 0.3);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--sea-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

.btn-coral:hover {
  background: #d4553e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 99, 74, 0.3);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 1;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.navbar:not(.scrolled) .navbar-brand img {
  filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-brand img {
  height: 42px;
}

.footer-brand img {
  height: 40px;
  width: auto;
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px;
  }
  .navbar.scrolled .navbar-brand img {
    height: 36px;
  }
  .footer-brand img {
    height: 32px;
  }
}

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

.navbar-nav li {
  position: relative;
}

.navbar-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav a::after {
  display: none;
}

.navbar-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.navbar-nav a.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* Scrolled state — dark text */
.navbar.scrolled .navbar-nav a {
  color: var(--sea-deep);
}

.navbar.scrolled .navbar-nav a:hover {
  background: rgba(20, 93, 160, 0.08);
  color: var(--sea-mid);
}

.navbar.scrolled .navbar-nav a.active {
  background: rgba(20, 93, 160, 0.1);
  color: var(--sea-mid);
}

/* ===== NAV DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown > a .fa-chevron-down {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover > a .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  min-width: 180px;
  padding: 8px 0;
  z-index: 1000;
  list-style: none;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  color: var(--sea-deep) !important;
  padding: 10px 20px !important;
  display: block;
  border-radius: 0 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
  background: rgba(20, 93, 160, 0.06) !important;
  color: var(--sea-mid) !important;
}

.dropdown-menu li a.active {
  background: rgba(20, 93, 160, 0.1) !important;
  color: var(--sea-mid) !important;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex-shrink: 1;
}

.navbar-actions .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.navbar-actions .btn-primary {
  background: var(--coral);
  color: var(--white);
}

.navbar-actions .btn-primary:hover {
  background: #d4553e;
}

.navbar.scrolled .navbar-actions .btn-primary {
  background: var(--sea-mid);
}

.navbar.scrolled .navbar-actions .btn-primary:hover {
  background: var(--sea-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.05);
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.navbar.scrolled .hamburger {
  background: rgba(12, 45, 72, 0.06);
  border-color: rgba(12, 45, 72, 0.15);
}

.navbar.scrolled .hamburger:hover {
  background: rgba(12, 45, 72, 0.1);
}

.navbar.scrolled .hamburger span {
  background: var(--sea-deep);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--sea-deep) 0%, #0a3d5c 50%, var(--sea-mid) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
  width: fit-content;
  animation: heroFadeUp 0.6s ease-out both;
}

.hero-badge i {
  color: #fbbf24;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
  animation: heroFadeUp 0.8s ease-out 0.1s both;
}

.hero h1 span {
  color: var(--sand);
  display: block;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 480px;
  text-align: left;
  animation: heroFadeUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s ease-out 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  animation: heroFadeUp 0.8s ease-out 0.4s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  opacity: 0.85;
}

.hero-trust-item i {
  font-size: 0.9rem;
}

.hero-trust-item .fas.fa-star {
  color: #fbbf24;
}

.hero-trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-right {
  position: relative;
  animation: heroFadeUp 0.8s ease-out 0.2s both;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, transparent 60%, rgba(12, 45, 72, 0.3) 100%);
  pointer-events: none;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  animation: heroCardFloat 3s ease-in-out infinite;
  z-index: 2;
}

.hero-float-card i {
  color: var(--sea-mid);
  font-size: 1.2rem;
}

.hero-float-card .float-text {
  color: var(--sea-deep);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.3;
}

.hero-float-card .float-text span {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--gray);
}

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

.hero-float-card-top {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.hero-float-card-top i {
  color: #fbbf24;
  font-size: 1rem;
}

.hero-float-card-top .float-rating {
  color: var(--sea-deep);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-float-card-top .float-reviews {
  color: var(--gray);
  font-size: 0.75rem;
}

/* Hero Animations */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HERO SEARCH BAR ===== */
.hero-search-form {
  margin-top: 28px;
  width: 100%;
  max-width: 100%;
}

.hero-search-form .search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
}

.hero-search-form .search-form .form-group {
  flex: 1;
}

.hero-search-form .form-group label {
  display: none;
}

.hero-search-form .form-group select {
  width: 100%;
  padding: 12px 36px 12px 0;
  border: none;
  border-radius: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--white);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.hero-search-form .form-group select option {
  color: var(--dark);
  background: var(--white);
}

.hero-search-form .form-group select:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.hero-search-form .btn-search {
  background: var(--white);
  color: var(--sea-deep);
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.hero-search-form .btn-search:hover {
  background: var(--sand);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hero-search-form .search-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 8px;
  flex-shrink: 0;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background:
    linear-gradient(135deg, rgba(12, 45, 72, 0.8) 0%, rgba(20, 93, 160, 0.65) 50%, rgba(46, 139, 192, 0.5) 100%),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80') center/cover no-repeat;
  padding: 180px 0 100px;
  color: var(--white);
  text-align: center;
  position: relative;
}

.page-hero--city {
  background:
    linear-gradient(135deg, rgba(12, 45, 72, 0.8) 0%, rgba(20, 93, 160, 0.65) 50%, rgba(46, 139, 192, 0.5) 100%),
    var(--hero-bg) center/cover no-repeat;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  opacity: 0.9;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb span { opacity: 0.6; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--sea-deep);
  padding: 40px 0;
}

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

.stat-item h3 {
  color: var(--sea-light);
  font-size: 2.2rem;
  margin-bottom: 4px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--seafoam);
}

.section-alt .section-subtitle,
.section-alt p {
  color: var(--dark);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ===== TOUR CARDS ===== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.tour-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--coral);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tour-card-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--sea-deep);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.1rem;
}

.tour-card-price small {
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.8;
}

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

.tour-card-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--sea-deep);
}

.tour-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--gray);
}

.tour-card-meta i {
  color: var(--sea-light);
  margin-right: 4px;
}

.tour-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-size: 0.85rem;
}

.tour-rating span {
  color: var(--gray);
  margin-left: 4px;
}

.tour-card-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== DESTINATION CARDS ===== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Image wrapper (home page cards) */
.destination-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

/* Body / text area (home page cards) */
.destination-card-body {
  padding: 20px;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.destination-card-body h3 {
  color: var(--sea-deep);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.destination-card-body .dest-count {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 4px;
}

.destination-card-body .dest-tours-preview {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 8px;
}

.destination-card-body .btn-outline {
  margin-top: auto;
  align-self: flex-start;
  color: var(--sea-mid);
  border-color: var(--sea-mid);
  font-size: 0.8rem;
  padding: 8px 18px;
}

.destination-card-body .btn-outline:hover {
  background: var(--sea-mid);
  color: var(--white);
}

/* Legacy overlay pattern (kept for backwards compat) */
.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 45, 72, 0.85), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
}

.destination-card-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.destination-card-overlay p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.dest-count {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 2px;
}

.dest-tours-preview {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 6px;
  line-height: 1.4;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.destination-card:hover .dest-tours-preview {
  max-height: 60px;
  opacity: 0.85;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card-icon {
  width: 70px;
  height: 70px;
  background: var(--seafoam);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--sea-mid);
  transition: var(--transition);
}

.feature-card:hover .feature-card-icon {
  background: var(--sea-mid);
  color: var(--white);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: var(--sea-sky);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.8;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--seafoam);
}

.testimonial-name {
  font-weight: 600;
  color: var(--sea-deep);
  font-size: 0.95rem;
}

.testimonial-location {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, var(--sea-mid), var(--sea-deep));
  padding: 60px 0;
  color: var(--white);
  text-align: center;
}

.newsletter h2 { color: var(--white); }

.newsletter p {
  opacity: 0.85;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  outline: 2px solid var(--sea-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--sea-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--sea-light);
  border-color: var(--sea-light);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

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

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-col .contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-col .contact-item i {
  color: var(--sea-light);
  margin-top: 4px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
}

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

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

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

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

.blog-card-meta i { color: var(--sea-light); margin-right: 4px; }

.blog-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.blog-card-body h3 a:hover {
  color: var(--sea-light);
}

.blog-card-body p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ===== BLOG DETAIL ===== */
.blog-detail {
  max-width: 800px;
  margin: 0 auto;
}

.blog-detail-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-light);
  flex-wrap: wrap;
}

.blog-detail-meta span {
  font-size: 0.9rem;
  color: var(--gray);
}

.blog-detail-meta i {
  color: var(--sea-light);
  margin-right: 6px;
}

.blog-detail-content h2 {
  font-size: 1.6rem;
  color: var(--sea-deep);
  margin: 40px 0 16px;
}

.blog-detail-content h2:first-of-type {
  margin-top: 0;
}

.blog-detail-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
}

.blog-detail-img {
  width: 100%;
  border-radius: var(--radius);
  margin: 30px 0;
  box-shadow: var(--shadow);
}

.blog-detail-cta {
  background: linear-gradient(135deg, var(--sea-deep), var(--sea-mid));
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  margin: 40px 0;
}

.blog-detail-cta h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.blog-detail-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.blog-detail-share {
  display: flex;
  gap: 10px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.blog-detail-share span {
  font-weight: 500;
  color: var(--sea-deep);
  margin-right: 8px;
}

.blog-detail-share a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.blog-detail-share .share-fb { background: #1877f2; color: #fff; }
.blog-detail-share .share-fb:hover { background: #1565d8; }
.blog-detail-share .share-wa { background: #25d366; color: #fff; }
.blog-detail-share .share-wa:hover { background: #1da851; }
.blog-detail-share .share-tw { background: #1da1f2; color: #fff; }
.blog-detail-share .share-tw:hover { background: #1a8cd8; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.service-card-image {
  height: 200px;
  overflow: hidden;
}

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

.service-card-body {
  padding: 28px;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  background: var(--seafoam);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sea-mid);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.service-card-body h3 {
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.service-list {
  margin-top: 12px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.service-list li i {
  color: var(--sea-light);
  font-size: 0.75rem;
}

/* ===== ABOUT / TEAM ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-intro-text p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--seafoam);
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--sea-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.team-card p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
}

.value-card i {
  font-size: 2rem;
  color: var(--sea-mid);
  margin-bottom: 16px;
}

.value-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.value-card p {
  color: var(--gray);
  font-size: 0.88rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-box h2 {
  margin-bottom: 8px;
}

.contact-form-box > p {
  color: var(--gray);
  margin-bottom: 30px;
}

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

.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  resize: vertical;
  min-height: 120px;
  transition: var(--transition);
}

.contact-form textarea:focus {
  outline: 2px solid var(--sea-light);
  outline-offset: 2px;
  border-color: var(--sea-light);
}

.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}

.contact-form select:focus {
  outline: 2px solid var(--sea-light);
  outline-offset: 2px;
  border-color: var(--sea-light);
}

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

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--seafoam);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sea-mid);
  font-size: 1.1rem;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--gray);
  font-size: 0.9rem;
}

.map-placeholder {
  width: 100%;
  height: 250px;
  background: var(--seafoam);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sea-mid);
  font-size: 1rem;
  gap: 10px;
}

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--sea-sky);
  background: transparent;
  color: var(--sea-mid);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--sea-mid);
  border-color: var(--sea-mid);
  color: var(--white);
}

.filter-count {
  display: inline-block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-left: 4px;
  font-weight: 400;
}

.filter-tab.active .filter-count {
  opacity: 0.85;
}

/* ===== TOURS COUNT ===== */
.tours-count {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.tours-count strong {
  color: var(--sea-mid);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--sea-mid);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 1002;
  box-shadow: var(--shadow);
}

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

.back-to-top:hover {
  background: var(--sea-light);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== TOAST / SUCCESS MESSAGE ===== */
.toast {
  position: fixed;
  top: 90px;
  right: 20px;
  max-width: calc(100vw - 40px);
  background: #10b981;
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 2000;
  transform: translateX(120%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navbar.scrolled .navbar-nav.open > li > a,
  .navbar.scrolled .navbar-nav.open > .nav-dropdown > a,
  .navbar.scrolled .navbar-nav.open .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .navbar.scrolled .navbar-nav.open > li > a:hover,
  .navbar.scrolled .navbar-nav.open > .nav-dropdown > a:hover {
    color: var(--white) !important;
  }

  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .navbar-actions .btn-sm {
    display: none;
  }

  /* ---- Full-Screen Mobile Nav ---- */
  .navbar-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(160deg, var(--sea-deep) 0%, #0a2a43 40%, #0d3b5e 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

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

  /* ---- Panel Header (sticky logo + close) ---- */
  .mobile-nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    z-index: 1002;
    background: transparent;
  }

  .mobile-nav-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.15s;
  }

  .navbar-nav.open .mobile-nav-logo {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
  }

  .navbar-nav.open .mobile-nav-close {
    opacity: 1;
    transform: rotate(0) scale(1);
    transition-delay: 0.2s;
  }

  .mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(90deg) scale(1);
  }

  .mobile-nav-close:active {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(0.92);
    transition: background 0.05s, transform 0.05s;
  }

  /* ---- Nav Links (centered, large) ---- */
  .navbar-nav > li,
  .navbar-nav > .nav-dropdown {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .navbar-nav.open > li,
  .navbar-nav.open > .nav-dropdown {
    opacity: 1;
    transform: translateY(0);
  }

  .navbar-nav.open > li:nth-child(1),
  .navbar-nav.open > .nav-dropdown:nth-child(3) { transition-delay: 0.12s; }
  .navbar-nav.open > li:nth-child(2),
  .navbar-nav.open > .nav-dropdown:nth-child(4) { transition-delay: 0.18s; }
  .navbar-nav.open > .nav-dropdown:nth-child(3) { transition-delay: 0.24s; }
  .navbar-nav.open > li:nth-child(4) { transition-delay: 0.30s; }
  .navbar-nav.open > li:nth-child(5) { transition-delay: 0.36s; }
  .navbar-nav.open > li:nth-child(6) { transition-delay: 0.42s; }

  .navbar-nav > li > a,
  .navbar-nav > .nav-dropdown > a {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    padding: 14px 40px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 0;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.25s ease;
    text-decoration: none;
  }

  .navbar-nav > li > a:hover,
  .navbar-nav > .nav-dropdown > a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .navbar-nav > li > a:active,
  .navbar-nav > .nav-dropdown > a:active {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    transition: background 0.05s;
  }

  .navbar-nav > li > a,
  .navbar-nav > .nav-dropdown > a {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.12);
  }

  .navbar-nav > li > a.active,
  .navbar-nav > .nav-dropdown > a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--coral);
  }

  /* ---- Dropdown ---- */
  .nav-dropdown > a .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
    margin-left: 6px;
    opacity: 0.5;
  }

  .nav-dropdown.open > a .fa-chevron-down {
    transform: rotate(180deg);
    opacity: 1;
  }

  .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0;
    margin-top: 0;
    padding: 4px 0;
    border-left: none;
    margin-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-dropdown.open > .dropdown-menu,
  .navbar-nav.open > .nav-dropdown > .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 12px 40px !important;
    font-size: 0.95rem !important;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6) !important;
    border-left: none !important;
    text-align: center;
  }

  .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--white) !important;
  }

  .dropdown-menu li a:active {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    transition: background 0.05s;
  }

  /* ---- Bottom Section (social + contact) ---- */
  .mobile-nav-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px 28px;
    text-align: center;
    z-index: 1002;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    background: linear-gradient(to top, rgba(10, 42, 67, 0.95) 0%, transparent 100%);
  }

  .navbar-nav.open ~ .mobile-nav-bottom {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
  }

  .mobile-nav-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
  }

  .mobile-nav-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.25s ease;
    text-decoration: none;
  }

  .mobile-nav-social a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    transform: translateY(-2px);
  }

  .mobile-nav-social a:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.9);
    transition: background 0.05s, transform 0.05s;
  }

  .mobile-nav-phone {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
  }

  .mobile-nav-phone a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
  }

  /* ---- Decorative circles ---- */
  .navbar-nav::before,
  .navbar-nav::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
  }

  .navbar-nav::before {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(46, 139, 192, 0.12) 0%, transparent 70%);
  }

  .navbar-nav::after {
    width: 250px;
    height: 250px;
    bottom: 60px;
    left: -60px;
    background: radial-gradient(circle, rgba(232, 99, 74, 0.08) 0%, transparent 70%);
  }

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

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

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

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

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

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

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .hero h1 {
    text-align: center;
  }

  .hero p {
    text-align: center;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-left {
    align-items: center;
  }

  .hero-right {
    order: -1;
  }

  .hero-image-wrapper img {
    height: 260px;
  }

  .hero-float-card {
    bottom: -12px;
    left: 10px;
    padding: 10px 14px;
  }

  .hero-float-card-top {
    top: -8px;
    right: 10px;
    padding: 8px 12px;
  }

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

  .blog-detail-meta {
    gap: 12px;
  }

  .blog-detail-share {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .tour-card-buttons {
    flex-direction: column;
  }

  .tour-card-buttons .btn,
  .tour-card-buttons .btn-whatsapp {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-trust-divider {
    display: none;
  }

  .hero-search-form .search-form {
    flex-direction: column;
    border-radius: 16px;
    padding: 16px;
    gap: 10px;
  }

  .hero-search-form .btn-search {
    width: 100%;
  }

  .hero-search-form .search-divider {
    display: none;
  }

  .blog-detail-cta {
    padding: 24px;
  }

  .blog-detail-share {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-detail-share a {
    justify-content: center;
  }

  .hero-image-wrapper img {
    height: 220px;
  }

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

  .container {
    padding: 0 16px;
  }
}

/* WhatsApp Booking Button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  border-radius: 50px;
  background: #25D366;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

.btn-whatsapp i {
  font-size: 1.1rem;
}

/* Tour Card WhatsApp */
.tour-card-body .btn-whatsapp {
  margin-top: 8px;
}

.tour-card-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.tour-card-buttons .btn {
  flex: 1;
}

.tour-card-buttons .btn-whatsapp {
  width: auto;
  flex: 1;
  margin-top: 0;
  padding: 12px 16px;
  font-size: 0.8rem;
}

/* Tour Detail Sidebar WhatsApp */
.tour-detail-cta .btn-whatsapp {
  margin-top: 12px;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1001;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: whatsapp-pulse 2s infinite;
}

/* ===== SOCIAL SHARE ===== */
.social-share {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.social-share span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-right: 4px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.share-btn:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.share-btn-facebook { background: #1877f2; }
.share-btn-facebook:hover { background: #1565d8; }
.share-btn-whatsapp { background: #25D366; }
.share-btn-whatsapp:hover { background: #1da851; }
.share-btn-twitter { background: #1da1f2; }
.share-btn-twitter:hover { background: #0d8ddb; }

/* ===== FAQ ACCORDION ===== */
.faq-section {
  margin-top: 40px;
}

.faq-section h2 {
  margin-bottom: 20px;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item details {
  cursor: pointer;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sea-deep);
  background: var(--white);
  list-style: none;
  transition: var(--transition);
}

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

.faq-item summary::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--gray);
  transition: transform 0.3s ease;
}

.faq-item details[open] summary::after {
  transform: rotate(180deg);
}

.faq-item details[open] summary {
  border-bottom: 1px solid #e5e7eb;
  background: var(--seafoam);
}

.faq-answer {
  padding: 16px 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  background: var(--white);
}

/* ===== CUSTOMER REVIEWS ===== */
.reviews-section {
  margin-top: 40px;
}

.reviews-section h2 {
  margin-bottom: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  padding: 20px;
}

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

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sea-light);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.reviewer-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.reviewer-country {
  font-size: 0.8rem;
  color: var(--gray);
}

.review-date {
  font-size: 0.8rem;
  color: var(--gray);
}

.review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.review-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== SIMILAR TOURS ===== */
.similar-tours {
  margin-top: 40px;
}

.similar-tours h2 {
  margin-bottom: 20px;
}

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

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

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

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 999;
}

.nav-overlay.open {
  display: block;
}

/* ===== TOUR DETAIL PAGE ===== */
.tour-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.tour-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 45, 72, 0.85) 0%, rgba(12, 45, 72, 0.3) 100%);
}

.tour-hero .container {
  position: relative;
  z-index: 1;
  color: var(--white);
}

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

.tour-hero-subtitle {
  color: var(--sea-sky);
  font-size: 1.05rem;
  margin-top: 8px;
}

.tour-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.7);
}

.tour-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.tour-hero .breadcrumb a:hover {
  color: var(--white);
}

/* Tour Detail Grid */
.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.tour-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 32px;
}

.tour-detail-price-label {
  font-size: 0.85rem;
  color: var(--gray);
  display: block;
}

.tour-detail-price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--sea-deep);
  line-height: 1;
}

.tour-detail-price-unit {
  font-size: 1rem;
  color: var(--gray);
}

.tour-detail-description h2,
.tour-detail-itinerary h2,
.tour-detail-included h2 {
  margin-bottom: 20px;
}

.tour-detail-description p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Itinerary Timeline */
.itinerary {
  position: relative;
  padding-left: 30px;
}

.itinerary::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--sea-light);
}

.itinerary-item {
  position: relative;
  padding-bottom: 32px;
}

.itinerary-item:last-child {
  padding-bottom: 0;
}

.itinerary-dot {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sea-light);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--sea-light);
}

.itinerary-time {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sea-light);
  background: var(--seafoam);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.itinerary-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.itinerary-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* What's Included */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--dark);
}

.included-item i {
  color: #22c55e;
  font-size: 0.9rem;
}

/* ===== PHOTO GALLERY ===== */
.tour-gallery {
  margin-top: 40px;
}

.tour-gallery h2 {
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  position: relative;
}

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

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

.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 45, 72, 0.3);
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius);
}

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

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10001;
}

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

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
}

/* Tour Detail Sidebar */
.tour-detail-sidebar {
  position: sticky;
  top: 100px;
}

.tour-detail-cta {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.tour-detail-cta h3 {
  margin-bottom: 8px;
}

.tour-detail-cta p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.tour-detail-sidebar-info {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.tour-detail-sidebar-info div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--dark);
}

.tour-detail-sidebar-info div i {
  width: 20px;
  text-align: center;
  color: var(--sea-light);
}

/* Tour Detail Responsive */
@media (max-width: 992px) {
  .tour-detail-grid {
    grid-template-columns: 1fr;
  }

  .tour-detail-sidebar {
    order: -1;
    position: static;
  }

  .tour-detail-main {
    padding-top: 20px;
  }

  .tour-detail-cta {
    position: static;
  }
}

@media (max-width: 640px) {
  .tour-hero {
    height: 40vh;
    min-height: 280px;
  }

  .tour-detail-header {
    flex-direction: column;
  }

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

  .itinerary {
    padding-left: 24px;
  }

  .itinerary-dot {
    left: -20px;
    width: 12px;
    height: 12px;
  }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  position: relative;
  margin-left: 8px;
  flex-shrink: 1;
}

.lang-switcher::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 12px;
  z-index: 1;
}

.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 8px 12px;
  min-height: 44px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 1;
}

.lang-switcher-btn:hover {
  background: rgba(255,255,255,0.15);
}

.navbar.scrolled .lang-switcher-btn {
  border-color: rgba(12, 45, 72, 0.2);
  color: var(--sea-deep);
}

.navbar.scrolled .lang-switcher-btn:hover {
  background: rgba(20, 93, 160, 0.08);
}

.navbar.scrolled .lang-switcher-menu {
  border-color: rgba(0,0,0,0.08);
}

.lang-switcher-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  list-style: none;
  padding: 8px 0;
  min-width: 170px;
  z-index: 10002;
}

.lang-switcher:hover .lang-switcher-menu,
.lang-switcher.open .lang-switcher-menu {
  display: block;
}

.lang-switcher-menu:hover {
  display: block;
}

.lang-switcher-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  text-decoration: none;
  color: var(--dark);
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.lang-switcher-menu li a:hover {
  background: var(--light-gray);
}

.lang-switcher-menu li a.active {
  font-weight: 600;
  color: var(--sea-mid);
}

.lang-flag {
  width: 28px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
}

.lang-code {
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 768px) {
  .navbar-actions .lang-switcher {
    position: static;
  }
  .lang-switcher-menu {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 8px 0 24px;
    z-index: 10001;
    max-height: 60vh;
    overflow-y: auto;
  }
  .lang-switcher-menu li a {
    padding: 14px 20px;
    font-size: 1rem;
  }
}

/* ===== ACCESSIBILITY & UX FIXES (Audit Round 2) ===== */

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
  .whatsapp-float {
    animation: none !important;
  }
}

/* Button focus ring */
.btn:focus-visible {
  outline: 2px solid var(--sea-light);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(46, 139, 192, 0.3);
}

/* Filter tab focus & touch targets */
.filter-tab:focus-visible {
  outline: 2px solid var(--sea-light);
  outline-offset: 2px;
}

.filter-tab {
  min-height: 44px;
  padding: 12px 28px;
}

/* Hamburger focus */
.hamburger:focus-visible {
  outline: 2px solid var(--sea-light);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Hamburger open/close animation */
.hamburger.active {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: scale(1.05);
}

.hamburger.active span {
  background: var(--white) !important;
}

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

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

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

/* Lang switcher focus */
.lang-switcher-btn:focus-visible {
  outline: 2px solid var(--sea-light);
  outline-offset: 2px;
}

/* Lang switcher mobile overlay */
.lang-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 10000;
}
.lang-overlay.open {
  display: block;
}

/* Nav dropdown focus */
.nav-dropdown > a:focus-visible {
  outline: 2px solid var(--sea-light);
  outline-offset: 2px;
}

/* Review cards hover */
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* FAQ summary hover */
.faq-item summary:hover {
  background: var(--light-gray);
}

/* Star rating accessible text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Gallery items keyboard accessible */
.gallery-item {
  cursor: pointer;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--sea-light);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Lightbox focus visible */
.lightbox:focus-visible {
  outline: none;
}

.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Fix z-index: skip-link below lightbox */
.skip-link {
  z-index: 10002;
}

.lightbox {
  z-index: 10001;
}

/* Reviews grid multi-column on desktop */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery grid responsive for 480-768px */
@media (min-width: 481px) and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

/* Mobile nav backdrop overlay */
.navbar-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 45, 72, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.navbar-nav-backdrop.visible {
  display: block;
  opacity: 1;
}

/* Toast accessible */
.toast[role="alert"] {
  position: fixed;
}

/* Smooth hover for all interactive elements */
.footer-col ul a {
  transition: color 0.2s ease;
}

.faq-item summary {
  cursor: pointer;
}

/* Fix stat counter fallback */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* Scroll margin for fixed navbar */
[id], .tour-hero, .page-hero, section {
  scroll-margin-top: 80px;
}

/* Services grid small screen fix */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.4rem;
  }
}
