/* ==========================================================================
   VOWISH TOURS - SRI LANKA BESPOKE TRAVEL EXPERIENCES
   Unified CSS Design System & Responsive Stylesheet
   Theme: Dark Blue, Light Blue, Lavender & Golden Yellow
   ========================================================================== */

/* --- 1. CSS Custom Properties / Design Tokens --- */
:root {
  /* Brand Palette (User Specified: Dark Blue, Light Blue, Lavender & Yellow) */
  --dark-blue: #0c1829;          /* Deep Midnight Navy */
  --dark-blue-soft: #142850;     /* Rich Royal Navy */
  --dark-blue-card: #112240;     /* Navy Surface */

  --light-blue: #0284c7;         /* Vibrant Sky Azure */
  --light-blue-bright: #38bdf8;  /* Cyan / Sky Highlight */
  --light-blue-subtle: #e0f2fe;  /* Ice Blue Tint */

  --lavender: #8b5cf6;           /* Vivid Lavender / Violet */
  --lavender-light: #a78bfa;     /* Soft Pastel Lavender */
  --lavender-glow: rgba(139, 92, 246, 0.35);
  --lavender-subtle: #f5f3ff;    /* Soft Lavender Wash */

  --yellow: #facc15;             /* Sparkling Star Yellow */
  --yellow-warm: #eab308;        /* Deep Golden Yellow */
  --yellow-glow: rgba(250, 204, 21, 0.4);
  --yellow-subtle: #fefce8;      /* Creamy Yellow Wash */

  /* Functional Mappings */
  --primary: var(--dark-blue-soft);
  --primary-dark: var(--dark-blue);
  --primary-light: var(--light-blue);
  --primary-subtle: var(--light-blue-subtle);

  --accent: var(--yellow-warm);
  --accent-light: var(--yellow);
  --accent-dark: #ca8a04;
  --accent-subtle: var(--yellow-subtle);

  --secondary: var(--lavender);
  --secondary-light: var(--lavender-light);
  --secondary-subtle: var(--lavender-subtle);

  --ocean: var(--dark-blue);
  --ocean-light: var(--light-blue);
  --ocean-subtle: #f0f9ff;

  --dark: #0c1829;
  --dark-soft: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  --surface: #ffffff;
  --bg-sand: #f8fafc;
  --bg-light: #ffffff;

  /* Status Colors */
  --success: #10b981;
  --danger: #ef4444;
  --info: var(--light-blue);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(12, 24, 41, 0.06), 0 1px 2px rgba(12, 24, 41, 0.04);
  --shadow-md: 0 4px 14px rgba(12, 24, 41, 0.08), 0 2px 5px rgba(12, 24, 41, 0.04);
  --shadow-lg: 0 10px 25px rgba(12, 24, 41, 0.12), 0 6px 12px rgba(12, 24, 41, 0.06);
  --shadow-xl: 0 20px 38px rgba(12, 24, 41, 0.16), 0 10px 18px rgba(12, 24, 41, 0.08);
  --shadow-star: 0 0 20px rgba(250, 204, 21, 0.35);

  /* Layout & Spacing */
  --container-max: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--light-soft);
  background-color: var(--bg-sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style-position: inside;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- 3. Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-blue);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.25rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lavender);
  margin-bottom: 0.5rem;
}

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }
.text-muted { color: var(--muted) !important; }
.text-primary { color: var(--primary-light) !important; }
.text-accent { color: var(--accent) !important; }
.text-lavender { color: var(--lavender) !important; }

/* --- 4. Layout & Containers --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-light {
  background-color: var(--surface);
}

.section-sand {
  background-color: var(--bg-sand);
}

.section-dark {
  background-color: var(--dark-blue);
  color: #ffffff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

/* --- 5. Navigation & Header --- */
.top-bar {
  background-color: var(--dark-blue);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-contact a {
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-contact a:hover {
  color: var(--yellow);
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(139, 92, 246, 0.25);
  color: var(--lavender-light);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(12, 24, 41, 0.05);
  transition: var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo with Sparkling Star */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-icon.star-logo {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-soft) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  box-shadow: 0 4px 12px rgba(12, 24, 41, 0.25), 0 0 10px rgba(250, 204, 21, 0.3);
  border: 1.5px solid var(--lavender-light);
  transition: var(--transition);
}

.brand-logo:hover .logo-icon.star-logo {
  transform: rotate(15deg) scale(1.05);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4), 0 0 15px rgba(250, 204, 21, 0.5);
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

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

.logo-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--lavender);
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-soft);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--light-blue), var(--lavender));
  transition: width 0.3s ease;
  border-radius: var(--radius-full);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--light-blue);
  font-weight: 700;
}

.nav-cta {
  margin-left: 0.5rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.6rem;
  color: var(--dark-blue);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--surface);
  box-shadow: -5px 0 25px rgba(12, 24, 41, 0.2);
  z-index: 2000;
  padding: 2rem 1.5rem;
  flex-direction: column;
  transition: right 0.35s ease;
}

.mobile-nav-drawer.open {
  right: 0;
  display: flex;
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 24, 41, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1999;
}

.mobile-nav-backdrop.open {
  display: block;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--muted);
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-soft);
  display: block;
  padding: 0.4rem 0;
}

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

/* --- 6. Buttons & Badges --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--dark-blue-soft);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(20, 40, 80, 0.25);
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(12, 24, 41, 0.35);
}

.btn-accent {
  background-color: var(--yellow-warm);
  color: var(--dark-blue);
  box-shadow: 0 4px 14px var(--yellow-glow);
}

.btn-accent:hover {
  background-color: var(--yellow);
  color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(250, 204, 21, 0.5);
}

.btn-lavender {
  background-color: var(--lavender);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--lavender-glow);
}

.btn-lavender:hover {
  background-color: var(--secondary);
  color: #ffffff;
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-outline-white {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--dark-blue);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--light-blue);
  color: var(--light-blue);
}

.btn-outline-primary:hover {
  background-color: var(--light-blue);
  color: #ffffff;
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.badge-primary { background-color: var(--light-blue-subtle); color: var(--light-blue); }
.badge-accent { background-color: var(--yellow-subtle); color: var(--accent-dark); }
.badge-lavender { background-color: var(--lavender-subtle); color: var(--lavender); }
.badge-ocean { background-color: var(--light-blue-subtle); color: var(--dark-blue); }

/* --- 7. Hero Sections --- */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background-color: var(--dark-blue);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 5rem 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 24, 41, 0.88) 0%, rgba(20, 40, 80, 0.82) 50%, rgba(139, 92, 246, 0.45) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(250, 204, 21, 0.4);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-top: 1rem;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 0.15rem;
  font-family: var(--font-sans);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Page Header Hero (Smaller Subpage Header) */
.page-hero {
  position: relative;
  padding: 5.5rem 0 4.5rem 0;
  background-color: var(--dark-blue);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 24, 41, 0.92), rgba(20, 40, 80, 0.85));
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
  color: var(--light-blue-bright);
}

.breadcrumbs a:hover {
  color: var(--yellow);
}

/* --- 8. Feature & Value Cards --- */
.feature-card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 92, 246, 0.4);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: var(--lavender-subtle);
  color: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--lavender), var(--dark-blue-soft));
  color: #ffffff;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- 9. Destination & Attraction Cards --- */
.card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(2, 132, 199, 0.3);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: #e2e8f0;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(12, 24, 41, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-wish-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--yellow-warm), var(--yellow));
  color: var(--dark-blue);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--dark-blue);
}

.card-text {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

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

.card-price-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
}

.card-price-amount {
  font-weight: 800;
  color: var(--light-blue);
  font-size: 1.2rem;
}

/* --- 10. Filter Tabs --- */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background-color: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--dark-soft);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--lavender);
  color: var(--lavender);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--dark-blue-soft), var(--lavender));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* --- 11. Tables & Data Display --- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background-color: var(--surface);
  margin: 1.5rem 0 2.5rem 0;
  border: 1px solid var(--border);
}

.table-custom {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  min-width: 600px;
}

.table-custom thead {
  background: linear-gradient(135deg, var(--dark-blue), var(--dark-blue-soft));
  color: #ffffff;
}

.table-custom th {
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 2px solid var(--yellow);
}

.table-custom td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.table-custom tbody tr:nth-child(even) {
  background-color: var(--bg-sand);
}

.table-custom tbody tr:hover {
  background-color: var(--light-blue-subtle);
}

/* --- 12. Tour Itinerary (Ordered List) --- */
.itinerary-list {
  list-style: none;
  counter-reset: day-counter;
  position: relative;
  padding-left: 2.2rem;
  margin: 2rem 0;
}

.itinerary-list::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 15px;
  bottom: 20px;
  width: 2px;
  background-color: var(--border);
}

.itinerary-item {
  position: relative;
  padding-bottom: 2rem;
  counter-increment: day-counter;
}

.itinerary-item::before {
  content: counter(day-counter);
  position: absolute;
  left: -2.2rem;
  top: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--dark-blue-soft), var(--light-blue));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 0 0 4px var(--bg-sand);
  z-index: 2;
}

.itinerary-item.active::before {
  background: linear-gradient(135deg, var(--yellow-warm), var(--yellow));
  color: var(--dark-blue);
}

.itinerary-card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.itinerary-card h4 {
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.itinerary-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--lavender);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* --- 13. Forms & Wish Builder --- */
.form-card {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.form-label .required {
  color: var(--danger);
  margin-left: 0.2rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--dark-soft);
  background-color: #ffffff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Custom Checkbox Grid for Wishes */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.custom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background-color: var(--bg-sand);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  user-select: none;
}

.custom-checkbox-label:hover {
  border-color: var(--lavender);
  background-color: var(--lavender-subtle);
}

.custom-checkbox-label input[type="checkbox"] {
  accent-color: var(--lavender);
  width: 18px;
  height: 18px;
}

.custom-checkbox-label input[type="checkbox"]:checked + span {
  color: var(--lavender);
  font-weight: 700;
}

/* Radio Group */
.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.custom-radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
}

.custom-radio-label input[type="radio"] {
  accent-color: var(--lavender);
  width: 18px;
  height: 18px;
}

/* Form Helper & Feedback */
.form-help {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* --- 14. Gallery & Media --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  background-color: #e2e8f0;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 24, 41, 0.92) 0%, rgba(12, 24, 41, 0.3) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
}

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

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

.gallery-overlay h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.gallery-zoom-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.1rem;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(12, 24, 41, 0.96);
  backdrop-filter: blur(10px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-content img {
  max-height: 75vh;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  color: #ffffff;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--yellow);
}

/* Video Responsive Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  background-color: #000;
  border: 4px solid #ffffff;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- 15. FAQ Accordion --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--lavender);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-blue);
  font-weight: 700;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--yellow-warm);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  max-height: 400px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* --- 16. Testimonials & Social Proof --- */
.testimonial-card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  color: var(--yellow-warm);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-soft);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--lavender-subtle);
  color: var(--lavender);
}

.user-info h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--dark-blue);
}

.user-info span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* --- 17. Modal Feedback Dialog --- */
.modal-dialog-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(12, 24, 41, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2500;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-dialog-backdrop.show {
  display: flex;
}

.modal-box {
  background-color: var(--surface);
  max-width: 540px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  text-align: center;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--lavender-light);
}

@keyframes modalPop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-icon-success {
  width: 72px;
  height: 72px;
  background-color: var(--yellow-subtle);
  color: var(--yellow-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.5rem auto;
  border: 2px solid var(--yellow);
}

/* --- 18. Footer --- */
.site-footer {
  background-color: var(--dark-blue);
  color: rgba(255, 255, 255, 0.8);
  padding: 4.5rem 0 1.5rem 0;
  border-top: 4px solid var(--yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--yellow);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--light-blue-bright);
  transform: translateX(4px);
  display: inline-block;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-info a:hover {
  color: var(--yellow);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  width: 100%;
}

.newsletter-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.18);
  border-color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: var(--yellow);
}

/* Floating Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--dark-blue-soft), var(--lavender));
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* --- 19. Responsive Breakpoints --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .hero { min-height: 520px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  
  .form-card { padding: 1.75rem 1.25rem; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; width: 100%; }
}
