/*
 * Trip Details Page Premium Styling
 * Adventure Paradise Nepal
 */

:root {
  --primary-blue: #00579f;
  --secondary-blue: #3f72af;
  --accent-gold: #f9a826;
  --dark-slate: #1a2639;
  --text-dark: #1b212c;
  --text-muted: #5e6877;
  --light-bg: #f8fafc;
  --border-color: #e2e8f0;
  --success-green: #22c55e;
  --error-red: #ef4444;
}

/* Universal Paragraph Styling Rule */
p {
  font-size: 17.5px !important;
  line-height: 1.7 !important;
}

.trip-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.trip-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 3;
}

.trip-hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-bottom: 90px;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-indicators {
  display: none;
}

.trip-category-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.trip-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.trip-stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.trip-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trip-stat-item i {
  font-size: 22px;
  color: var(--accent-gold);
}

.trip-stat-info {
  display: flex;
  flex-direction: column;
}

.trip-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.trip-stat-value {
  font-size: 17px;
  font-weight: 700;
}

/* Details Layout */
.trip-details-container {
  padding: 55px 0 80px;
  background: #fdfdfd;
}

.trip-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 45px;
}

/* Overview Section */
.trip-section {
  margin-bottom: 45px;
}

/* Premium Section Cards with a unified cohesive layout */
.itinerary-section,
.cost-section,
.gear-section-wrap,
.faq-section {
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 50px;
  background: #ffffff;
  border: 1px solid var(--border-color);
}

.trip-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-slate);
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 12px;
}

.trip-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-gold);
}

.trip-overview p {
  color: var(--text-dark);
  font-size: 17.5px;
  line-height: 1.7;
  margin: 0 0 20px;
}

/* Highlights Box */
.trip-highlights-box {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 35px;
}

.trip-highlights-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-slate);
  margin: 0 0 20px;
}

.trip-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.trip-highlights-list li {
  position: relative;
  padding-left: 32px;
  font-size: 17.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.55;
}

.trip-highlights-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--success-green);
  font-size: 18px;
}

/* Tab Navigation & Content */
.trip-tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 35px;
  gap: 10px;
}

.trip-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.trip-tab-btn.active {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.trip-tab-btn:hover {
  color: var(--primary-blue);
}

.trip-tab-pane {
  display: none;
}

.trip-tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

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

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

.itinerary-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--border-color);
}

.itinerary-day-item {
  position: relative;
  margin-bottom: 25px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.itinerary-day-item:hover {
  border-color: var(--secondary-blue);
  box-shadow: 0 6px 15px rgba(0, 87, 159, 0.04);
}

.itinerary-day-dot {
  position: absolute;
  left: -37px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(0, 87, 159, 0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

.itinerary-day-item:hover .itinerary-day-dot {
  background: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(249, 168, 38, 0.3);
}

.itinerary-day-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.itinerary-day-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.itinerary-day-num {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  color: var(--primary-blue);
  font-weight: 800;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.itinerary-day-header h4 {
  margin: 0;
  font-size: 18.5px;
  font-weight: 700;
  color: var(--dark-slate);
}

.itinerary-day-toggle {
  font-size: 16px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.itinerary-day-item.open .itinerary-day-toggle {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.itinerary-day-content {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px dashed var(--border-color);
  margin-top: 0;
}

.itinerary-day-item.open .itinerary-day-content {
  display: block;
}

.itinerary-day-content p {
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.7;
  margin: 15px 0 0;
}

/* Cost Inclusions / Exclusions */
.cost-single-box {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
}

.cost-col h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.includes-col h3 {
  color: var(--success-green);
}

.excludes-col h3 {
  color: var(--error-red);
}

.cost-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.cost-col li {
  position: relative;
  padding-left: 20px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-dark);
  font-weight: 600;
}

.cost-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.includes-col li::before {
  background: var(--success-green);
}

.excludes-col li::before {
  background: var(--error-red);
}

.cost-col.includes-col {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 35px;
}

/* Sidebar Booking Card */
.booking-sidebar-card {
  position: sticky;
  top: 30px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary-blue);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  padding: 30px;
}

.booking-urgency-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: var(--error-red);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  animation: pulse-urgency 2.5s infinite ease-in-out;
}

@keyframes pulse-urgency {
  0% { opacity: 0.95; }
  50% { opacity: 1; transform: translateY(-0.5px); }
  100% { opacity: 0.95; }
}

.booking-price-section {
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 22px;
  margin-bottom: 25px;
}

.booking-price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.booking-price-val {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary-blue);
  font-family: "Urbanist", sans-serif;
  letter-spacing: -1px;
}

.booking-price-unit {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
}

.booking-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.booking-stars {
  color: #f59e0b;
  font-size: 13px;
  display: flex;
  gap: 2px;
}

.booking-stars i {
  color: #f59e0b;
}

.booking-rating-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.booking-meta-list {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.booking-meta-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
}

.booking-meta-row i {
  font-size: 18px;
  color: var(--secondary-blue);
}

.booking-meta-text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.booking-meta-text span {
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-divider {
  height: 1px;
  background: var(--border-color);
  margin: 20px 0;
}

.booking-benefits-list {
  display: grid;
  gap: 12px;
  margin-bottom: 25px;
}

.booking-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.45;
  color: #334155;
  font-weight: 600;
}

.booking-benefit-item i {
  color: var(--success-green);
  font-size: 15px;
  margin-top: 2px;
}

.booking-primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0d54a6 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  box-shadow: 0 4px 15px rgba(0, 87, 159, 0.25);
}

.booking-primary-btn:hover {
  background: linear-gradient(135deg, #0d54a6 0%, #073b75 100%);
  box-shadow: 0 6px 20px rgba(0, 87, 159, 0.35);
  transform: translateY(-2px);
}

.booking-primary-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 87, 159, 0.2);
}

.booking-primary-btn i {
  transition: transform 0.2s ease;
}

.booking-primary-btn:hover i {
  transform: translateX(4px);
}

.booking-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  border-top: 1px dashed var(--border-color);
  padding-top: 15px;
}

.booking-trust-badges span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.booking-trust-badges i {
  color: var(--secondary-blue);
  font-size: 13px;
}

/* Inquiry Modal styles */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-shell {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.booking-modal.is-open .booking-modal-shell {
  transform: scale(1);
}

.booking-modal-header {
  padding: 24px 30px;
  background: var(--primary-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-modal-header h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.booking-modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
  line-height: 1;
}

.booking-modal-close:hover {
  color: #fff;
}

.booking-modal-body {
  padding: 30px;
  max-height: calc(90vh - 100px);
  overflow-y: auto;
}

.booking-form {
  display: grid;
  gap: 20px;
}

.booking-form-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-form-label span {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 3px rgba(63, 114, 175, 0.15);
}

.booking-form button[type="submit"] {
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0d54a6 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(0, 87, 159, 0.2);
}

.booking-form button[type="submit"]:hover {
  background: linear-gradient(135deg, #0d54a6 0%, #073b75 100%);
  box-shadow: 0 6px 20px rgba(0, 87, 159, 0.3);
  transform: translateY(-1px);
}

.booking-form button[type="submit"]:active {
  transform: translateY(0);
}

/* Success Confirmation Screen */
.booking-success-wrap {
  text-align: center;
  padding: 20px 10px;
  animation: fadeIn 0.4s ease;
}

.booking-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  color: var(--success-green);
  font-size: 32px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}

.booking-success-wrap h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  color: var(--dark-slate);
  margin: 0 0 12px;
}

.booking-success-wrap p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 30px;
}

/* Responsive details layout */
@media (max-width: 991px) {
  .trip-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-sidebar-card {
    position: static;
    margin-top: 20px;
  }

  .trip-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .trip-hero {
    height: auto;
    min-height: 380px;
    padding-top: 80px;
  }

  .trip-hero-content {
    padding-bottom: 30px;
  }

  .trip-stats-bar {
    gap: 15px 25px;
  }

  .trip-tabs-nav {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
  }

  .trip-tab-btn {
    padding: 12px 15px;
    font-size: 16px;
  }

  .cost-single-box {
    padding: 25px;
    gap: 25px;
  }
  .cost-col.includes-col {
    padding-bottom: 25px;
  }
}

/* ==========================================
 * ALL TRIPS SEARCH & FILTER CATALOG STYLES
 * ========================================== */

.catalog-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-top: 40px;
  min-height: 600px;
}

.catalog-sidebar {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  height: fit-content;
  position: sticky;
  top: 30px;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

/* Custom premium scrollbar for sidebar */
.catalog-sidebar::-webkit-scrollbar {
  width: 6px;
}
.catalog-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.catalog-sidebar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.16);
  border-radius: 6px;
}
.catalog-sidebar::-webkit-scrollbar-thumb:hover {
  background: #00579f;
}

.catalog-sidebar h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  color: var(--dark-slate);
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin: 0 0 12px;
  font-weight: 700;
}

.search-input-wrap {
  position: relative;
  margin-bottom: 20px;
}

.search-input-wrap input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14.5px;
  font-family: inherit;
}

.search-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--primary-blue);
}

.catalog-grid-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

/* Catalog card overrides removed to inherit premium style natively */

.no-results-msg {
  display: none;
  text-align: center;
  padding: 80px 20px;
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  background: var(--light-bg);
}

.no-results-msg i {
  font-size: 48px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.no-results-msg h4 {
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--dark-slate);
}

.no-results-msg p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

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

@media (max-width: 991px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  
  .catalog-sidebar {
    position: static;
  }
}

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

/* ==========================================
 * TRIP PLANNER WIZARD STYLES — PREMIUM REDESIGN
 * ========================================== */

/* ── Background ── */
.wizard-container {
  position: relative;
  padding: 60px 24px 100px;
  min-height: calc(100vh - 163px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(10, 22, 50, 0.82) 0%, rgba(13, 53, 102, 0.78) 40%, rgba(10, 36, 80, 0.85) 100%),
    url('https://adventureparadisetreks.com/wp-content/uploads/2025/01/WhatsApp-Image-2025-01-22-at-11.30.42_4e7862a3.jpg') center center / cover no-repeat;
}

/* Soft bokeh light orbs behind the card */
.wizard-container::before,
.wizard-container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
  opacity: 0.28;
}
.wizard-container::before {
  width: 480px; height: 480px;
  top: -80px; left: -100px;
  background: radial-gradient(circle, #1e6fdc 0%, transparent 70%);
}
.wizard-container::after {
  width: 420px; height: 420px;
  bottom: -60px; right: -80px;
  background: radial-gradient(circle, #f9a826 0%, transparent 70%);
  opacity: 0.18;
}

/* ── Card ── */
.wizard-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 20, 60, 0.22),
    0 40px 80px rgba(0, 20, 60, 0.16);
  padding: 48px 52px 44px;
  width: 100%;
  max-width: 740px;
  backdrop-filter: blur(10px);
  animation: wizardCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes wizardCardIn {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Header ── */
.wizard-header {
  text-align: center;
  margin-bottom: 36px;
}



.wizard-header h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--dark-slate);
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.wizard-header p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

/* ── Progress Tracker ── */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 44px;
  padding: 0 16px;
}

/* Track line */
.wizard-progress::before {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  top: 19px;
  height: 4px;
  background: #e2eaf5;
  border-radius: 4px;
  z-index: 1;
}

/* Animated fill bar */
.wizard-progress-bar {
  position: absolute;
  left: 36px;
  top: 19px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue) 0%, #3b9eff 100%);
  border-radius: 4px;
  z-index: 2;
  width: 0%;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(0, 87, 159, 0.45);
}

.progress-step-item {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #dde5f0;
  color: #9baabf;
  font-weight: 800;
  font-size: 15px;
  display: grid;
  place-items: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.progress-step-item.active .step-num {
  border-color: transparent;
  background: linear-gradient(135deg, #0057a0 0%, #0d7fdd 100%);
  color: #fff;
  box-shadow:
    0 0 0 5px rgba(0, 100, 200, 0.18),
    0 4px 14px rgba(0, 87, 159, 0.35);
  transform: scale(1.08);
}

.progress-step-item.completed .step-num {
  border-color: transparent;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Checkmark for completed steps */
.progress-step-item.completed .step-num::after {
  content: "✓";
  font-weight: 900;
  font-size: 16px;
}

.progress-step-item.completed .step-num-inner {
  display: none;
}

.step-label {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #9baabf;
  transition: color 0.3s ease;
}

.progress-step-item.active .step-label {
  color: var(--primary-blue);
}

.progress-step-item.completed .step-label {
  color: var(--success-green);
}

/* ── Section label above option cards ── */
.booking-form-label > span {
  font-size: 14px !important;
  font-weight: 800;
  color: var(--dark-slate);
  letter-spacing: 0.2px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.8px;
  color: #6b7a90;
}

/* ── Activity Option Cards (Image Style) ── */
.option-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.option-card {
  position: relative;
  border: 2.5px solid transparent;
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  height: 170px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.25s ease,
              box-shadow 0.3s ease;
  background: #0a1929;
}

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Full-bleed photo */
.option-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
  filter: brightness(0.72) saturate(1.1);
}

/* Gradient text scrim */
.option-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  text-align: center;
  z-index: 2;
}

.option-card h5 {
  font-size: 14.5px;
  font-weight: 800;
  margin: 0 0 3px;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.option-card p {
  font-size: 11.5px !important;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.4 !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Hover — photo zoom + slight lift */
.option-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  border-color: rgba(255,255,255,0.35);
}

.option-card:hover .option-card-img {
  transform: scale(1.07);
  filter: brightness(0.82) saturate(1.2);
}

/* Selected — gold border glow */
.option-card.selected {
  border-color: #f9a826;
  box-shadow:
    0 0 0 2px rgba(249, 168, 38, 0.55),
    0 10px 30px rgba(249, 168, 38, 0.2);
  transform: translateY(-3px) scale(1.01);
}

.option-card.selected .option-card-img {
  filter: brightness(0.75) saturate(1.3);
}

/* Gold checkmark badge — top right */
.option-card.selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 26px;
  height: 26px;
  background: #f9a826;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 10px rgba(249, 168, 38, 0.5);
  animation: checkPop 0.25s cubic-bezier(0.4, 0, 0.2, 1) both;
}

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

/* ── Form Inputs Upgrade ── */
.booking-form-label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.booking-form-label > span {
  font-size: 13px !important;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.4px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1.5px solid #dde5f0;
  padding: 13px 15px;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: #fafcff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  appearance: auto;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #3b9eff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 158, 255, 0.14);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #b0bcc8;
}

.booking-form textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── Navigation Row ── */
.wizard-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1.5px dashed #e2e8f0;
  gap: 12px;
}

/* Back button */
.wizard-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #d4dce8;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.22s ease;
  letter-spacing: 0.2px;
}

.wizard-btn-back::before {
  content: "←";
  font-size: 16px;
}

.wizard-btn-back:hover {
  background: #f1f5fb;
  border-color: #b3c6de;
  color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 87, 159, 0.08);
}

/* Next/Submit buttons override */
.wizard-nav-row .booking-primary-btn {
  height: 50px;
  padding: 0 38px !important;
  width: auto !important;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3px;
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0057a0 0%, #0d7fdd 100%) !important;
  box-shadow: 0 6px 18px rgba(0, 87, 159, 0.28);
  transition: all 0.25s ease;
}

.wizard-nav-row .booking-primary-btn:hover {
  background: linear-gradient(135deg, #003e7a 0%, #0b6cbf 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 87, 159, 0.38);
}

/* Submit button — emerald green */
#wizard-submit {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%) !important;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.3) !important;
}

#wizard-submit:hover {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%) !important;
  box-shadow: 0 10px 26px rgba(22, 163, 74, 0.4) !important;
}

/* ── Step Pane Animation ── */
.wizard-step-pane {
  display: none;
}

.wizard-step-pane.active {
  display: block;
  animation: wizardStepIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

/* ── Success Screen Upgrade ── */
.booking-success-wrap {
  text-align: center;
  padding: 30px 20px 10px;
  animation: wizardStepIn 0.5s ease;
}

.booking-success-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(16, 163, 74, 0.18) 100%);
  border: 3px solid rgba(34, 197, 94, 0.3);
  color: var(--success-green);
  font-size: 38px;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 0 12px rgba(34, 197, 94, 0.07);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0.07); }
  50%       { box-shadow: 0 0 0 18px rgba(34, 197, 94, 0.04); }
}

.booking-success-wrap h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--dark-slate);
  margin: 0 0 14px;
}

.booking-success-wrap p {
  color: var(--text-muted);
  font-size: 16.5px !important;
  line-height: 1.65 !important;
  margin: 0 0 34px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .wizard-card {
    padding: 36px 36px 36px;
    max-width: 600px;
  }
}

@media (max-width: 640px) {
  .wizard-card {
    padding: 28px 22px 28px;
    border-radius: 16px;
  }
  .wizard-header h2 {
    font-size: 27px;
  }
  .option-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .option-card {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .wizard-container {
    padding: 36px 14px 70px;
  }
  .wizard-card {
    padding: 24px 16px;
  }
  .option-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .option-card {
    height: 130px;
  }
  .option-card h5 {
    font-size: 13px;
  }
  .option-card p {
    display: none;
  }
  .wizard-nav-row .booking-primary-btn {
    padding: 0 24px !important;
  }
}

/* ==========================================
 * PHOTO GALLERY LIGHTBOX STYLES
 * ========================================== */

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(8, 12, 21, 0.96);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.is-active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 44px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  line-height: 1;
  z-index: 3010;
}

.lightbox-close:hover {
  color: #fff;
  transform: scale(1.05);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 40px;
  cursor: pointer;
  padding: 20px 24px;
  user-select: none;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 4px;
  z-index: 3010;
}

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

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.lightbox-content {
  max-width: 80%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: lightboxScale 0.3s cubic-bezier(0.1, 0.8, 0.3, 1);
}

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

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border: 4px solid #fff;
  border-radius: 2px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 15px;
  color: #f1f5f9;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

@media (max-width: 767px) {
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 36px;
  }
  .lightbox-prev,
  .lightbox-next {
    padding: 10px 15px;
    font-size: 28px;
  }
  .lightbox-prev { left: 5px; }
  .lightbox-next { right: 5px; }
  .lightbox-content {
    max-width: 90%;
  }
}

/* ==========================================
 * ADMIN DASHBOARD PANEL STYLES
 * ========================================== */

.admin-body {
  background: #f1f5f9;
  color: var(--text-dark);
  font-family: "Inter", "Urbanist", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.admin-layout-wrapper {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: #1d2327;
  color: #fff;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.admin-sidebar-brand {
  padding: 20px;
  background: #111518;
}

.admin-sidebar-brand h1 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.admin-main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.admin-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #fff;
  padding: 15px 30px;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-user-info {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.admin-logout-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--dark-slate);
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  text-decoration: none;
}

.admin-logout-btn:hover {
  background: #f8fafc;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.admin-container {
  max-width: 1400px;
  margin: 35px 35px;
  padding: 0;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 35px;
}

.admin-stat-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.admin-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border-color: rgba(0, 87, 159, 0.1);
}

.admin-stat-card i {
  font-size: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.admin-stat-card.stat-bookings i {
  background: rgba(0, 87, 159, 0.08);
  color: var(--primary-blue);
}

.admin-stat-card.stat-plans i {
  background: rgba(249, 168, 38, 0.08);
  color: var(--accent-gold);
}

.admin-stat-card.stat-general i {
  background: rgba(34, 197, 94, 0.08);
  color: var(--success-green);
}

.admin-stat-info {
  display: flex;
  flex-direction: column;
}

.admin-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark-slate);
  line-height: 1.1;
  margin-bottom: 4px;
}

.admin-stat-lbl {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.admin-controls-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.admin-search-label {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.admin-table-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.admin-table-responsive {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.admin-table th {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 16px 24px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
}

.admin-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #f1f5f9;
  color: var(--text-dark);
  vertical-align: middle;
  line-height: 1.5;
  transition: background 0.2s ease;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table tr:hover td {
  background: #fafcff;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.badge.badge-booking {
  background: rgba(0, 87, 159, 0.1);
  color: var(--primary-blue);
}

.badge.badge-plan {
  background: rgba(249, 168, 38, 0.12);
  color: #c27d00;
}

.badge.badge-general {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success-green);
}

.cell-details-wrap {
  max-width: 380px;
  font-size: 13px;
  color: var(--text-muted);
}

.cell-details-wrap strong {
  color: var(--text-dark);
}

.admin-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.admin-empty-state i {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Admin login card styling */
.admin-login-layout {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 20px;
}

.admin-login-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 45px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  animation: builderIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.admin-login-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  color: var(--dark-slate);
  margin: 0 0 10px;
  text-align: center;
}

.admin-login-card p {
  text-align: center;
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0 0 30px;
}

.admin-login-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--error-red);
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 991px) {
  .admin-container {
    padding: 0 20px;
  }
  .admin-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .admin-header {
    padding: 18px 20px;
  }
}

/* ==========================================================================
   NEW STYLES: GEAR LIST, FAQ ACCORDION, GALLERY, RELATED TRIPS
   ========================================================================== */

/* =============================================
   PREMIUM GEAR & PACKING LIST SECTION
   ============================================= */

/* Section Wrapper */
.gear-section-wrap {
  position: relative;
}

/* Gear container */
.gear-list-container {
  padding: 10px 0 0;
}



/* Gear Cards Grid */
.gear-grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gear-card[data-category="clothing"] {
  grid-column: 1 / -1;
  max-width: 550px;
  margin: 0;
  width: 100%;
}


/* Individual Gear Card */
.gear-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.3, 1),
              border-color 0.3s ease;
  position: relative;
}

.gear-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 14px 14px 0 0;
  transition: height 0.3s ease;
}

/* Category color stripes */
.gear-card[data-category="clothing"]::before {
  background: linear-gradient(90deg, #00579f, #3f72af);
}

.gear-card[data-category="footwear"]::before {
  background: linear-gradient(90deg, #0891b2, #06b6d4);
}

.gear-card[data-category="equipment"]::before {
  background: linear-gradient(90deg, #d97706, #f59e0b);
}

.gear-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 87, 159, 0.15);
}

.gear-card:hover::before {
  height: 5px;
}

/* Card Header */
.gear-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--border-color);
  background: var(--light-bg);
}

.gear-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.gear-card:hover .gear-card-icon {
  transform: scale(1.1) rotate(-3deg);
}

/* Category icon colors */
.gear-card[data-category="clothing"] .gear-card-icon {
  background: rgba(0, 87, 159, 0.08);
  color: var(--primary-blue);
}

.gear-card[data-category="footwear"] .gear-card-icon {
  background: rgba(8, 145, 178, 0.08);
  color: #0891b2;
}

.gear-card[data-category="equipment"] .gear-card-icon {
  background: rgba(217, 119, 6, 0.08);
  color: #d97706;
}

.gear-card-icon i {
  font-size: 18px;
}

.gear-card-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gear-card-title h3 {
  font-size: 18.5px;
  font-weight: 800;
  color: var(--dark-slate);
  margin: 0;
  border: none;
  padding: 0;
  line-height: 1.3;
}

.gear-item-count {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Checklist Items */
.gear-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gear-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 22px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.45;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  cursor: default;
  transition: background 0.2s ease, padding-left 0.25s ease;
}

.gear-checklist li:last-child {
  border-bottom: none;
}

.gear-checklist li:hover {
  background: rgba(0, 87, 159, 0.02);
  padding-left: 26px;
}

.gear-check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.gear-check-icon i {
  font-size: 15px;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Category check colors */
.gear-card[data-category="clothing"] .gear-check-icon i {
  color: rgba(0, 87, 159, 0.35);
}

.gear-card[data-category="footwear"] .gear-check-icon i {
  color: rgba(8, 145, 178, 0.35);
}

.gear-card[data-category="equipment"] .gear-check-icon i {
  color: rgba(217, 119, 6, 0.35);
}

.gear-checklist li:hover .gear-check-icon i {
  transform: scale(1.2);
}

.gear-card[data-category="clothing"] .gear-checklist li:hover .gear-check-icon i {
  color: var(--primary-blue);
}

.gear-card[data-category="footwear"] .gear-checklist li:hover .gear-check-icon i {
  color: #0891b2;
}

.gear-card[data-category="equipment"] .gear-checklist li:hover .gear-check-icon i {
  color: #d97706;
}

/* Pro Tip Callout */
.gear-pro-tip {
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(249, 168, 38, 0.06) 0%, rgba(245, 158, 11, 0.03) 100%);
  border: 1px solid rgba(249, 168, 38, 0.18);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.gear-pro-tip-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.gear-pro-tip-badge i {
  font-size: 12px;
}

.gear-pro-tip p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #78590a;
  font-weight: 500;
  padding-top: 2px;
}

/* Responsive: Gear Grid */
@media (max-width: 640px) {
  .gear-grid-box {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gear-pro-tip {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}



.trip-section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-slate);
  margin: 0 0 25px;
  position: relative;
  padding-bottom: 12px;
}

.trip-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-gold);
}

.faq-accordion {
  display: grid;
  gap: 15px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: var(--secondary-blue);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #fff;
  user-select: none;
}

.faq-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-slate);
  margin: 0;
  padding-right: 15px;
}

.faq-toggle {
  color: var(--secondary-blue);
  font-size: 13px;
  transition: transform 0.2s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 24px;
  background: var(--light-bg);
  border-top: 1px solid transparent;
}

.faq-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  padding-bottom: 20px;
}

.faq-item.open {
  border-color: var(--secondary-blue);
}

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

.faq-item.open .faq-content {
  max-height: 500px;
  padding: 20px 24px;
  border-top-color: var(--border-color);
}

/* Visual Gallery Section */
.trip-gallery-section {
  background: #f8fafc;
  padding: 70px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-title-premium {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--dark-slate);
  text-align: center;
  margin: 0 0 45px;
  position: relative;
  padding-bottom: 15px;
}

.section-title-premium::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-photo-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 280px;
  background: #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

/* Related Trips Section */
.related-trips-section {
  padding: 90px 0;
  background: linear-gradient(175deg, #0a1628 0%, #132241 100%);
  position: relative;
  overflow: hidden;
}

.related-trips-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(209, 160, 84, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.related-trips-section .section-title-premium {
  color: #fff;
}

.related-trips-section .section-title-premium::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  margin: -10px 0 45px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.related-trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.related-trip-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.related-trip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(209, 160, 84, 0.08);
  border-color: rgba(209, 160, 84, 0.25);
}

.related-card-image {
  height: 240px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.related-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 50%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.related-trip-card:hover .related-card-overlay {
  opacity: 0.6;
}

.related-trip-card:hover .related-card-image {
  background-size: 110%;
}

.related-card-image {
  transition: background-size 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.related-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-gold);
  color: #1a1a1a;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 20px;
  z-index: 2;
}

.related-card-image-meta {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 2;
}

.related-card-image-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

.related-card-image-meta span i {
  color: var(--accent-gold);
  font-size: 11px;
}

.related-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.related-trip-card:hover .related-card-body h3 {
  color: var(--accent-gold);
}

.related-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  margin-bottom: 20px;
  margin-top: auto;
}

.related-card-meta span {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 7px;
}

.related-card-meta span i {
  color: var(--accent-gold);
}

.related-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.related-price strong {
  font-size: 18px;
  color: #fff;
  font-weight: 800;
}

.related-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.related-card-cta i {
  transition: transform 0.3s ease;
}

.related-trip-card:hover .related-card-cta {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #1a1a1a;
}

.related-trip-card:hover .related-card-cta i {
  transform: translateX(4px);
}

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

@media (max-width: 768px) {
  .related-trips-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .gallery-photo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-photo-item {
    height: 240px;
  }

  /* Premium Mobile Hero View Redesign */
  .trip-hero {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 16px 16px 0;
    color: var(--text-dark);
  }

  .trip-hero::before {
    display: none; /* Hide dark backdrop gradient overlay */
  }

  .hero-slides-wrap {
    position: relative;
    height: 250px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    order: 1; /* Slide banner goes first */
  }

  .hero-slide {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    position: absolute;
    inset: 0;
  }

  .hero-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 15px 0 20px;
    order: 2; /* Indicators go second (directly under slides) */
  }

  .hero-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-indicator-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: var(--primary-blue);
  }

  .trip-hero-content {
    position: relative;
    padding: 0 8px 24px;
    width: 100%;
    color: var(--text-dark);
    order: 3; /* Title, stats go third */
  }

  .trip-hero-content h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-slate);
    margin: 12px 0 18px;
    line-height: 1.35;
    text-shadow: none; /* Remove text shadow on light background */
  }

  .trip-category-badge {
    background: rgba(0, 87, 159, 0.07);
    color: var(--primary-blue);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 0;
  }

  .trip-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px;
    background: var(--light-bg);
    margin-top: 15px;
    border-top: 1px solid var(--border-color);
  }

  .trip-stat-item {
    border-right: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .trip-stat-item i {
    color: var(--primary-blue);
    font-size: 18px;
  }

  .trip-stat-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .trip-stat-label {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .trip-stat-value {
    color: var(--dark-slate);
    font-size: 14.5px;
    font-weight: 800;
  }

  /* Increase box width full for Cost Details section and Gear & Packing List on mobile */
  .cost-section,
  .gear-section-wrap {
    padding: 25px 0 10px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .cost-single-box {
    padding: 20px 16px;
    gap: 25px;
  }

  .gear-card-header {
    padding: 16px 16px 14px;
  }

  .gear-card[data-category="clothing"] {
    max-width: none;
  }

  .gear-checklist li {
    padding: 12px 16px;
  }
  
  .gear-pro-tip {
    margin-top: 20px;
    padding: 16px;
  }

  /* Mobile optimization for Itinerary Section */
  .itinerary-section {
    padding: 25px 0 10px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .itinerary-timeline {
    padding-left: 0;
    margin-left: 0;
  }

  .itinerary-timeline::before {
    display: none;
  }

  .itinerary-day-item {
    margin-bottom: 16px;
  }

  .itinerary-day-dot {
    display: none;
  }

  .itinerary-day-header {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .itinerary-day-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    flex: 1;
  }

  .itinerary-day-num {
    font-size: 11px;
    padding: 3px 8px;
    background: rgba(0, 87, 159, 0.07);
    color: var(--primary-blue);
    border-radius: 4px;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
  }

  .itinerary-day-header h4 {
    font-size: 17.5px;
    line-height: 1.4;
  }

  .itinerary-day-content {
    padding: 0 16px 16px;
  }

  /* Mobile optimization for FAQ Section */
  .faq-section {
    padding: 25px 0 10px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .faq-header {
    padding: 16px;
  }

  .faq-header h4 {
    font-size: 16.5px;
    line-height: 1.4;
  }

  .faq-item.open .faq-content {
    padding: 16px;
  }

  /* Mobile Sticky CTA Bar overrides */
  body {
    padding-bottom: 74px; /* Prevent footer overlap */
  }

  .mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 74px;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    z-index: 990;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d54a6 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 87, 159, 0.2);
    transition: all 0.2s ease;
  }

  /* Mobile optimization for Trip Highlights Section */
  .trip-highlights-box {
    padding: 20px 16px;
    margin-bottom: 30px;
    border-radius: 12px;
  }

  .trip-highlights-list li {
    padding-left: 28px;
  }

  .trip-highlights-list li i {
    font-size: 16px;
    top: 3.5px;
  }

  /* Universal Mobile Body Text Scale */
  .trip-overview p,
  .itinerary-day-content p,
  .faq-content p,
  .gear-pro-tip p,
  .trip-highlights-list li {
    font-size: 16px;
    line-height: 1.6;
  }

  .itinerary-day-content p {
    margin: 12px 0 0;
  }
}

/* Mobile Sticky CTA Bar Hide on Desktop */
@media (min-width: 769px) {
  .mobile-sticky-cta {
    display: none;
  }
}



