/* =========================
   Global Styles
========================= */

/* Import Google Font */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --primary-color: #0abde3;       /* Cyan-Blue */
  --primary-dark: #048cb3;        /* Darker Cyan-Blue */
  --secondary-color: #f1faff;     /* Light background */
  --text-color: #333;
  --light-text: #666;
  --bg-dark: #111827;
  --white: #fff;
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 4px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 25px rgba(0,0,0,0.12);
  --gap-sm: 10px;
  --gap-md: 16px;
  --gap-lg: 24px;
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--secondary-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* =========================
   Layout
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 50px 0;
}

h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--bg-dark);
  padding-bottom: 20px;
}

p {
  color: var(--light-text);
  font-size: 15px;
}

/* =========================
   Navbar
========================= */

header {
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1200;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.navbar a {
  text-decoration: none;
  margin-left: 20px;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
}

.navbar a:hover,
.navbar a.active {
  color: var(--primary-color);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
}
.logo-img { height: 48px; width: auto; display: block; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.18)); }
@media (max-width: 900px) { .logo-img { height: 42px; } }
@media (max-width: 480px) { .logo-img { height: 38px; } }

.navbar .logo { display: flex; align-items: center; gap: 10px; }
.brand-text { font-family: "Inter", sans-serif; font-weight: 800; font-size: 24px; letter-spacing: 0.4px; text-transform: uppercase; background: linear-gradient(180deg, #8016b4, #db339b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; -webkit-text-stroke: 0.4px rgba(0,0,0,0.15); }
@media (max-width: 900px) { .brand-text { font-size: 22px; } }
@media (max-width: 480px) { .brand-text { font-size: 20px; } }
.navbar .nav-links a { margin-left: 24px; }

/* Mobile Navbar */
.hamburger { display: none; background: transparent; border: none; cursor: pointer; }
.hamburger span { display: block; width: 21px; height: 2px; background: #333; margin: 4px 0; border-radius: 2px; transition: var(--transition); }
.nav-links { display: flex; align-items: center; }
.nav-links a { margin-left: 20px; }
@media (max-width: 900px) {
  .hamburger { display: block; }
  .navbar { position: relative; }
  .nav-links { position: absolute; top: 64px; right: 0; left: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 12px 24px; border-bottom: 1px solid #eee; display: none; }
  .nav-links.show { display: flex; }
  .nav-links a { margin: 10px 0; }
}

/* =========================
   Hero Banner
========================= */

.hero { display: none; }

/* Home hero (only on index) */
.home-hero { height: 72vh; position: relative; color: #fff; border-bottom-left-radius: var(--border-radius); border-bottom-right-radius: var(--border-radius); overflow: hidden; display: block; }
.home-hero .hero-overlay { position: relative; z-index: 2; height: 100%; display: flex; align-items: flex-start; text-align: left; }
.home-hero .hero-overlay .container { display: flex; justify-content: flex-start; padding-top: 12vh; }
.home-hero h1 { font-size: 44px; margin-bottom: 12px; }
.home-hero p { font-size: 18px; margin-bottom: 20px; }
.hero-box { display: inline-block; padding: 0; border-radius: 0; backdrop-filter: none; border: none; max-width: 680px; text-align: left;     display: inline-block;
 
  background: #0000002e !important;
  /* backdrop-filter: blur(11px); */
  padding: 20px;
  border-radius: 20px; }
.theme-1 .hero-box { background: none; box-shadow: none; }
.theme-2 .hero-box { background: none; box-shadow: none; }
.theme-3 .hero-box { background: none; box-shadow: none; }
.hero-kicker { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; color: #eaf9ff; margin-bottom: 6px; opacity: .95; }
.home-hero h1#heroTitle { text-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.home-hero p#heroSubtitle { text-shadow: 0 2px 6px rgba(0,0,0,0.2); }

/* Per-slide text color themes */
.theme-1 #heroTitle { color: #ffffff; }
.theme-1 #heroSubtitle { color: #eaf9ff; }
.theme-2 #heroTitle { color: #ffffff; }
.theme-2 #heroSubtitle { color: #ffffff; }
.theme-3 #heroTitle { color: #ffffff; }
.theme-3 #heroSubtitle { color: #d8eef5; }
.hero-animated { animation: floatIn .8s ease both; }
.hero-animated + .hero-animated { animation-delay: .12s; }
@keyframes floatIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Responsive: center content on small screens */
@media (max-width: 768px) {
  .home-hero .hero-overlay { text-align: center; }
  .home-hero .hero-overlay .container { justify-content: center; padding-top: 8vh; }
  .hero-box { text-align: center; }
}

/* Simple page titles instead of big banners */
.page-title { background: #ecf6fb; padding: 36px 0; border-bottom: 1px solid #d6ecf6; }
.page-title h1 { color: #066a87; font-size: 28px; }

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

.hero-slider-track {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.68);
  opacity: 0;
  transition: opacity 800ms ease;
}
.hero-slide.active { opacity: 1; }

/* Ken Burns variations */
.kb-zoom-1 { animation: kb1 12s ease-in-out infinite; }
.kb-zoom-2 { animation: kb2 12s ease-in-out infinite; }
.kb-zoom-3 { animation: kb3 12s ease-in-out infinite; }
@keyframes kb1 { 0%{transform: scale(1) translate(0,0);} 100%{transform: scale(1.06) translate(-6px, -4px);} }
@keyframes kb2 { 0%{transform: scale(1) translate(0,0);} 100%{transform: scale(1.06) translate(6px, -4px);} }
@keyframes kb3 { 0%{transform: scale(1) translate(0,0);} 100%{transform: scale(1.06) translate(0, 6px);} }

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(4px);
  font-size: 26px;
}
.hero-nav:hover { background: rgba(255,255,255,0.3); }
.hero-nav.prev { left: 16px; }
.hero-nav.next { right: 16px; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
.hero-dots button.active { background: #fff; }

.hero h1 {
  font-size: 48px;
padding-bottom:10px;
margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}
.cta_btn {
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
/* =========================
   WhatsApp CTA
========================= */

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: var(--white);
  padding: 16px 32px; /* Larger button */
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px; /* Larger text */
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}

/* =========================
  Pay-u-money CTA
========================= */

.payu_btn {
  display: inline-block;
  background: #2196F3;
  color: var(--white);
  padding: 16px 32px; /* Larger button */
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px; /* Larger text */
  text-decoration: none;
  transition: var(--transition);
}

.payu_btn:hover {
  background: #3f51b5;
  transform: translateY(-2px);
}

/* =========================
   Generic Cards
========================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
}

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

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
  padding-bottom:10px;
}

.card-body p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* =========================
   Package Cards (Grids)
========================= */

.package-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color .3s ease;
  position: relative;
  border: 1px solid #eaf4f9;
  animation: fadeUp .6s ease both;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #d6ecf6;
}
.package-card:nth-child(1) { animation-delay: .05s; }
.package-card:nth-child(2) { animation-delay: .12s; }
.package-card:nth-child(3) { animation-delay: .19s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tag { font-size: 12px; background: #eef9fd; color: #066a87; border: 1px solid #d8f0f8; padding: 4px 10px; border-radius: 999px; }


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

.package-card .card-body {
  padding: 20px;
}

.package-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.package-card ul.package-info {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.package-card ul.package-info li {
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text-color);
}

.package-card .discount-badge {
  position: absolute;
  top: 15px;
  right: -5px;
  background: #ff4d4f;
  color: var(--white);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 10;
  transform: rotate(10deg);
}

.package-card .discount-text {
  color: #28a745;
  font-weight: 600;
}

.package-meta { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; margin: 10px 0; }
.meta-item { background: #f6fbfe; border: 1px solid #e2f4fb; padding: 8px 10px; border-radius: 10px; font-size: 13px; color: #066a87; display: flex; align-items: center; gap: 8px; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 8px; }
.price { font-weight: 700; color: #111827; }
.early-bird { background: #e8fff1; color: #15803d; padding: 4px 10px; border-radius: 999px; font-size: 12px; border: 1px solid #bbf7d0; }

.package-card .form-btn {
  display: inline-block;
  padding: 14px 25px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.package-card .form-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Featured package card layout */
.pkg-row { display: inline-block; gap: 12px; flex-wrap: wrap; margin: 8px 0; align-items: center; }
.pkg-row .meta { background: #f6fbfe; border: 1px solid #e2f4fb; padding: 6px 10px; border-radius: 10px; font-size: 13px; color: #066a87; }
.pkg-dates { font-weight: 500; color: #0b4a5a; }
.pkg-highlights { list-style: disc; margin: 8px 0 0 18px; color: #555; }
.pkg-highlights li { margin: 2px 0; font-size: 14px; }
.inc-icons { display: flex; gap: 10px; margin: 10px 0; }
.inc-icons .icon-only { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; background: #ecf6fb; border: 1px solid #d6ecf6; font-size: 18px; }
.price-wrap { display: flex; align-items: baseline; justify-content: space-between; margin-top: 10px; }
.price-main { font-size: 22px; font-weight: 800; color: #0a2e36; }
.price-old { color: #9aa6af; text-decoration: line-through; margin-right: 10px; font-weight: 600; }
.badge-early { display: none; }
.btn-right { display: flex; justify-content: flex-start; padding:10px 0}
.btn-right .form-btn { padding: 9px 16px; font-size: 14px; }

/* Subtle gradient header on cards */
.package-card img { position: relative; }
.package-card:before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 80px; background: linear-gradient(180deg, rgba(10,189,227,0.15), rgba(10,189,227,0)); pointer-events: none; }

/* =========================
   Package Detail Layout (Tabs + Summary)
========================= */

.package-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
  align-items: start;
}

.summary-card {
  position: sticky;
  top: 90px;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  z-index: 3;
}
.summary-card h3 { margin-bottom: 10px; color: var(--primary-dark); }
.summary-card p { margin-bottom: 8px; }

.tabs { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.tab {
  background: #ecf6fb;
  border: 1px solid #d6ecf6;
  color: #066a87;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}
.tab.active { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

.tab-panels { background: var(--white); border-radius: var(--border-radius); box-shadow: 0 4px 10px rgba(0,0,0,0.06); }
.tab-panel { display: none; padding: 14px; }
.tab-panel.active { display: block; }

.package-content { position: relative; z-index: 1; min-width: 0; padding-bottom: 80px; }

@media (max-width: 992px) {
  .package-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
}

/* =========================
   Departure Dates Table
========================= */

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin: 0 auto;
  text-align: left;
}

th, td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

th {
  background: var(--primary-color);
  color: var(--white);
}

tr:hover {
  background: #f8f9fa;
}

.table-centered { text-align: center; }
.table-centered th, .table-centered td { text-align: center; }

/* =========================
   Enhanced Departure Table
========================= */

.departure-table-enhanced {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 1px solid #e8f4fd;
  margin: 20px 0 40px 0;
}

.departure-table-enhanced table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  box-shadow: none;
}

.departure-table-enhanced th {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  position: relative;
}

.departure-table-enhanced th:first-child {
  border-top-left-radius: 16px;
}

.departure-table-enhanced th:last-child {
  border-top-right-radius: 16px;
}

.departure-table-enhanced td {
  padding: 18px 15px;
  text-align: center;
  border-bottom: 1px solid #f0f8ff;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.departure-table-enhanced tr:hover {
  background: linear-gradient(135deg, #f8fcff, #f0f8ff);
  transform: scale(1.01);
}

.departure-table-enhanced tr:last-child td {
  border-bottom: none;
}

.departure-table-enhanced tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}

.departure-table-enhanced tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

/* Tour Name Styling */
.departure-table-enhanced .package-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(10, 189, 227, 0.1);
  border: 1px solid rgba(10, 189, 227, 0.2);
  transition: all 0.3s ease;
  display: inline-block;
}

.departure-table-enhanced .package-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 189, 227, 0.3);
}

/* Date Styling */
.departure-table-enhanced .date-cell {
  font-weight: 600;
  color: var(--bg-dark);
}

/* Duration Styling */
.departure-table-enhanced .duration-cell {
  background: rgba(10, 189, 227, 0.1);
  color: var(--primary-dark);
  font-weight: 600;
  border-radius: 6px;
  padding: 6px 10px;
  display: inline-block;
}

/* Price Styling */
.departure-table-enhanced .original-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}

.departure-table-enhanced .discounted-price {
  color: #059669;
  font-weight: 700;
  font-size: 16px;
}

/* Seats Styling */
.departure-table-enhanced .seats-cell {
  background: rgba(245, 101, 101, 0.1);
  color: #dc2626;
  font-weight: 600;
  border-radius: 6px;
  padding: 6px 10px;
  display: inline-block;
}

.departure-table-enhanced .seats-cell.low-seats {
  background: rgba(239, 68, 68, 0.15);
  color: #dc2626;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .departure-table-enhanced {
    margin: 15px 0 30px 0;
  }
  
  .departure-table-enhanced th,
  .departure-table-enhanced td {
    padding: 12px 8px;
    font-size: 14px;
  }
  
  .departure-table-enhanced .package-link {
    padding: 6px 8px;
    font-size: 13px;
  }
  
  .departure-table-enhanced .discounted-price {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .departure-table-enhanced th,
  .departure-table-enhanced td {
    padding: 10px 6px;
    font-size: 13px;
  }
  
  .departure-table-enhanced .package-link {
    padding: 4px 6px;
    font-size: 12px;
  }
}
.package-page {
    
}
/* =========================
   Accommodation Cards
========================= */

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 20px 0 40px 0;
}

.accommodation-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e8f4fd;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.accommodation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.accommodation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.accommodation-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.accommodation-icon {
  background: linear-gradient(135deg, #bbdceb 0%, #03a9f4 100%);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(240, 147, 251, 0.3);
}

.accommodation-city {
  font-size: 18px;
  font-weight: 700;
  color: var(--bg-dark);
  margin: 0;
}

.accommodation-hotel {
  font-size: 16px;
  color: var(--light-text);
  margin: 0;
  line-height: 1.4;
}

.accommodation-hotel strong {
  color: var(--primary-color);
  font-weight: 600;
}

.accommodation-features {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.accommodation-feature {
  background: #f0f8ff;
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e1f0ff;
}

@media (max-width: 768px) {
  .accommodation-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .accommodation-card {
    padding: 20px;
  }
  
  .accommodation-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .accommodation-city {
    font-size: 16px;
  }
  
  .accommodation-hotel {
    font-size: 14px;
  }
}

/* =========================
   About Us / Team Section
========================= */

.team {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.team-member {
  background: var(--white);
  border-radius: var(--border-radius);
  text-align: center;
  padding: 20px;
  max-width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* =========================
   Contact Form & Offices
========================= */

.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1 1 55%;
}

.contact-offices {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.office-card h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

form {
  
  padding: 0;
  border-radius: var(--border-radius);
  
}

form input, form textarea, form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  border: 1px solid #ccc;
  outline: none;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

form input:focus, form textarea:focus, form select:focus {
  border-color: var(--primary-color);
}

form button, .form-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 14px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

form button:hover {
  background: var(--primary-dark);
}

/* =========================
   Package Detail - Sections & Enquiry
========================= */

.section-title-sm { font-size: 18px; color: #066a87; margin-bottom: 10px; }
.icon-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; }
.icon-list li { background: #fff; border: 1px solid #eef6fa; padding: 12px 14px; border-radius: 12px; display: flex; gap: 10px; align-items: center; }
.icon { font-size: 18px; min-width: 20px; }

/* Why Choose Us grid */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.why-card { background: #fff; border-radius: 14px; padding: 18px; border: 1px solid #eaf4f9; box-shadow: var(--shadow-sm); transition: var(--transition); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon { font-size: 22px; color: #066a87; }
/* Force 4 columns on wide screens and center the section title */
.section-title.center { text-align: center; }
@media (min-width: 1100px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Testimonials carousel */
.testimonials { position: relative; overflow: hidden; }
.t-track { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; transition: transform .6s ease; }
.t-card { background: #fff; border: 1px solid #eef3f7; border-radius: 14px; padding: 20px; box-shadow: var(--shadow-sm); }
.t-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.05); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; }
.t-prev { left: 6px; }
.t-next { right: 6px; }

/* Testimonials grid (home) */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.testimonial { position: relative; padding: 20px; border-radius: 16px; background: linear-gradient(180deg,#ffffff,#f7fbfe); border: 1px solid #e9f2f7; box-shadow: var(--shadow-sm); transition: var(--transition); }
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-quote { position: absolute; top: -8px; left: 14px; font-size: 60px; color: rgba(10,189,227,0.12); font-weight: 700; pointer-events: none; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: #0abde3; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.t-footer { margin-top: 12px; display: flex; align-items: center; gap: 10px; }
.stars { color: #ffb703; font-size: 14px; letter-spacing: 1px; }
.enquiry-card { background: #fff; border: 1px solid #e6eef5; padding: 20px; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.enquiry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }

/* Itinerary timeline */
.itinerary-steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.itinerary-steps li { position: relative; padding: 12px 12px 12px 42px; border: 1px solid #eef6fa; border-radius: 10px; background: #fff; margin-bottom: 10px; }
.itinerary-steps li:before { counter-increment: step; content: counter(step); position: absolute; left: 12px; top: 12px; width: 24px; height: 24px; border-radius: 50%; background: var(--primary-color); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* Compact package detail helpers */
/* Compact package detail helpers */
.pkg-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: bottom; /* default center */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
/* Page-specific banner adjustments */
body.page-timeless .pkg-hero-img { object-position: bottom; }
body.page-winter .pkg-hero-img { object-position: bottom; }


.pkg-hero { 
  position: relative; 
  padding-bottom: 40px; 
}

.pkg-overlay-transparent {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px; /* sit on the banner, not below */
  background: rgba(255, 255, 255, 0.38); /* lower opacity for transparent feel */
  backdrop-filter: blur(12px);
  border: 0; /* zero lines */
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  padding: 0;
  width: 980px; /* wider to fit 5 columns */
  height: 100px; /* taller for 2 rows */
  z-index: 10;
  overflow: hidden;
}

.tour-details-transparent { display: flex; gap: 1rem; padding: 1rem; height: 100%; }
.tour-details-transparent.kv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto; /* 2 rows: labels then values */
  align-items: baseline;
  gap: 6px 12px;
  width: 100%;
}
.tour-details-transparent.kv-grid .k {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1f2937;
  text-align: center;
}
.tour-details-transparent.kv-grid .v {
  font-size: 14px;
  font-weight: 800;
  color: #0a2e36;
  text-align: center;
}
.v.discounted { color: #059669; }
.v.strikethrough { text-decoration: line-through; color: #9ca3af; font-weight: 700; }

/* remove old item boxes in transparent overlay; now simple grid without borders */
.detail-item-transparent, .detail-label-transparent, .detail-value-transparent { display: none; }

@media (max-width: 900px) { 
  .pkg-hero-img { 
    height: 360px; 
  } 
  
  .pkg-overlay-transparent { width: 560px; height: 92px; bottom: 14px; }
  
  .tour-details-transparent { padding: 0.8rem; gap: 0.8rem; }
  
  .detail-item-transparent {
    padding: 0.3rem 0.5rem;
  }
}

@media (max-width: 768px) {
  .pkg-hero-img { 
    height: 300px; 
  }
  
  .pkg-overlay-transparent { width: 420px; height: 120px; bottom: 12px; }
  .tour-details-transparent.kv-grid { gap: 6px 8px; }
  .tour-details-transparent.kv-grid .k { font-size: 12px; }
  .tour-details-transparent.kv-grid .v { font-size: 13px; }
  
  .tour-details-transparent {
    padding: 0.6rem;
    gap: 0.6rem;
  }
  
  .detail-item-transparent {
    padding: 0.25rem 0.4rem;
  }
  
  .detail-label-transparent {
    font-size: 0.65rem;
  }
  
  .detail-value-transparent {
    font-size: 0.75rem;
  }
  
  .detail-value-transparent.discounted {
    font-size: 0.75rem;
  }
  
  .detail-value-transparent.strikethrough {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .pkg-overlay-transparent { width: 92%; height: 88px; bottom: 10px; left: 50%; transform: translateX(-50%); }
  .tour-details-transparent { gap: 0.5rem; padding: 0.6rem; }
  .tour-details-transparent.kv-grid { gap: 6px 6px; grid-template-columns: repeat(4, 1fr); }
  .tour-details-transparent.kv-grid .k { font-size: 11px; }
  .tour-details-transparent.kv-grid .v { font-size: 12px; }
}
.pkg-banner { display:flex; align-items:center; justify-content:center; gap:22px; flex-wrap:wrap; background: linear-gradient(90deg, #0abde3, #048cb3); color:#fff; border-radius:12px; padding:12px 16px; box-shadow: 0 6px 18px rgba(0,0,0,0.08); margin-bottom:10px; }
.pkg-banner .item { display:flex; align-items:center; gap:8px; font-size:14px; font-weight:600; }
.pkg-banner .value { font-size:18px; font-weight:800; }
.pkg-banner .price { display:flex; align-items:center; gap:8px; }
.pkg-banner .old-price { text-decoration: line-through; opacity:.9; }
.pkg-banner .price-badge { background: rgba(255,255,255,0.16); border:1px solid rgba(255,255,255,0.35); padding:6px 12px; border-radius:999px; font-weight:800; }
@media (max-width: 640px){ .pkg-banner { gap:12px; padding:10px 12px; } .pkg-banner .value{ font-size:16px; } }
.pkg-strip { display:flex; align-items:center; gap:16px; flex-wrap:wrap; background:#f6fbfe; border:1px solid #eaf4f9; border-radius:10px; padding:10px 14px; margin-bottom:12px; }
.pkg-title { font-size: 28px; font-weight: 800; color: var(--bg-dark); margin-right: 6px; }
.pkg-meta { display:flex; gap:12px; flex-wrap:wrap; }
.pkg-chip { background:#eef9fd; border:1px solid #d8f0f8; color:#066a87; padding:6px 10px; border-radius:999px; font-size:13px; }
.pkg-price { display:flex; align-items:center; gap:8px; }
.pkg-price .price-main { font-size:18px; font-weight:800; color:#0a2e36; }
.pkg-price .price-old { color:#9aa6af; text-decoration:line-through; font-weight:600; }
.accom-inline { font-size: 13px; color: #0b4a5a; margin: 4px 0 3em; text-align: center; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 10px; margin-bottom: 10px; }
.info-grid .summary-card { padding: 10px; box-shadow: none; border: 1px solid #eaf4f9; }
.info-grid h3 { font-size: 16px; margin-bottom: 6px; }
.info-grid p, .info-grid li { font-size: 13px; line-height: 1.5; }
.content-two-col { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; align-items: start; }
@media (max-width: 900px) { .content-two-col { grid-template-columns: 1fr; } }

/* Floating Enquire button */
.floating-enquire { position: fixed; right: 18px; bottom: 18px; z-index: 1001; }
.floating-enquire .form-btn { box-shadow: var(--shadow-md); }

/* Scroll-in animations */
.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.reveal.show { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(16px); }

/* =========================
   Footer
========================= */

footer {
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
  padding: 30px 0;
  margin-top: 50px;
}

footer p {
  color: #ccc;
  font-size: 14px;
}

footer a {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .navbar {
    flex-direction: row;
  }
  .navbar a {
    margin: 0;
  }
  .contact-wrapper {
    flex-direction: column;
  }
}

/* =========================
     Highlights Section
  ========================= */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e8f4fd;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8016b4, #db339b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.highlight-card h3 {
  color: #0a2e36;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.highlight-card p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .highlight-card {
    padding: 1.5rem;
  }
  
  .highlight-icon {
    font-size: 2.5rem;
  }
  
  .highlight-card h3 {
    font-size: 1.2rem;
  }
}

/* =========================
     Autumn Highlights Grid
  ========================= */
.autumn-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.highlight-item {
  background: linear-gradient(135deg, #fff 0%, #f8fcff 100%);
  border: 1px solid #e8f4fd;
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.highlight-item:hover::before {
  transform: scaleX(1);
}

.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
  border-color: #ff6b35;
}

.highlight-item .highlight-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  margin-top: 0.2rem;
}

.highlight-content h4 {
  color: #0a2e36;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.highlight-content p {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .autumn-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .highlight-item {
    padding: 1rem;
    gap: 0.8rem;
  }
  
  .highlight-item .highlight-icon {
    font-size: 1.8rem;
  }
  
  .highlight-content h4 {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.85rem;
  }
}

/* =========================
     Compact Layout Styles
  ========================= */
.compact-highlights-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* exactly 7 per row on desktop */
  gap: 0.6rem;
  margin: 1.5rem 0 2rem 0;
}

.compact-highlight {
  background: linear-gradient(135deg, #fff 0%, #f8fcff 100%);
  border: 1px solid #e8f4fd;
  border-radius: 8px;
  padding: 0.8rem 0.6rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.compact-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.compact-highlight:hover::before {
  transform: scaleX(1);
}

.compact-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
}

.compact-icon {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  display: block;
}

.compact-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0a2e36;
  line-height: 1.2;
}

/* =========================
     Compact Hotel Grid
  ========================= */
.hotels-grid-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 1.5rem 0 2rem 0;
}

.hotel-card-compact {
  background: linear-gradient(135deg, #fff 0%, #f8fcff 100%);
  border: 1px solid #e8f4fd;
  border-radius: 8px;
  padding: 0.8rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hotel-card-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8016b4, #db339b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.hotel-card-compact:hover::before {
  transform: scaleX(1);
}

.hotel-card-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(128, 22, 180, 0.15);
  border-color: #8016b4;
}

.hotel-card-compact .hotel-icon {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  display: block;
}

.hotel-card-compact .hotel-info h4 {
  color: #0a2e36;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
}

.hotel-card-compact .hotel-info p {
  color: #4a5568;
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.2;
}

/* =========================
     Package Details Grid
  ========================= */
.package-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 1.5rem 0 2rem 0;
}

.details-card {
  background: linear-gradient(135deg, #fff 0%, #f8fcff 100%);
  border: 1px solid #e8f4fd;
  border-radius: 12px;
  padding: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.details-card.inclusions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #059669);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.details-card.exclusions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #dc2626);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.details-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.details-header {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.details-icon {
  font-size: 1.5rem;
}

.details-header h3 {
  color: #0a2e36;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.details-list li {
  color: #4a5568;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.details-list li:last-child {
  border-bottom: none;
}

/* =========================
     Enquiry Form Layout
  ========================= */
.enquiry-form-container {
  background: linear-gradient(135deg, #fff 0%, #f8fcff 100%);
  border: 1px solid #e8f4fd;
  border-radius: 12px;
  padding: 2rem;
  margin: 1.5rem 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: #0a2e36;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8016b4;
  box-shadow: 0 0 0 3px rgba(128, 22, 180, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.tabs-container {
  margin: 1.5rem 0 2rem 0;
}

.enquiry-section {
  margin: 1.5rem 0;
}

@media (max-width: 1400px) {
  .compact-highlights-grid { grid-template-columns: repeat(7, 1fr); }
}

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

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

@media (max-width: 768px) {
  .compact-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .compact-highlight {
    padding: 0.5rem 0.3rem;
  }
  
  .compact-icon {
    font-size: 1.1rem;
  }
  
  .compact-text {
    font-size: 0.65rem;
  }
  
  .hotels-grid-compact {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  
  .hotel-card-compact {
    padding: 0.6rem;
  }
  
  .package-details-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .enquiry-form-container {
    padding: 1.5rem;
  }
}

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

/* =========================
   Enhanced Team Cards
========================= */

.team-section {
  background: linear-gradient(135deg, #f8fcff 0%, #f0f8ff 100%);
  padding: 60px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 1px solid #e8f4fd;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  box-shadow: 0 8px 20px rgba(10, 189, 227, 0.3);
  transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(10, 189, 227, 0.4);
}

.team-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 8px;
}

.team-role {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-description {
  font-size: 15px;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-experience {
  background: rgba(10, 189, 227, 0.1);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.team-quote {
  font-style: italic;
  color: #666;
  font-size: 14px;
  border-left: 3px solid var(--primary-color);
  padding-left: 15px;
  margin-top: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.team-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.team-social a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 189, 227, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-section {
    padding: 40px 0;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  
  .team-card {
    padding: 25px;
  }
  
  .team-avatar {
    width: 100px;
    height: 100px;
  }
  
  .team-name {
    font-size: 22px;
  }
  
  .team-role {
    font-size: 15px;
  }
  
  .team-description {
    font-size: 14px;
  }
}

/* =========================
   About Page Banner
========================= */

.about-banner {
  background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 50%, #d6ecf6 100%);
  color: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="10" cy="60" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="90" cy="40" r="1" fill="rgba(10,189,227,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.6;
}

.about-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-banner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-banner .subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  font-weight: 500;
  line-height: 1.6;
  color: var(--bg-dark);
}

.about-banner .description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-text);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-stat {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 189, 227, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.1);
}

.about-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(10, 189, 227, 0.15);
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.about-stat-label {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
  color: var(--bg-dark);
}

.about-banner-cta {
  margin-top: 3rem;
}

.about-banner-cta .cta-button {
  display: inline-block;
  background: rgba(10, 189, 227, 0.1);
  color: var(--primary-color);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(10, 189, 227, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin: 0 10px;
}

.about-banner-cta .cta-button:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.3);
}

.about-banner-cta .cta-button.primary {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.about-banner-cta .cta-button.primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-banner {
    padding: 60px 0;
  }
  
  .about-banner h1 {
    font-size: 2.5rem;
  }
  
  .about-banner .subtitle {
    font-size: 1.2rem;
  }
  
  .about-banner .description {
    font-size: 1rem;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .about-stat {
    padding: 1.5rem;
  }
  
  .about-stat-number {
    font-size: 2rem;
  }
  
  .about-banner-cta .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    margin: 5px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .about-banner-cta .cta-button {
    display: block;
    margin: 10px auto;
    width: 200px;
  }
}

/* =========================
   Enhanced Story Section
========================= */

.story-section {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="story-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(10,189,227,0.03)"/><circle cx="80" cy="80" r="2" fill="rgba(10,189,227,0.03)"/><circle cx="50" cy="10" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="10" cy="60" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="90" cy="40" r="1" fill="rgba(10,189,227,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23story-pattern)"/></svg>');
  opacity: 0.5;
}

.story-content {
  position: relative;
  z-index: 2;
}

.story-header {
  text-align: center;
  margin-bottom: 60px;
}

.story-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 1rem;
  position: relative;
}

.story-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 2px;
}

.story-subtitle {
  font-size: 1.3rem;
  color: var(--light-text);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.story-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.story-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid #e8f4fd;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.story-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(10, 189, 227, 0.3);
  transition: all 0.3s ease;
}

.story-card:hover .story-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(10, 189, 227, 0.4);
}

.story-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 15px;
  text-align: center;
}

.story-card-content {
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.7;
  text-align: center;
}

.story-highlight {
  background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 100%);
  border-radius: 16px;
  padding: 40px;
  margin: 60px 0;
  border: 1px solid #d6ecf6;
  position: relative;
}

.story-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  border-radius: 16px 16px 0 0;
}

.story-highlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-highlight-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 20px;
}

.story-highlight-text p {
  font-size: 1.1rem;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-highlight-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.story-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #e8f4fd;
}

.story-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.story-feature-text {
  font-weight: 600;
  color: var(--bg-dark);
}

.story-highlight-image {
  text-align: center;
}

.story-highlight-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .story-section {
    padding: 60px 0;
  }
  
  .story-title {
    font-size: 2.5rem;
  }
  
  .story-subtitle {
    font-size: 1.1rem;
  }
  
  .story-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .story-card {
    padding: 30px;
  }
  
  .story-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .story-highlight {
    padding: 30px;
    margin: 40px 0;
  }
  
  .story-highlight-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .story-highlight-features {
    grid-template-columns: 1fr;
  }
  
  .story-highlight-text h3 {
    font-size: 1.5rem;
  }
}

/* =========================
   Contact Page Banner
========================= */

.contact-banner {
  background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 50%, #d6ecf6 100%);
  color: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="10" cy="60" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="90" cy="40" r="1" fill="rgba(10,189,227,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grain)"/></svg>');
  opacity: 0.6;
}

.contact-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-banner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-banner .subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  font-weight: 500;
  line-height: 1.6;
  color: var(--bg-dark);
}

.contact-banner .description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-text);
}

.contact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-stat {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 189, 227, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.1);
}

.contact-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(10, 189, 227, 0.15);
}

.contact-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.contact-stat-label {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
  color: var(--bg-dark);
}

.contact-banner-cta {
  margin-top: 3rem;
}

.contact-banner-cta .cta-button {
  display: inline-block;
  background: rgba(10, 189, 227, 0.1);
  color: var(--primary-color);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(10, 189, 227, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin: 0 10px;
}

.contact-banner-cta .cta-button:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.3);
}

.contact-banner-cta .cta-button.primary {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.contact-banner-cta .cta-button.primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.3);
}

/* =========================
   Departure Dates Banner
========================= */

.departure-banner {
  background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 50%, #d6ecf6 100%);
  color: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.departure-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="departure-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="10" cy="60" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="90" cy="40" r="1" fill="rgba(10,189,227,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23departure-grain)"/></svg>');
  opacity: 0.6;
}

.departure-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.departure-banner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.departure-banner .subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  font-weight: 500;
  line-height: 1.6;
  color: var(--bg-dark);
}

.departure-banner .description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-text);
}

.departure-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.departure-stat {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 189, 227, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.1);
}

.departure-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(10, 189, 227, 0.15);
}

.departure-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.departure-stat-label {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
  color: var(--bg-dark);
}

.departure-banner-cta {
  margin-top: 3rem;
}

.departure-banner-cta .cta-button {
  display: inline-block;
  background: rgba(10, 189, 227, 0.1);
  color: var(--primary-color);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(10, 189, 227, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin: 0 10px;
}

.departure-banner-cta .cta-button:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.3);
}

.departure-banner-cta .cta-button.primary {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.departure-banner-cta .cta-button.primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.3);
}

/* Responsive Design for Both Banners */
@media (max-width: 768px) {
  .contact-banner,
  .departure-banner {
    padding: 60px 0;
  }
  
  .contact-banner h1,
  .departure-banner h1 {
    font-size: 2.5rem;
  }
  
  .contact-banner .subtitle,
  .departure-banner .subtitle {
    font-size: 1.2rem;
  }
  
  .contact-banner .description,
  .departure-banner .description {
    font-size: 1rem;
  }
  
  .contact-stats,
  .departure-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .contact-stat,
  .departure-stat {
    padding: 1.5rem;
  }
  
  .contact-stat-number,
  .departure-stat-number {
    font-size: 2rem;
  }
  
  .contact-banner-cta .cta-button,
  .departure-banner-cta .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    margin: 5px;
  }
}

@media (max-width: 480px) {
  .contact-stats,
  .departure-stats {
    grid-template-columns: 1fr;
  }
  
  .contact-banner-cta .cta-button,
  .departure-banner-cta .cta-button {
    display: block;
    margin: 10px auto;
    width: 200px;
  }
}

/* =========================
   Packages Page Banner
========================= */

.packages-banner {
  background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 50%, #d6ecf6 100%);
  color: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.packages-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="packages-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="10" cy="60" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="90" cy="40" r="1" fill="rgba(10,189,227,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23packages-grain)"/></svg>');
  opacity: 0.6;
}

.packages-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.packages-banner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.packages-banner .subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  font-weight: 500;
  line-height: 1.6;
  color: var(--bg-dark);
}

.packages-banner .description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-text);
}

.packages-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.packages-stat {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 189, 227, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.1);
}

.packages-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(10, 189, 227, 0.15);
}

.packages-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.packages-stat-label {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
  color: var(--bg-dark);
}

.packages-banner-cta {
  margin-top: 3rem;
}

.packages-banner-cta .cta-button {
  display: inline-block;
  background: rgba(10, 189, 227, 0.1);
  color: var(--primary-color);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(10, 189, 227, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin: 0 10px;
}

.packages-banner-cta .cta-button:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.3);
}

.packages-banner-cta .cta-button.primary {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.packages-banner-cta .cta-button.primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.3);
}

/* Responsive Design for Packages Banner */
@media (max-width: 768px) {
  .packages-banner {
    padding: 60px 0;
  }
  
  .packages-banner h1 {
    font-size: 2.5rem;
  }
  
  .packages-banner .subtitle {
    font-size: 1.2rem;
  }
  
  .packages-banner .description {
    font-size: 1rem;
  }
  
  .packages-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .packages-stat {
    padding: 1.5rem;
  }
  
  .packages-stat-number {
    font-size: 2rem;
  }
  
  .packages-banner-cta .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    margin: 5px;
  }
}

@media (max-width: 480px) {
  .packages-stats {
    grid-template-columns: 1fr;
  }
  
  .packages-banner-cta .cta-button {
    display: block;
    margin: 10px auto;
    width: 200px;
  }
}

/* =========================
   Navigation Dropdown
========================= */

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-dropdown > a::after {
  content: '▼';
  font-size: 0.7rem;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.nav-dropdown.active > a {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.nav-dropdown.active > a::after {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--primary-color);
}

.nav-dropdown.active .dropdown-content {
  display: block;
  animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  min-width: 320px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(10, 189, 227, 0.3);
  z-index: 1300;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  /* overflow: hidden; */
  padding: 8px 0;
}

.dropdown-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid rgba(255, 255, 255, 0.98);
}

.dropdown-item {
  display: block;
  padding: 18px 24px;
  text-decoration: none;
  color: var(--bg-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(10, 189, 227, 0.08);
  position: relative;
  margin: 0 8px;
  border-radius: 12px;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(10, 189, 227, 0.1), rgba(10, 189, 227, 0.05));
  color: var(--primary-color);
  transform: translateX(6px);
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.1);
}

.dropdown-item-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--primary-dark);
}

.dropdown-item-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
  transition: all 0.3s ease;
}

/* Color coding for dropdown descriptions by package */
.dropdown-item-title:contains('Winter') + .dropdown-item-desc {
  color: #1976d2;
  font-weight: 500;
}
.dropdown-item-title:contains('Cherry Blossom') + .dropdown-item-desc {
  color: #e91e63;
  font-weight: 500;
}
.dropdown-item-title:contains('Spring') + .dropdown-item-desc {
  color: #689f38;
  font-weight: 500;
}

.dropdown-item:hover .dropdown-item-desc {
  opacity: 0.9;
}

.dropdown-item-icon {
  display: none;
}

.dropdown-item:hover .dropdown-item-icon {
  display: none;
}

.dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 189, 227, 0.2), transparent);
  margin: 8px 16px;
}

.dropdown-item:last-child {
  border-bottom: none;
  margin-bottom: 8px;
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
  .dropdown-content {
    position: fixed;
    top: 70px;
    left: 20px;
    right: 20px;
    transform: none;
    min-width: auto;
    max-width: calc(100vw - 40px);
    margin-top: 8px;
  }
  
  .dropdown-content::before {
    display: none;
  }
  
  .dropdown-item {
    padding: 16px 20px;
    margin: 0 4px;
  }
  
  .dropdown-item-title {
    font-size: 1.1rem;
  }
  
  .dropdown-item-desc {
    font-size: 0.9rem;
  }
  
  .nav-dropdown > a::after {
    font-size: 0.6rem;
  }
}
/* =========================
   Cities Overview Section
========================= */

.cities-overview {
  margin: 3rem 0;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.city-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(10, 189, 227, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: all 0.3s ease;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 189, 227, 0.15);
  border-color: rgba(10, 189, 227, 0.4);
}

.city-card:hover::before {
  opacity: 1;
}

.city-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(10, 189, 227, 0.1), rgba(10, 189, 227, 0.05));
  border-radius: 50%;
  border: 2px solid rgba(10, 189, 227, 0.2);
}

.city-info {
  text-align: left;
}

.city-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.city-name::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  opacity: 0.3;
}

.city-duration {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(10, 189, 227, 0.1);
  border-radius: 20px;
  display: inline-block;
}

.city-description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.city-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.city-highlight {
  background: linear-gradient(135deg, rgba(10, 189, 227, 0.1), rgba(10, 189, 227, 0.05));
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(10, 189, 227, 0.2);
  transition: all 0.3s ease;
}

.city-highlight:hover {
  background: linear-gradient(135deg, rgba(10, 189, 227, 0.2), rgba(10, 189, 227, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 189, 227, 0.2);
}
/* =========================
   Cities Overview Section
========================= */

.cities-overview {
  margin: 3rem 0;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Autumn Tour - 4 cards in a row */
.cities-grid.autumn-layout {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.city-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(10, 189, 227, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: all 0.3s ease;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 189, 227, 0.15);
  border-color: rgba(10, 189, 227, 0.4);
}

.city-card:hover::before {
  opacity: 1;
}

.city-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(10, 189, 227, 0.1), rgba(10, 189, 227, 0.05));
  border-radius: 50%;
  border: 2px solid rgba(10, 189, 227, 0.2);
}

.city-info {
  text-align: left;
}

.city-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.city-name::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  opacity: 0.3;
}

.city-duration {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(10, 189, 227, 0.1);
  border-radius: 20px;
  display: inline-block;
}

.city-description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.city-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.city-highlight {
  background: linear-gradient(135deg, rgba(10, 189, 227, 0.1), rgba(10, 189, 227, 0.05));
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(10, 189, 227, 0.2);
  transition: all 0.3s ease;
}

.city-highlight:hover {
  background: linear-gradient(135deg, rgba(10, 189, 227, 0.2), rgba(10, 189, 227, 0.1));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 189, 227, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Override autumn layout on mobile */
  .cities-grid.autumn-layout {
    grid-template-columns: 1fr;
  }
  
  .city-card {
    padding: 1.5rem;
  }
  
  .city-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
  }
  
  .city-name {
    font-size: 1.3rem;
  }
  
  .city-description {
    font-size: 0.9rem;
  }
  
  .city-highlight {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .cities-overview {
    margin: 2rem 0;
  }
  
  .city-card {
    padding: 1.2rem;
  }
  
  .city-highlights {
    gap: 0.3rem;
  }
}

/* Tablet responsive for autumn layout */
@media (max-width: 1024px) and (min-width: 769px) {
  .cities-grid.autumn-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .city-card {
    padding: 1.5rem;
  }
  
  .city-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
  }
  
  .city-name {
    font-size: 1.3rem;
  }
  
  .city-description {
    font-size: 0.9rem;
  }
  
  .city-highlight {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .cities-overview {
    margin: 2rem 0;
  }
  
  .city-card {
    padding: 1.2rem;
  }
  
  .city-highlights {
    gap: 0.3rem;
  }
}

/* =========================
   Book Now Button
========================= */

.book-now-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white !important;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.book-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.book-now-btn:hover::before {
  left: 100%;
}

.book-now-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark), #036a8a);
  /* transform: translateY(-2px); */
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.book-now-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.3);
}

/* Mobile responsive for Book Now button */
@media (max-width: 900px) {
  .book-now-btn {
    padding: 8px 16px;
    font-size: 12px;
    margin-left: 12px;
    margin-right: 0;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .book-now-btn {
    padding: 8px 16px;
    font-size: 12px;
    margin-left: 0;
    margin-right: 12px;
    white-space: nowrap;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
}

@media (max-width: 480px) {
  .book-now-btn {
    padding: 8px 16px;
    font-size: 12px;
    max-width: 180px;
  }
}

/* =========================
   Booking Page Styles
========================= */

/* Booking Banner */
.booking-banner {
  background: linear-gradient(135deg, #f8fcff 0%, #e8f4fd 50%, #d6ecf6 100%);
  color: var(--bg-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.booking-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="booking-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="10" cy="60" r="1" fill="rgba(10,189,227,0.05)"/><circle cx="90" cy="40" r="1" fill="rgba(10,189,227,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23booking-grain)"/></svg>');
  opacity: 0.6;
}

.booking-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.booking-banner h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-banner .subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  font-weight: 500;
  line-height: 1.6;
  color: var(--bg-dark);
}

.booking-banner .description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-text);
}

.booking-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.booking-stat {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 189, 227, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.1);
}

.booking-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(10, 189, 227, 0.15);
}

.booking-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.booking-stat-label {
  font-size: 1rem;
  opacity: 0.8;
  font-weight: 500;
  color: var(--bg-dark);
}

/* Booking Section */
.booking-section {
  padding: 80px 0;
  background: var(--white);
}

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

/* Booking Steps */
.booking-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.booking-step.active {
  display: block;
}

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

.step-header {
  text-align: center;
  margin-bottom: 3rem;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(10, 189, 227, 0.3);
}

.step-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.step-header p {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
}

/* Single Booking Form Container */
.booking-form-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 0.5rem;

}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.form-header p {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
}

.form-actions {
  text-align: center;
  margin-top: 3rem;
}

/* Passenger details */
#passengerDetailsSection .form-hint {
  color: var(--light-text);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.passenger-card {
  background: var(--white);
  border: 1px solid #e8f4fd;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.passenger-header {
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

#childrenDetailsList .passenger-card {
  border-left: 4px solid rgba(10, 189, 227, 0.3);
}

.radio-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.radio-option:hover {
  background: rgba(10, 189, 227, 0.05);
  border-color: rgba(10, 189, 227, 0.3);
}

.radio-option input[type="radio"] {
  margin-right: 1rem;
  transform: scale(1.2);
  accent-color: var(--primary-color);
}

.radio-option input[type="radio"]:checked + label {
  color: var(--primary-color);
  font-weight: 600;
}

.radio-option:has(input[type="radio"]:checked) {
  background: rgba(10, 189, 227, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 189, 227, 0.1);
}

.radio-option label {
  font-size: 1.1rem;
  color: var(--bg-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

/* Package Date Selection */
.package-date-selection {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(10, 189, 227, 0.1);
}

.package-date-selection label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 0.75rem;
  text-align: left !important;
}

.package-date-selection select {
  width: 100%;
  max-width: 500px;
  margin: 0 !important;
  display: block;
  padding: 1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  text-align: left !important;
  text-align-last: left !important;
}

.package-date-selection select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 189, 227, 0.1);
}

.package-date-selection select option {
  padding: 0.5rem;
  text-align: left;
}

/* Thank You Message */
#thankYouMessage {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 1px solid #e8f4fd;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.thank-you-content h3 {
  color: var(--bg-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.thank-you-content p {
  color: var(--light-text);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.booking-summary {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.booking-summary h4 {
  color: var(--bg-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item .label {
  color: var(--light-text);
  font-weight: 500;
}

.summary-item .value {
  color: var(--bg-dark);
  font-weight: 600;
}

.next-steps {
  text-align: left;
}

.next-steps h4 {
  color: var(--bg-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  color: var(--light-text);
  padding: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

.package-option {
  position: relative;
}

.package-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-card {
  display: block;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.package-radio:checked + .package-card {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(10, 189, 227, 0.2);
}

.package-radio:checked + .package-card::before {
  content: '✓';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
}

.package-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-color);
  border: 1px solid rgba(10, 189, 227, 0.2);
}

.package-content {
  padding: 2rem;
}

.package-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.meta-item {
  background: rgba(10, 189, 227, 0.1);
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(10, 189, 227, 0.2);
}

.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.highlight {
  background: rgba(10, 189, 227, 0.05);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(10, 189, 227, 0.15);
}

.package-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.original-price {
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 600;
  font-size: 1rem;
}

.current-price {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 1.3rem;
}

.discount {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Booking Form */
.booking-form {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 1px solid #e8f4fd;
}

.selected-package-info {
  background: linear-gradient(135deg, rgba(10, 189, 227, 0.1), rgba(10, 189, 227, 0.05));
  border: 1px solid rgba(10, 189, 227, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.selected-package-info h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.package-summary {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.package-summary span {
  color: var(--bg-dark);
  font-weight: 500;
}

.form-section {
  margin-bottom: 2.5rem;
}

.form-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(10, 189, 227, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--bg-dark);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: var(--white);
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 189, 227, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.2rem;
  transform: scale(1.2);
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--light-text);
}

.checkbox-group a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

/* Step Actions */
.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  gap: 1rem;
}

.btn-next,
.btn-back,
.btn-submit {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-next,
.btn-submit {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.3);
}

.btn-next:hover,
.btn-submit:hover {
  background: linear-gradient(135deg, var(--primary-dark), #036a8a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.4);
}

.btn-next:disabled {
  background: #e2e8f0;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-back {
  background: transparent;
  color: var(--light-text);
  border: 2px solid #e2e8f0;
}

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

/* Confirmation Step */
.confirmation-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.confirmation-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.confirmation-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.confirmation-content p {
  font-size: 1.1rem;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.booking-summary {
  background: linear-gradient(135deg, rgba(10, 189, 227, 0.1), rgba(10, 189, 227, 0.05));
  border: 1px solid rgba(10, 189, 227, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.booking-summary h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.summary-details {
  display: grid;
  gap: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(10, 189, 227, 0.1);
}

.summary-item:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.summary-item .label {
  color: var(--light-text);
  font-weight: 500;
}

.summary-item .value {
  color: var(--bg-dark);
  font-weight: 600;
}

.next-steps {
  background: var(--white);
  border: 1px solid #e8f4fd;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.next-steps h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  padding: 0.8rem 0;
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.5;
}

.confirmation-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-home,
.btn-contact {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-home {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(10, 189, 227, 0.3);
}

.btn-home:hover {
  background: linear-gradient(135deg, var(--primary-dark), #036a8a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 189, 227, 0.4);
}

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

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

/* Booking Page Responsive Design */
@media (max-width: 768px) {
  .booking-banner {
    padding: 60px 0;
  }
  
  .booking-banner h1 {
    font-size: 2.5rem;
  }
  
  .booking-banner .subtitle {
    font-size: 1.2rem;
  }
  
  .booking-banner .description {
    font-size: 1rem;
  }
  
  .booking-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .booking-stat {
    padding: 1.5rem;
  }
  
  .booking-stat-number {
    font-size: 2rem;
  }
  
  .booking-section {
    padding: 60px 0;
  }
  
  .step-header h2 {
    font-size: 2rem;
  }
  
  .package-selection-form {
    min-width: 90%;
    max-width: 95%;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .radio-option {
    padding: 0.8rem 1rem;
    flex: none;
  }
  
  .booking-form {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .step-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-next,
  .btn-back,
  .btn-submit {
    width: 100%;
    max-width: 300px;
  }
  
  .confirmation-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-home,
  .btn-contact {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .booking-stats {
    grid-template-columns: 1fr;
  }
  
  .booking-form {
    padding: 1.5rem;
  }
  
  .package-content {
    padding: 1.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
