/* === TourPackages Theme CSS === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean: #0c4a6e;
  --ocean-deep: #083344;
  --ocean-light: #0e7490;
  --sunset: #ea580c;
  --sunset-light: #f97316;
  --sunset-glow: #fed7aa;
  --sand: #fef3c7;
  --sand-light: #fffbeb;
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --navy-light: #334155;
  --slate: #64748b;
  --slate-light: #94a3b8;
  --white: #ffffff;
  --offwhite: #f8fafc;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.1), 0 2px 4px rgba(15,23,42,0.06);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.08);
  --shadow-xl: 0 24px 60px rgba(15,23,42,0.18), 0 8px 20px rgba(15,23,42,0.1);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--navy);
  background: var(--offwhite);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
a { color: var(--ocean); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--sunset); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.gsap-hidden { visibility: hidden; }

/* === HEADER === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 20px 0;
}
.site-header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  padding: 12px 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; display: flex; align-items: center; gap: 10px;
}
.site-logo .logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.9rem;
  padding: 8px 16px; border-radius: 6px; transition: all 0.3s ease;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.main-nav a:hover, .main-nav a.current { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light)) !important;
  color: var(--white) !important; padding: 10px 24px !important;
  border-radius: 50px !important; font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(234,88,12,0.3);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(234,88,12,0.4) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 6px 0; transition: all 0.3s ease; border-radius: 2px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: var(--navy); flex-direction: column; padding: 80px 32px 32px;
    gap: 4px; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .main-nav.open { right: 0; }
  .main-nav a { font-size: 1rem; padding: 12px 16px; width: 100%; }
}

/* === HERO === */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden; background: var(--navy);
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.6) 0%, rgba(15,23,42,0.3) 40%, rgba(15,23,42,0.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; max-width: 800px;
  padding: 0 24px; margin: 0 auto; text-align: center;
}
.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.2);
  padding: 8px 20px; border-radius: 50px; color: var(--sand);
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem); color: var(--white);
  margin-bottom: 20px; font-weight: 700; line-height: 1.1;
}
.hero h1 em { font-style: italic; color: var(--sunset-glow); }
.hero-subtitle {
  font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 40px;
  max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.hero-search {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg);
  padding: 8px; display: flex; gap: 4px; max-width: 700px; margin: 0 auto;
}
.hero-search .search-field {
  flex: 1; padding: 14px 20px; background: rgba(255,255,255,0.1);
  border: none; border-radius: var(--radius); color: var(--white);
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; outline: none;
}
.hero-search .search-field::placeholder { color: rgba(255,255,255,0.5); }
.hero-search .search-field:focus { background: rgba(255,255,255,0.18); }
.hero-search select {
  padding: 14px 16px; background: rgba(255,255,255,0.1); border: none;
  border-radius: var(--radius); color: var(--white); font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; outline: none; cursor: pointer;
  appearance: none; -webkit-appearance: none; padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center; background-size: 20px;
}
.hero-search select option { background: var(--navy); color: var(--white); }
.hero-search .search-btn {
  padding: 14px 32px; background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
  border: none; border-radius: var(--radius); color: var(--white);
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; white-space: nowrap;
}
.hero-search .search-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(234,88,12,0.4); }
.hero-stats {
  display: flex; justify-content: center; gap: 48px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat .number {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; color: var(--white); line-height: 1;
}
.hero-stat .label {
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}

@media (max-width: 700px) {
  .hero-search { flex-direction: column; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}

/* === SECTIONS === */
.section { padding: 100px 0; }
.section-dark { background: var(--navy); }
.section-sand { background: var(--sand-light); }
.section-ocean { background: var(--ocean-deep); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--sunset); margin-bottom: 12px;
}
.section-dark .section-label { color: var(--sunset-glow); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-dark .section-title { color: var(--white); }
.section-desc { font-size: 1.1rem; color: var(--slate); max-width: 600px; margin: 0 auto; }
.section-dark .section-desc { color: var(--slate-light); }

/* === TOUR CARDS === */
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; }
.tour-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  position: relative;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.tour-card-image { position: relative; height: 240px; overflow: hidden; }
.tour-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.tour-card:hover .tour-card-image img { transform: scale(1.08); }
.tour-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(15,23,42,0.8); backdrop-filter: blur(10px);
  color: var(--white); padding: 6px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.tour-card-price {
  position: absolute; bottom: 16px; right: 16px;
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
  color: var(--white); padding: 8px 18px; border-radius: var(--radius);
  font-weight: 800; font-size: 1.1rem; box-shadow: 0 4px 15px rgba(234,88,12,0.3);
}
.tour-card-price small { font-size: 0.7rem; font-weight: 600; opacity: 0.85; }
.tour-card-body { padding: 24px; }
.tour-card-dest {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ocean-light); margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.tour-card-title { font-size: 1.35rem; margin-bottom: 10px; line-height: 1.3; }
.tour-card-title a { color: var(--navy); }
.tour-card-title a:hover { color: var(--sunset); }
.tour-card-excerpt {
  font-size: 0.9rem; color: var(--slate); margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.tour-card-meta {
  display: flex; gap: 16px; padding-top: 16px;
  border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--slate);
}
.tour-card-meta span { display: flex; align-items: center; gap: 5px; }

/* === DESTINATIONS GRID === */
.destinations-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px; gap: 16px;
}
.dest-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.dest-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.dest-card:nth-child(2) { grid-column: span 2; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,23,42,0.8) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.dest-card:hover .dest-card-overlay { background: linear-gradient(0deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.1) 60%); }
.dest-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }
.dest-card:nth-child(1) .dest-card-name { font-size: 2.2rem; }
.dest-card-count { font-size: 0.8rem; color: var(--sunset-glow); font-weight: 600; margin-top: 4px; }

@media (max-width: 800px) {
  .destinations-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card { min-height: 200px; }
  .dest-card:nth-child(1) { grid-column: span 2; }
}

/* === FEATURES === */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.feature-card {
  text-align: center; padding: 40px 32px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); transition: all 0.4s ease;
}
.feature-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 8px 25px rgba(234,88,12,0.25);
}
.feature-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.feature-card p { color: var(--slate-light); font-size: 0.9rem; line-height: 1.7; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; }
.testimonial-card {
  background: var(--white); padding: 36px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); position: relative; border: 1px solid var(--border);
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 20px; right: 28px;
  font-family: 'Cormorant Garamond', serif; font-size: 5rem;
  color: var(--sunset-glow); line-height: 1; opacity: 0.6;
}
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 1rem; color: var(--navy-mid); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.testimonial-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.testimonial-trip { font-size: 0.8rem; color: var(--slate); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: 50px; font-family: 'Nunito', sans-serif; font-weight: 700;
  font-size: 0.95rem; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none; letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
  color: var(--white); box-shadow: 0 4px 15px rgba(234,88,12,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(234,88,12,0.4); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: var(--white); transform: translateY(-2px); }
.btn-ocean { background: var(--ocean); color: var(--white); }
.btn-ocean:hover { background: var(--ocean-deep); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--navy); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* === ARCHIVE === */
.archive-header {
  position: relative; padding: 160px 0 80px; background: var(--navy);
  text-align: center; overflow: hidden;
}
.archive-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px; background: linear-gradient(0deg, var(--offwhite), transparent);
}
.archive-header h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 16px; }
.archive-header p { color: var(--slate-light); font-size: 1.15rem; }
.filter-bar {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px 32px;
  box-shadow: var(--shadow-lg); margin-top: -50px; position: relative; z-index: 10;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: end; border: 1px solid var(--border);
}
.filter-group { flex: 1; min-width: 180px; }
.filter-group label {
  display: block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate); margin-bottom: 6px;
}
.filter-group select, .filter-group input {
  width: 100%; padding: 10px 14px; border: 2px solid var(--border);
  border-radius: var(--radius); font-family: 'Nunito', sans-serif; font-size: 0.9rem;
  color: var(--navy); background: var(--offwhite); outline: none; transition: border-color 0.3s;
}
.filter-group select:focus, .filter-group input:focus { border-color: var(--ocean); }
.filter-bar .btn { min-width: 120px; justify-content: center; }

@media (max-width: 700px) {
  .filter-bar { flex-direction: column; }
  .filter-group { min-width: 100%; }
}

/* === SINGLE TOUR === */
.tour-hero { position: relative; height: 60vh; min-height: 400px; overflow: hidden; }
.tour-hero img { width: 100%; height: 100%; object-fit: cover; }
.tour-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.2) 50%);
  display: flex; align-items: flex-end; padding-bottom: 48px;
}
.tour-hero-content { width: 100%; }
.tour-hero-cats { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.tour-hero-cat {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: var(--white);
  padding: 5px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.tour-hero-title { color: var(--white); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 8px; }
.tour-hero-dest { color: var(--sunset-glow); font-size: 1.1rem; font-weight: 600; }
.tour-quick-info { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.tour-quick-item {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15); padding: 12px 20px;
  border-radius: var(--radius); color: var(--white); font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px;
}
.tour-quick-item strong { font-size: 1.1rem; color: var(--sunset-glow); }

.tour-content { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding: 60px 0 100px; }
@media (max-width: 1000px) { .tour-content { grid-template-columns: 1fr; } }

.tour-section { margin-bottom: 48px; }
.tour-section-title {
  font-size: 1.6rem; margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 10px;
}
.tour-section-title .icon { color: var(--sunset); }

/* Itinerary */
.itinerary-day { position: relative; padding-left: 48px; padding-bottom: 32px; }
.itinerary-day::before {
  content: ''; position: absolute; left: 15px; top: 32px; bottom: 0;
  width: 2px; background: var(--border);
}
.itinerary-day:last-child::before { display: none; }
.itinerary-day-num {
  position: absolute; left: 0; top: 4px; width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
  color: var(--white); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.8rem; font-weight: 700;
}
.itinerary-day h4 { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.itinerary-day p { color: var(--slate); font-size: 0.9rem; line-height: 1.7; }

/* Includes/Excludes */
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .includes-grid { grid-template-columns: 1fr; } }
.includes-list, .excludes-list { padding: 24px; border-radius: var(--radius-lg); }
.includes-list { background: #ecfdf5; border: 1px solid #a7f3d0; }
.excludes-list { background: #fef2f2; border: 1px solid #fecaca; }
.includes-list h4 { color: #065f46; font-family: 'Nunito', sans-serif; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.excludes-list h4 { color: #991b1b; font-family: 'Nunito', sans-serif; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.includes-list li, .excludes-list li { list-style: none; padding: 6px 0; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.includes-list li { color: #065f46; }
.excludes-list li { color: #991b1b; }

/* Gallery */
.tour-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tour-gallery a { border-radius: var(--radius); overflow: hidden; display: block; aspect-ratio: 4/3; }
.tour-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tour-gallery a:hover img { transform: scale(1.08); }

/* Sidebar booking */
.booking-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border); position: sticky; top: 100px;
}
.booking-price { text-align: center; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.booking-price .amount { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--sunset); }
.booking-price .per { color: var(--slate); font-size: 0.9rem; }
.booking-form .form-group { margin-bottom: 16px; }
.booking-form label {
  display: block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy-mid); margin-bottom: 6px;
}
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: var(--radius); font-family: 'Nunito', sans-serif; font-size: 0.9rem;
  color: var(--navy); outline: none; transition: border-color 0.3s; background: var(--offwhite);
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--ocean); }
.booking-form textarea { resize: vertical; min-height: 80px; }
.booking-form .btn { width: 100%; justify-content: center; }
.booking-details { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.booking-details li {
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 0.9rem; color: var(--slate); border-bottom: 1px solid var(--border);
}
.booking-details li:last-child { border-bottom: none; }
.booking-details li strong { color: var(--navy); }

/* Related tours */
.related-tours { padding: 80px 0; background: var(--sand-light); }

/* === PAGE TEMPLATES === */
.page-header {
  position: relative; padding: 160px 0 80px; background: var(--navy);
  text-align: center; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  background-size: 40px;
}
.page-header h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); position: relative; z-index: 1; }
.page-header p { color: var(--slate-light); font-size: 1.15rem; position: relative; z-index: 1; margin-top: 12px; }
.page-content { padding: 80px 0; }
.page-content h2 { font-size: 2rem; margin: 48px 0 16px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p { margin-bottom: 16px; color: var(--navy-mid); line-height: 1.8; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-grid img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.about-value { padding: 32px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.about-value h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--ocean); }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy-mid); margin-bottom: 6px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: var(--radius); font-family: 'Nunito', sans-serif; font-size: 0.95rem;
  color: var(--navy); outline: none; transition: border-color 0.3s; background: var(--offwhite);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--ocean); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-info-cards { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px; background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-card h3 { font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.9rem; color: var(--slate); margin: 0; line-height: 1.6; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* === FOOTER === */
.site-footer { background: var(--navy); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: var(--slate-light); font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }
.footer-col h4 {
  color: var(--white); font-family: 'Nunito', sans-serif; font-size: 0.9rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px;
}
.footer-col a { display: block; color: var(--slate-light); font-size: 0.9rem; padding: 4px 0; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--sunset-glow); padding-left: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; color: var(--slate); font-size: 0.8rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* === FORM MESSAGES === */
.form-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; }
.form-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; }

/* === PAGINATION === */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius); font-weight: 700;
  font-size: 0.9rem; transition: all 0.3s; border: 2px solid var(--border); color: var(--navy);
}
.pagination a:hover { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.pagination .current { background: var(--ocean); color: var(--white); border-color: var(--ocean); }

/* === CTA BANNER === */
.cta-banner { position: relative; padding: 80px 0; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,74,110,0.92), rgba(15,23,42,0.88)); z-index: 1;
}
.cta-banner-content { position: relative; z-index: 2; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 32px; max-width: 550px; margin-left: auto; margin-right: auto; }

/* Difficulty badges */
.difficulty-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px;
  border-radius: 50px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.difficulty-easy { background: #ecfdf5; color: #065f46; }
.difficulty-moderate { background: #fef3c7; color: #92400e; }
.difficulty-challenging { background: #fef2f2; color: #991b1b; }
.difficulty-extreme { background: #fae8ff; color: #86198f; }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 10000; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 0 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 24px; right: 24px; width: 48px; height: 48px;
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  color: var(--white); font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }

/* Destinations page */
.destinations-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.dest-page-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 320px; }
.dest-page-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-page-card:hover img { transform: scale(1.06); }
.dest-page-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,23,42,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.dest-page-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); }
.dest-page-count { font-size: 0.85rem; color: var(--sunset-glow); font-weight: 600; margin-top: 4px; }
.dest-page-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 8px; line-height: 1.5; }
