/* ========================================
   GRAND TOURS - Main Stylesheet
   Brand Colors:
   Dark Blue: #030b59
   Light Blue: #11a5d8
   Rose: #DAD3C1
   Chinese Silver: #CDCDCC
   Dark Grey: #414042
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ======= CSS Variables ======= */
:root {
  --dark-blue: #030b59;
  --light-blue: #11a5d8;
  --rose: #DAD3C1;
  --silver: #CDCDCC;
  --dark-grey: #414042;
  --white: #ffffff;
  --black: #000000;
  --nav-orange: #e67e22;
  --nav-orange-soft: rgba(255, 186, 120, 0.4);
  --gradient-main: linear-gradient(135deg, #030b59 0%, #0a1a8a 50%, #11a5d8 100%);
  --gradient-hero: linear-gradient(to bottom, rgba(3,11,89,0.5) 0%, rgba(3,11,89,0.2) 50%, rgba(3,11,89,0.7) 100%);
  --shadow-sm: 0 4px 15px rgba(3,11,89,0.1);
  --shadow-md: 0 8px 30px rgba(3,11,89,0.2);
  --shadow-lg: 0 20px 60px rgba(3,11,89,0.3);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --nav-height: 92px;
}

/* ======= Reset & Base ======= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

input, select, textarea {
  font-family: var(--font-body);
  outline: none;
}

/* ======= Scrollbar ======= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--light-blue); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--dark-blue); }

/* ======= Typography ======= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark-blue);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 12px;
  position: relative;
  padding-left: 50px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 2px;
  background: var(--light-blue);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark-blue);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--dark-grey);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.section-header { margin-bottom: 60px; }
.section-header .section-tag { padding-left: 0; }
.section-header .section-tag::before { display: none; }

/* ======= Buttons ======= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transition: left 0.4s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(17,165,216,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(17,165,216,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--dark-blue);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--dark-blue);
  border: 2px solid var(--dark-blue);
}
.btn-outline:hover {
  background: var(--dark-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-light-blue {
  background: var(--light-blue);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(17,165,216,0.3);
}
.btn-light-blue:hover {
  background: var(--dark-blue);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(3,11,89,0.4);
}

.btn-white {
  background: var(--white);
  color: var(--dark-blue);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--light-blue);
  color: var(--white);
  transform: translateY(-3px);
}

/* ======= Container ======= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======= Section ======= */
section { padding: 100px 0; }

/* ======= Navbar ======= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(3,11,89,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(3,11,89,0.97);
  backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(3,11,89,0.3);
}

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

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

.nav-logo img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

.nav-logo-tagline {
  font-size: 0.65rem;
  color: var(--light-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

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

.nav-link {
  color: rgba(255,255,255,0.92);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 15px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--nav-orange-soft);
  transform: skewX(-20deg);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-link:hover,
.nav-link.active {
  color: var(--nav-orange);
  background: none;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
}

.nav-cta { margin-left: 16px; }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  transition: var(--transition);
}

.nav-toggle:hover {
  background: rgba(17,165,216,0.24);
  border-color: rgba(17,165,216,0.7);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ======= Hero Section ======= */
.hero {
  position: relative;
  height: auto;
  min-height: max(100svh, 820px);
  padding: calc(var(--nav-height) + 36px) 0 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes heroZoom {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3,11,89,0.75) 0%,
    rgba(3,11,89,0.4) 50%,
    rgba(17,165,216,0.3) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(17,165,216,0.3);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(17,165,216,0.2);
  border: 1px solid rgba(17,165,216,0.4);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-title span {
  color: var(--light-blue);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--light-blue);
  border-radius: 2px;
  animation: lineExpand 1s ease 1s both;
}

@keyframes lineExpand {
  0% { width: 0; }
  100% { width: 100%; }
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}

.scroll-dot {
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot::after {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ======= Search Bar ======= */
.hero-search {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 24px;
  margin-top: 40px;
  animation: fadeInUp 0.9s ease 0.8s both;
}

.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
}

.search-tab {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: var(--transition);
}

.search-tab.active {
  background: var(--white);
  color: var(--dark-blue);
  font-weight: 600;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.search-field input,
.search-field select {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  width: 100%;
}

.search-field input::placeholder { color: rgba(255,255,255,0.5); }
.search-field input:focus,
.search-field select:focus {
  border-color: var(--light-blue);
  background: rgba(255,255,255,0.2);
}

.search-field select option { background: var(--dark-blue); color: var(--white); }

.search-btn {
  background: var(--light-blue);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.search-btn:hover {
  background: var(--white);
  color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ======= Page Hero (inner pages) ======= */
.page-hero {
  position: relative;
  margin-top: var(--nav-height);
  height: 52vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero .hero-bg img {
  animation: heroZoomInOut 15s ease-in-out infinite;
}

@keyframes heroZoomInOut {
  0%   { transform: scale(1.1); }
  50%  { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeInDown 0.8s ease both;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.breadcrumb a { color: var(--light-blue); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ======= Stats Bar ======= */
.stats-bar {
  background: var(--dark-blue);
  padding: 40px 0;
}

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

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

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--light-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* ======= Featured Destinations ======= */
#featured-destinations { padding: 70px 0 28px; }
#popular-tours { padding-top: 32px; }

.dest-carousel {
  position: relative;
}

.destinations-grid,
.dest-carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 4px 8px;
}

.destinations-grid::-webkit-scrollbar,
.dest-carousel-track::-webkit-scrollbar { display: none; }

.dest-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  width: calc((100% - 36px) / 3);
  height: 280px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
}

.dest-card.large { grid-column: auto; grid-row: auto; }

.dest-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark-blue);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.dest-carousel-btn:hover {
  background: var(--light-blue);
  color: var(--white);
}

.dest-carousel-prev { left: -8px; }
.dest-carousel-next { right: -8px; }

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

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

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,11,89,0.9) 0%, rgba(3,11,89,0.2) 50%, transparent 100%);
  transition: var(--transition);
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(3,11,89,0.95) 0%, rgba(3,11,89,0.4) 60%, rgba(17,165,216,0.1) 100%);
}

.dest-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  color: var(--white);
}

.dest-tag {
  display: inline-block;
  background: var(--light-blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.dest-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.dest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.dest-meta i { margin-right: 4px; color: var(--light-blue); }

.dest-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.dest-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

.dest-card-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  transform: scale(0);
}

.dest-card:hover .dest-card-btn {
  transform: scale(1);
}

.dest-card-btn:hover {
  background: var(--light-blue);
  border-color: var(--light-blue);
  transform: scale(1.1);
}

/* ======= Tours Section ======= */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.tour-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--dark-blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tour-badge.hot { background: #e74c3c; }
.tour-badge.new { background: #27ae60; }
.tour-badge.sale { background: #f39c12; }

.tour-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.tour-wishlist:hover,
.tour-wishlist.active { color: #e74c3c; background: var(--white); }

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

.tour-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--light-blue);
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tour-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 14px;
  line-height: 1.3;
}

.tour-name a { color: inherit; }

.tour-features {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tour-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--dark-grey);
  opacity: 0.75;
}

.tour-feature i { color: var(--light-blue); font-size: 0.85rem; }

.tour-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.stars { color: #f39c12; font-size: 0.85rem; }
.rating-count { font-size: 0.8rem; color: var(--dark-grey); opacity: 0.6; }

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

.tour-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.7rem;
  color: var(--dark-grey);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  font-family: var(--font-heading);
}

.price-value span { font-size: 0.75rem; font-weight: 400; color: var(--dark-grey); opacity: 0.6; }

.tour-book-btn {
  background: var(--gradient-main);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.tour-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17,165,216,0.4);
}

/* ======= Why Choose Us ======= */
.why-us {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f7fd 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image {
  position: relative;
}

.why-img-main {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-md);
  min-width: 200px;
}

.why-img-float .stat-big {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1;
}

.why-img-float .stat-big span { color: var(--light-blue); }
.why-img-float p {
  font-size: 0.85rem;
  color: var(--dark-grey);
  opacity: 0.7;
  margin-top: 4px;
}

.why-badge-float {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--dark-blue);
  color: var(--white);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-align: center;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  animation: rotateFloat 8s linear infinite;
}

@keyframes rotateFloat {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.05); }
}

.why-badge-float i { font-size: 1.5rem; color: var(--light-blue); margin-bottom: 4px; }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.why-feature:hover { transform: translateX(8px); }

.why-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-main);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(17,165,216,0.3);
}

.why-feature-text h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 6px;
}

.why-feature-text p {
  font-size: 0.9rem;
  color: var(--dark-grey);
  opacity: 0.7;
  line-height: 1.7;
}

/* ======= Testimonials ======= */
.testimonials { background: var(--dark-blue); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.6); }
.testimonials .section-tag { color: var(--light-blue); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  margin-right: 0;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius);
  padding: 36px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.testimonial-card:hover {
  background: #fff;
  border-color: var(--light-blue);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--light-blue);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: #f5b301;
  letter-spacing: 2px;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--dark-grey);
  line-height: 1.9;
  margin-bottom: 28px;
  font-style: normal;
  max-height: 220px;
  overflow-y: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border: 3px solid var(--light-blue);
}

.testimonial-name {
  font-weight: 600;
  color: var(--dark-blue);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.testimonial-trip {
  font-size: 0.8rem;
  color: var(--light-blue);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonials-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-nav button:hover {
  background: var(--light-blue);
  border-color: var(--light-blue);
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--light-blue);
  width: 24px;
  border-radius: 4px;
}

/* ======= Newsletter ======= */
.newsletter {
  background: var(--gradient-main);
  padding: 80px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.newsletter-text h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
}

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

.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 14px 24px;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.2);
}

/* ======= Footer ======= */
.footer {
  background: #020840;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

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

.footer-brand .nav-logo-name {
  font-size: 1.8rem;
  margin-bottom: 4px;
  display: block;
}

.footer-brand .nav-logo-tagline {
  display: block;
  margin-bottom: 20px;
}

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

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--light-blue);
  border-color: var(--light-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--light-blue);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--light-blue);
  font-size: 1.1rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(17,165,216,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-blue);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-contact-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom p span { color: var(--light-blue); }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links a:hover { color: var(--white); }

/* ======= Tour Filter ======= */
.tour-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid rgba(3,11,89,0.15);
  color: var(--dark-grey);
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
}

/* ======= Booking Form ======= */
.booking-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f7fd 100%);
  overflow-x: clip;
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
  width: 100%;
  min-width: 0;
}

.booking-container > *,
.booking-form-body,
.booking-panel,
.form-row > *,
.addon-left,
.addon-left > div:last-child {
  min-width: 0;
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.booking-form-header {
  background: var(--gradient-main);
  padding: 32px;
  color: var(--white);
}

.booking-form-header h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.booking-form-header p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Progress Steps */
.booking-steps {
  display: flex;
  align-items: center;
  padding: 28px 32px;
  background: #f8faff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
}

.booking-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -30%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 2px;
  background: rgba(3,11,89,0.1);
  z-index: 0;
  transition: background 0.4s ease;
}

.booking-step.completed:not(:last-child)::after {
  background: var(--light-blue);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(3,11,89,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(3,11,89,0.4);
  transition: var(--transition);
  background: var(--white);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.booking-step.active .step-num {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
}

.booking-step.completed .step-num {
  background: var(--light-blue);
  border-color: var(--light-blue);
  color: var(--white);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(3,11,89,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.booking-step.active .step-label { color: var(--dark-blue); }
.booking-step.completed .step-label { color: var(--light-blue); }

.booking-form-body {
  padding: 36px 32px;
}

.booking-panel { display: none; }
.booking-panel.active { display: block; animation: fadeInRight 0.5s ease; }

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group label span { color: #e74c3c; margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid rgba(3,11,89,0.12);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--dark-grey);
  background: #fafbff;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--light-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(17,165,216,0.08);
}

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

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

.form-divider {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark-grey);
  opacity: 0.4;
  text-align: center;
  margin: 28px 0;
  position: relative;
}

.form-divider::before, .form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}

.btn-back {
  background: transparent;
  border: 1.5px solid rgba(3,11,89,0.2);
  color: var(--dark-blue);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-back:hover {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
}

.btn-next {
  background: var(--gradient-main);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(17,165,216,0.3);
  flex: 1;
  justify-content: center;
  max-width: 200px;
}

.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(17,165,216,0.4);
}

/* Booking Summary */
.booking-summary-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.summary-header {
  background: var(--dark-blue);
  padding: 24px;
  color: var(--white);
}

.summary-header h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.summary-header p {
  font-size: 0.8rem;
  opacity: 0.6;
}

.summary-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.summary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-body { padding: 24px; }

.summary-tour-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.summary-tour-location {
  font-size: 0.85rem;
  color: var(--light-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.summary-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.summary-detail-label {
  color: var(--dark-grey);
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-detail-label i { color: var(--light-blue); }
.summary-detail-value { font-weight: 600; color: var(--dark-blue); }

.summary-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 20px 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-blue);
}

.summary-total-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-blue);
}

.summary-total-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--dark-grey);
  opacity: 0.6;
}

.summary-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.summary-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f4ff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--dark-blue);
  font-weight: 500;
}

.summary-badge i { color: var(--light-blue); }

/* ======= Payment Section ======= */
.payment-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.payment-method {
  flex: 1;
  min-width: 100px;
  border: 2px solid rgba(3,11,89,0.12);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.payment-method.active {
  border-color: var(--light-blue);
  background: rgba(17,165,216,0.05);
}

.payment-method img {
  height: 28px;
  margin: 0 auto 6px;
  object-fit: contain;
}

.payment-method span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark-grey);
}

/* ======= Confirmation ======= */
.booking-confirmation {
  text-align: center;
  padding: 20px 0;
}

.confirm-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  margin: 0 auto 24px;
  animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  box-shadow: 0 10px 30px rgba(46,204,113,0.4);
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.booking-confirmation h3 {
  font-size: 1.8rem;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.booking-confirmation p {
  font-size: 0.95rem;
  color: var(--dark-grey);
  opacity: 0.7;
  margin-bottom: 8px;
  line-height: 1.7;
}

.booking-ref {
  display: inline-block;
  background: #f0f4ff;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 20px 0;
  letter-spacing: 2px;
}

/* ======= About Page ======= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

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

.team-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.team-social-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,11,89,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-social-overlay { opacity: 1; }

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

.team-social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: var(--transition);
}

.team-social-links a:hover {
  background: var(--light-blue);
  border-color: var(--light-blue);
}

.team-info {
  padding: 20px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--light-blue);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ======= Contact Page ======= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--dark-blue);
  border-radius: var(--border-radius);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(17,165,216,0.15);
  border-radius: 50%;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: rgba(17,165,216,0.1);
  border-radius: 50%;
}

.contact-info-title {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-info-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(17,165,216,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}

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

.contact-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 0.9rem;
  color: var(--dark-grey);
  opacity: 0.6;
  margin-bottom: 32px;
}

/* ======= Map Section ======= */
.map-section {
  height: 450px;
  background: #e8edf5;
  position: relative;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ======= Scroll Animations ======= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ======= Keyframes ======= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(17,165,216,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(17,165,216,0); }
}

/* ======= Loading Screen ======= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--dark-blue);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 4px;
}

.loader-logo span { color: var(--light-blue); }

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--light-blue), var(--white));
  border-radius: 2px;
  animation: loadFill 1.5s ease forwards;
}

@keyframes loadFill {
  0% { width: 0; }
  70% { width: 80%; }
  100% { width: 100%; }
}

.loader-dots {
  display: flex;
  gap: 8px;
}

.loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-blue);
  animation: dotBounce 1.4s ease infinite;
}

.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-12px); }
}

/* ======= Back to Top ======= */
.float-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.float-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatBob 2.8s ease-in-out infinite;
}

.float-whatsapp { background: #25d366; animation-delay: 0s; }
.float-call { background: var(--light-blue); animation-delay: 0.45s; }

.float-btn::before,
.back-to-top.visible::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.float-whatsapp::before {
  animation: pulseRingGreen 2.2s ease-out infinite;
}

.float-call::before {
  animation: pulseRingBlue 2.2s ease-out infinite 0.4s;
}

.float-btn:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.08);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.back-to-top {
  position: static;
  width: 50px;
  height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--gradient-main);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.visible {
  height: 50px;
  opacity: 1;
  overflow: visible;
  pointer-events: auto;
  animation: floatBob 2.8s ease-in-out infinite 0.8s;
}

.back-to-top.visible::before {
  animation: pulseRingNavy 2.2s ease-out infinite 0.8s;
}

.back-to-top:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.08);
  box-shadow: var(--shadow-lg);
}

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

@keyframes pulseRingGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulseRingBlue {
  0% { box-shadow: 0 0 0 0 rgba(17, 165, 216, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(17, 165, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(17, 165, 216, 0); }
}

@keyframes pulseRingNavy {
  0% { box-shadow: 0 0 0 0 rgba(3, 11, 89, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(3, 11, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(3, 11, 89, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .float-btn,
  .back-to-top.visible,
  .float-btn::before,
  .back-to-top.visible::before {
    animation: none;
  }
}

/* ======= Gallery ======= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,11,89,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}

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

/* ======= Responsive ======= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { gap: 50px; }
  .booking-container { grid-template-columns: 1fr; }
  .booking-summary-card { position: static; }
  .nav-menu { display: none !important; }
  .nav-toggle { display: flex; z-index: 1000; }
}

@media (max-width: 900px) {
  section { padding: 70px 0; }
  .dest-card {
    flex: 0 0 calc((100% - 18px) / 2);
    width: calc((100% - 18px) / 2);
    height: 240px;
  }
  .dest-carousel-prev { left: 8px; }
  .dest-carousel-next { right: 8px; }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2)::after { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { max-width: 500px; margin: 0 auto; }
  .why-img-float { right: 0; }
  .newsletter-inner { flex-direction: column; gap: 30px; }
  .testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
  }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child, .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
}

/* ======= Mobile Menu — Full Screen Overlay ======= */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu-overlay.open {
  pointer-events: all;
  visibility: visible;
}

/* Animated background panels */
.mobile-menu-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark-blue);
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 0;
}

.mobile-menu-overlay.open::before {
  transform: translateX(0);
}

/* Decorative glow blobs */
.mobile-menu-overlay::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,165,216,0.25) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.mobile-menu-overlay.open::after { opacity: 1; }

.mobile-menu-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 36px 40px;
  overflow-y: auto;
}

/* Top bar inside overlay */
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 0;
  margin-bottom: 48px;
}

.mobile-menu-logo {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

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

.mobile-menu-logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

.mobile-menu-logo-name span { color: var(--light-blue); }

.mobile-menu-logo-tag {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Close button */
.mobile-menu-close {
  width: 46px;
  height: 46px;
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(17,165,216,0.45);
  background: rgba(17,165,216,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
  transition: opacity 0.4s ease 0.35s,
              transform 0.4s cubic-bezier(0.34,1.56,0.64,1) 0.35s,
              background 0.3s ease,
              border-color 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.mobile-menu-overlay.open .mobile-menu-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.mobile-menu-close:hover {
  background: var(--light-blue);
  border-color: var(--light-blue);
  transform: rotate(90deg) scale(1.1) !important;
}

.mobile-menu-close i {
  display: none;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: '';
  position: absolute;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  left: 50%;
  top: 50%;
}

.mobile-menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Nav links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  opacity: 0;
  transform: translateX(40px);
}

.mobile-menu-overlay.open .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered entry for each link */
.mobile-menu-overlay.open .mobile-nav-link:nth-child(1) { transition: opacity 0.45s ease 0.25s, transform 0.45s ease 0.25s, color 0.3s ease, padding-left 0.3s ease; }
.mobile-menu-overlay.open .mobile-nav-link:nth-child(2) { transition: opacity 0.45s ease 0.32s, transform 0.45s ease 0.32s, color 0.3s ease, padding-left 0.3s ease; }
.mobile-menu-overlay.open .mobile-nav-link:nth-child(3) { transition: opacity 0.45s ease 0.39s, transform 0.45s ease 0.39s, color 0.3s ease, padding-left 0.3s ease; }
.mobile-menu-overlay.open .mobile-nav-link:nth-child(4) { transition: opacity 0.45s ease 0.46s, transform 0.45s ease 0.46s, color 0.3s ease, padding-left 0.3s ease; }
.mobile-menu-overlay.open .mobile-nav-link:nth-child(5) { transition: opacity 0.45s ease 0.53s, transform 0.45s ease 0.53s, color 0.3s ease, padding-left 0.3s ease; }
.mobile-menu-overlay.open .mobile-nav-link:nth-child(6) { transition: opacity 0.45s ease 0.60s, transform 0.45s ease 0.60s, color 0.3s ease, padding-left 0.3s ease; }
.mobile-menu-overlay.open .mobile-nav-link:nth-child(7) { transition: opacity 0.45s ease 0.67s, transform 0.45s ease 0.67s, color 0.3s ease, padding-left 0.3s ease; }
.mobile-menu-overlay.open .mobile-nav-link:nth-child(8) { transition: opacity 0.45s ease 0.74s, transform 0.45s ease 0.74s, color 0.3s ease, padding-left 0.3s ease; }

.mobile-nav-link:hover {
  color: var(--white);
  padding-left: 10px;
}

.mobile-nav-link.active-link { color: var(--light-blue); }

.mobile-nav-link i {
  font-size: 0.8rem;
  opacity: 0.4;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-link:hover i {
  opacity: 1;
  color: var(--light-blue);
  transform: translateX(4px);
}

/* CTA inside overlay */
.mobile-menu-cta {
  margin-top: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.58s, transform 0.4s ease 0.58s;
}

.mobile-menu-overlay.open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-main);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(17,165,216,0.35);
  transition: var(--transition);
}

.mobile-menu-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(17,165,216,0.5);
}

/* Bottom: contact + social */
.mobile-menu-footer {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.65s, transform 0.4s ease 0.65s;
}

.mobile-menu-overlay.open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.mobile-menu-contact a i {
  color: var(--light-blue);
  width: 16px;
  text-align: center;
}

.mobile-menu-contact a:hover { color: var(--white); }

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

.mobile-menu-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.mobile-menu-social a:hover {
  background: var(--light-blue);
  border-color: var(--light-blue);
  color: var(--white);
  transform: translateY(-3px);
}

/* Decorative circle top-left */
.mobile-deco-circle {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(17,165,216,0.12);
  top: -60px;
  left: -80px;
  z-index: 1;
  pointer-events: none;
}

.mobile-deco-circle-2 {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(17,165,216,0.08);
  top: 40px;
  left: -20px;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  /* Hide old nav-menu on mobile — use overlay instead */
  .nav-menu {
    display: none !important;
  }

  :root { --nav-height: 78px; }
  .navbar { padding: 10px 0; }
  .nav-container { padding: 0 18px; }
  .nav-logo-text { display: none; }
  .nav-logo img { height: 58px !important; }
  .nav-toggle { display: flex; z-index: 1000; }

  /* Keep toggle animation */
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav-overlay { display: none; }

  .hero {
    min-height: 100svh;
    padding: calc(var(--nav-height) + 28px) 0 44px;
    align-items: center;
  }
  .hero-content { padding: 0 20px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 3rem); }
  .search-form { grid-template-columns: 1fr; }
  .hero-search { margin-top: 20px; }
  .page-hero {
    align-items: center;
    min-height: 340px;
    padding-bottom: 28px;
  }
  .page-hero-content { padding-top: 12px; }

  .dest-card {
    flex: 0 0 82%;
    width: 82%;
    height: 220px;
  }
  .tours-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { gap: 16px; }
  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .booking-section .container { padding: 0 16px; }
  .booking-form-header { padding: 24px 20px; }
  .booking-form-body { padding: 28px 20px; }
  .booking-steps { padding: 20px; gap: 4px; }
  .step-label { display: none; }
  .addon-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px;
  }
  .addon-left { gap: 10px; }
  .addon-icon { flex: 0 0 40px; }
  .addon-name,
  .addon-desc { overflow-wrap: anywhere; }
  .addon-toggle { margin-left: 4px; }
  .summary-detail { gap: 12px; }
  .summary-detail-value {
    min-width: 0;
    text-align: right;
    overflow-wrap: anywhere;
  }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-img-float { position: static; margin-top: 20px; }
  .why-badge-float { display: none; }
}

.category-intro {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.category-intro p {
  color: var(--dark-grey);
  line-height: 1.8;
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

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

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

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

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--light-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.15rem;
  color: var(--dark-blue);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--dark-grey);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card a,
.blog-card-more {
  color: var(--light-blue);
  font-weight: 600;
  font-size: 0.88rem;
}

.article-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  color: var(--dark-grey);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.article-meta span i { color: var(--light-blue); margin-right: 6px; }

.article-cover {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}

.article-cover img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.article-body h2 {
  font-size: 1.45rem;
  color: var(--dark-blue);
  margin: 32px 0 12px;
}

.article-body p {
  color: var(--dark-grey);
  line-height: 1.85;
  margin-bottom: 16px;
}

.article-body ul {
  margin: 0 0 18px 20px;
  color: var(--dark-grey);
  line-height: 1.85;
}

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

.article-cta {
  margin-top: 40px;
  padding: 28px;
  border-radius: var(--border-radius);
  background: #f4f8ff;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.article-cta p {
  margin: 0;
  color: var(--dark-blue);
  font-weight: 600;
}

.article-related {
  margin-top: 64px;
}

.article-related .blog-grid {
  grid-template-columns: 1fr 1fr;
}

.tour-details-section { padding: 70px 0 90px; }

.tour-details-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.tour-location-line {
  color: var(--light-blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.tour-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-grey);
  margin-bottom: 28px;
}

.tour-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
}

.tour-facts div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f4f8ff;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.tour-facts i { color: var(--light-blue); }

.tour-details-main h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
}

.tour-check-list { list-style: none; padding: 0; }

.tour-check-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--dark-grey);
  line-height: 1.6;
}

.tour-check-list i { color: var(--light-blue); margin-top: 4px; }

.itinerary-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.itinerary-list::before {
  content: '';
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 17px;
  width: 2px;
  background: linear-gradient(180deg, var(--light-blue), rgba(17,165,216,0.15));
}

.itinerary-item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(3,11,89,0.08);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  animation: itineraryIn 0.55s ease forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes itineraryIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.itinerary-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.itinerary-toggle i {
  color: var(--light-blue);
  transition: transform 0.35s ease;
}

.itinerary-item.open .itinerary-toggle i {
  transform: rotate(180deg);
}

.itinerary-day {
  font-weight: 700;
  color: var(--light-blue);
  font-size: 0.88rem;
}

.itinerary-title {
  font-weight: 700;
  color: var(--dark-blue);
}

.itinerary-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease, padding 0.35s ease;
  padding: 0 18px 0 140px;
}

.itinerary-item.open .itinerary-body {
  grid-template-rows: 1fr;
  padding-bottom: 18px;
}

.itinerary-body > p {
  overflow: hidden;
  margin: 0;
  color: var(--dark-grey);
  line-height: 1.7;
}

.related-tours { display: grid; gap: 14px; }

.related-tour-card {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.related-tour-card img { width: 92px; height: 72px; object-fit: cover; }
.related-tour-card strong { display: block; color: var(--dark-blue); }
.related-tour-card span { color: var(--light-blue); font-size: 0.85rem; font-weight: 600; }

.tour-book-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.tour-book-price {
  font-size: 0.95rem;
  color: var(--dark-grey);
  margin-bottom: 20px;
}

.tour-book-price strong {
  font-size: 2rem;
  color: var(--dark-blue);
}

.booking-success {
  text-align: center;
  padding: 20px 8px;
}

.booking-success i { font-size: 2.2rem; color: #27ae60; margin-bottom: 10px; }
.booking-success h3 { margin-bottom: 8px; }

.tour-full-book {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: var(--light-blue);
  font-weight: 600;
  font-size: 0.88rem;
}

a.dest-card,
a.dest-big-card,
a.tour-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 900px) {
  .tour-details-layout { grid-template-columns: 1fr; }
  .tour-book-card { position: static; }
  .itinerary-toggle { grid-template-columns: 1fr auto; }
  .itinerary-day { grid-column: 1; }
  .itinerary-title { grid-column: 1; }
  .itinerary-toggle i { grid-column: 2; grid-row: 1 / span 2; }
  .itinerary-body { padding-left: 18px; }
  .itinerary-list::before { left: 12px; }
}

.tours-page-grid { grid-template-columns: repeat(3, 1fr); }
.tour-card { cursor: pointer; }

.offer-banner {
  background: linear-gradient(135deg, var(--dark-blue), #1a2fa0);
  color: var(--white);
  padding: 18px 0;
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
}
.offer-banner span { color: var(--light-blue); font-weight: 700; }
.offer-banner a {
  display: inline-block;
  background: var(--light-blue);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 12px;
}

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

.filter-sidebar {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-height) + 16px);
}

.filter-sidebar h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f4ff;
}

.filter-group { margin-bottom: 28px; }
.filter-group-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark-grey);
  opacity: 0.5;
  margin-bottom: 14px;
}

.filter-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  cursor: pointer;
}
.filter-check input[type="checkbox"] { display: none; }
.filter-check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark-grey);
  cursor: pointer;
}
.custom-check {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(3,11,89,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.filter-check input:checked + .filter-check-label .custom-check {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
}
.filter-check input:checked + .filter-check-label .custom-check::after {
  content: '✓';
  color: var(--white);
  font-size: 0.75rem;
}
.filter-count {
  background: #f0f4ff;
  color: var(--dark-blue);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}
.price-range input[type="range"] { width: 100%; accent-color: var(--light-blue); }
.price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--dark-grey);
  font-weight: 600;
}
.btn-apply-filter {
  width: 100%;
  background: var(--gradient-main);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.results-count { font-size: 0.9rem; color: var(--dark-grey); }
.results-count strong { color: var(--dark-blue); }
.sort-select {
  padding: 8px 16px;
  border: 1.5px solid rgba(3,11,89,0.12);
  border-radius: 8px;
  background: var(--white);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.page-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid rgba(3,11,89,0.12);
  background: var(--white);
  color: var(--dark-blue);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page-btn:hover, .page-btn.active {
  background: var(--dark-blue);
  border-color: var(--dark-blue);
  color: var(--white);
}

@media (max-width: 900px) {
  .tours-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .tours-page-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .tours-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .article-cover img { height: 240px; }
}

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

@media (max-width: 600px) {
  .blog-grid,
  .article-related .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: 1fr; }
  .payment-methods { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 200px; }
}
