/* css/styles.css */
/* Mama Holidays Design System & Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Color Variables */
:root {
  --primary-color: #163A7A;       /* Deep Navy */
  --primary-rgb: 22, 58, 122;     /* RGB of #163A7A */
  --accent-color: #04A6E0;        /* Primary Blue */
  --accent-hover: #0F7ABD;        /* Ocean Blue */
  --royal-blue: #1C4D9A;          /* Royal Blue */
  --bg-warm: #EEF8FD;             /* Alternate Background */
  --bg-white: #ffffff;
  --bg-light: #F6FBFF;            /* Light Section Background */
  --text-dark: #163A7A;           /* Primary Text */
  --text-grey: #475569;           /* Secondary Text */
  --text-light: #ffffff;
  --border-light: #E5EEF7;        /* Border */
  --brand-gradient: linear-gradient(135deg, #04A6E0 0%, #0F7ABD 45%, #1C4D9A 100%);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Button Utilities */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--royal-blue);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline-white:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--text-light);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

/* Section Styling */
section {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--bg-warm);
}

.section-header {
  text-align: left;
  max-width: 800px;
  margin: 0 0 50px 0;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-grey);
}

.eyebrow {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* Header & Sticky Navbar */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background-color: #04A6E0 !important; /* Solid vibrant blue background matching mockup */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-container {
  width: 100% !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #04A6E0 !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.3s ease-out;
}

header.sticky .navbar {
  height: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img#logo-icon {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo img#logo-text {
  height: 24px;
  width: auto;
  display: block;
  object-fit: contain;
}

header.sticky .logo img#logo-icon {
  height: 32px;
}

header.sticky .logo img#logo-text {
  height: 21px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  flex-shrink: 0;
  height: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-links.left-nav {
  flex: 1;
}

.nav-links li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  padding: 4px 0;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: #ffffff;
  opacity: 0.9;
}

/* Active navigation link styling - white underline bar directly matching mockup */
.nav-links a.active {
  color: #ffffff;
  font-weight: 700;
  border-bottom: 3px solid #ffffff !important;
  border-radius: 0;
  padding-bottom: 2px;
}

header.sticky .nav-links a:hover,
header.sticky .nav-search-btn:hover {
  color: #ffffff;
  opacity: 0.9;
}

header.sticky .nav-links a.active {
  color: #ffffff;
  border-bottom: 3px solid #ffffff !important;
}

.nav-search-btn {
  color: #ffffff;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: transparent;
  border: none;
  transition: opacity 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-search-btn:hover {
  color: #ffffff;
  opacity: 0.85;
}

.mobile-drawer-header,
.mobile-search-link {
  display: none !important;
}

.menu-toggle {
  display: none;
}

/* Video Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  color: var(--text-light);
  overflow: hidden;
  padding-bottom: 80px;
}

/* Homepage Gallery Grid (moved from inline styles) */
.homepage-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  border-radius: 16px;
  overflow: hidden;
}

/* Gallery Section Header (moved from inline styles) */
.gallery-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

/* Contact Teaser Section */
.contact-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-teaser-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-teaser-card {
  background: #161b22;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #1f2833;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 2;
}

.hero-container-layout {
  position: relative;
  z-index: 3;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
  padding-top: 160px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.hero-content {
  width: 100%;
  max-width: 720px;
  animation: fadeInUp 0.8s ease-out;
  margin-top: auto;
  margin-left: 0 !important;
  text-align: left !important;
}

.hero-content .eyebrow {
  text-transform: lowercase;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Floating Search Bar */
.hero-search-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 75px; /* Moves search bar lower towards vertical center of screen */
  animation: fadeInUp 0.6s ease-out;
}

.hero-search-bar {
  background-color: var(--bg-white);
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 8px 12px 8px 32px;
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-col {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.search-icon {
  font-size: 1.25rem;
  color: var(--text-grey);
}

.search-input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.search-input-group label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-grey);
  letter-spacing: 0.5px;
}

.search-input-group input {
  border: none;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
  background-color: transparent;
  width: 100%;
  padding: 2px 0 0 0;
}

.search-divider {
  width: 1px;
  height: 36px;
  background-color: var(--border-light);
  margin: 0 10px;
}

/* Search Gooey Button Wrapper */
.search-goo-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* Gooey Background Container (filtered) */
.search-button-goo-container {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 68px;
  height: 68px;
  filter: url(#goo-effect);
  pointer-events: none; /* let clicks pass through to the real button */
  z-index: 1;
}

/* White base that merges with the pill */
.search-goo-base {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 50%;
}

/* Black/blue gooey button background */
.search-goo-button-bg {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 48px;
  height: 48px;
  background-color: #000000;
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
  will-change: transform;
}

/* Sharp clickable button on top */
.btn-search-circular {
  position: absolute;
  top: 0;
  left: 0;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-color: transparent; /* background is handled by the gooey filter layer */
  color: var(--text-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  z-index: 2;
  outline: none;
}

/* Hover/Focus states: animate both the background and the real button in sync */
.hero-search-bar:hover .search-goo-button-bg,
.hero-search-bar:focus-within .search-goo-button-bg,
.hero-search-bar:hover .btn-search-circular,
.hero-search-bar:focus-within .btn-search-circular {
  transform: translateX(18px);
}

.hero-search-bar:hover .search-goo-button-bg,
.hero-search-bar:focus-within .search-goo-button-bg {
  background-color: #04A6E0; /* change gooey circle to brand blue on hover */
}

/* Trust Bar */
.trust-bar {
  background-color: var(--bg-warm);
  padding: 20px 0;
  border-bottom: 1px solid rgba(22, 58, 122, 0.08);
}

.trust-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--text-grey);
}

/* Package Grid and Category Filters */
.filters-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 8px 20px;
  border-radius: 30px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-grey);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-chip.active {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.filter-chip:hover {
  background-color: #F5B400 !important;
  color: #163A7A !important;
  border-color: #F5B400 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 180, 0, 0.3);
}

/* Packages Slider Wrapper */
.packages-slider-wrapper {
  position: relative;
  width: 100%;
}

.packages-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding: 12px 4px 24px 4px; /* bottom padding for card shadow */
  scrollbar-width: none; /* Hide for Firefox */
  -ms-overflow-style: none; /* Hide for IE/Edge */
}

.packages-grid::-webkit-scrollbar {
  display: none; /* Hide for Chrome/Safari */
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--primary-color);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none; /* starts inactive/hidden and fades in on wrapper hover */
}

.packages-slider-wrapper:hover .slider-arrow {
  opacity: 1;
  pointer-events: auto;
}

.slider-arrow:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.slider-arrow.prev-arrow {
  left: -23px;
}

.slider-arrow.next-arrow {
  right: -23px;
}

@media (max-width: 1200px) {
  .slider-arrow.prev-arrow {
    left: -12px;
  }
  .slider-arrow.next-arrow {
    right: -12px;
  }
}

@media (max-width: 768px) {
  .slider-arrow {
    display: none !important;
  }
}

/* Sleek Full-Bleed Package Card */
.package-card {
  position: relative;
  height: 400px;
  flex: 0 0 340px; /* fixed width in horizontal row */
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 768px) {
  .package-card {
    flex: 0 0 280px; /* narrower card for mobile peek-a-boo */
  }
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 4px #ffd800, 0 15px 30px rgba(0, 0, 0, 0.22) !important;
}

.package-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-card-image img {
  transform: scale(1.08);
}

/* Fallback Card Cover Gradient if Image missing */
.package-fallback-image {
  width: 100%;
  height: 100%;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  flex-direction: column;
}

.package-fallback-image i {
  font-size: 3rem;
  margin-bottom: 8px;
  opacity: 0.8;
}

/* Gradient Overlay over the image */
.package-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  transition: var(--transition);
}

.package-card:hover .package-card-overlay {
  background: linear-gradient(to top, rgba(245, 180, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.1) 100%);
}

/* Top Badge */
.package-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand-gradient);
  color: var(--text-light);
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 30px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 4px;
}

.package-card-type-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--text-light);
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Card Content Floating at bottom */
.package-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 3;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
}

.package-card-title {
  font-family: var(--font-headings) !important;
  font-size: 1.35rem;
  margin-bottom: 6px;
  font-weight: 800;
  color: #ffffff !important;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.package-card-subtitle {
  font-family: var(--font-body) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.82rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.package-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 4px;
}

.package-card-price {
  display: flex;
  flex-direction: column;
}

.package-card-price .price-from {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.package-card-price .price-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.package-card-price .price-original {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}



/* Where to next Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.destination-tile {
  position: relative;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  --mouse-x: 50%;
  --mouse-y: 50%;
  --shadow-x: 0px;
  --shadow-y: 5px;
}

.destination-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-x) var(--shadow-y) 20px rgba(245, 180, 0, 0.35);
}

.destination-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  margin: 0;
  box-shadow: none;
  z-index: 1;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-tile:hover .destination-image img {
  transform: scale(1.08);
}

.destination-tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  padding: 16px;
  text-align: center;
}

.destination-tile h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-light);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  margin: 0;
}

.destination-tile-badge {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Why Chosen Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-light);
  text-align: left;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0;
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-grey);
  line-height: 1.5;
}

.why-card p a {
  text-decoration: underline;
  font-weight: 600;
}

/* Side-by-Side Testimonials Slider */
.travel-stories-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 60px;
}

.story-showcase-card {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  padding: 30px;
  width: 100%;
}

.story-photo {
  flex: 1;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(0,0,0,0.6);
  color: var(--text-light);
  padding: 4px 12px;
  font-size: 0.75rem;
  border-radius: 30px;
  font-weight: 600;
}

.story-text-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.story-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.story-text-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.story-text-content p {
  font-size: 1.05rem;
  color: var(--text-grey);
  line-height: 1.6;
  font-style: italic;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 12px;
}

.author-details {
  font-size: 0.85rem;
  color: var(--text-grey);
}

/* Nav arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #000000;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 1.15rem;
  transition: var(--transition);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.nav-arrow:hover {
  background-color: var(--accent-color);
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

/* Pagination dots */
.pagination-dots-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.p-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

.p-dot.active {
  background-color: var(--text-dark);
  width: 24px;
  border-radius: 10px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-color);
  border: 2px solid var(--border-light);
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--text-grey);
}

/* Mid-Page Call To Action */
.cta-band {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--text-light);
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.85;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Custom Trip Banner */
.custom-banner {
  background: linear-gradient(rgba(22, 58, 122, 0.85), rgba(22, 58, 122, 0.85)), url('../assets/bali.png') no-repeat center center/cover;
  padding: 100px 0;
  color: var(--text-light);
  text-align: center;
}

.custom-banner h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.custom-banner p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.custom-banner-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Page Headers (Details, FAQs, About, etc.) */
.page-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 140px 0 60px 0;
}

.page-header h1 {
  color: var(--text-light);
  font-size: 2.75rem;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
  color: var(--accent-color);
}

/* Double-column layout for Package Details */
.package-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 60px 0;
}

/* Image gallery for Details */
.detail-gallery {
  margin-bottom: 30px;
}

.detail-gallery-main {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery-main .fallback-cover {
  width: 100%;
  height: 100%;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Left Column content modules */
.detail-module {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-light);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.detail-module h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--bg-warm);
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-module h2 i {
  color: var(--accent-color);
}

/* Day-by-Day Accordion */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--border-light);
  margin-left: 10px;
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -27px;
  top: 15px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-color);
  border: 2px solid var(--bg-white);
  box-shadow: 0 0 0 3px rgba(232, 93, 76, 0.2);
}

.timeline-header {
  background-color: var(--bg-warm);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.timeline-header:hover {
  background-color: var(--border-light);
}

.timeline-title {
  font-weight: 700;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-title span {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.timeline-icon {
  transition: var(--transition);
}

.timeline-item.active .timeline-icon {
  transform: rotate(180deg);
}

.timeline-content {
  padding: 20px;
  border: 1px solid var(--border-light);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  display: none;
}

.timeline-item.active .timeline-content {
  display: block;
}

.timeline-bullets {
  margin-top: 12px;
  padding-left: 20px;
  list-style: square;
  font-size: 0.9rem;
}

.timeline-bullets li {
  margin-bottom: 6px;
}

/* Inclusions & Exclusions Grid */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.inc-column h3, .exc-column h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inc-column h3 {
  color: #2b9348;
}

.exc-column h3 {
  color: #d90429;
}

.inc-list, .exc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.inc-list li {
  display: flex;
  gap: 10px;
}

.inc-list i {
  color: #2b9348;
  margin-top: 4px;
}

.exc-list li {
  display: flex;
  gap: 10px;
}

.exc-list i {
  color: #d90429;
  margin-top: 4px;
}

/* Sticky Booking Panel */
.sticky-rail {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.booking-price {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

.booking-price span {
  display: block;
}

.booking-price span:first-child {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-grey);
  font-weight: 600;
}

.booking-price .amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--font-headings);
}

.booking-price span:last-child {
  font-size: 0.8rem;
  color: var(--text-grey);
}

.booking-details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.booking-detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.booking-detail-item span:first-child {
  color: var(--text-grey);
}

.booking-detail-item span:last-child {
  font-weight: 600;
}

/* Hidden locked content styling */
.locked-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  background-color: var(--bg-warm);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(22, 58, 122, 0.2);
}

.locked-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(22, 58, 122, 0.05);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.locked-container h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.locked-container p {
  font-size: 0.95rem;
  color: var(--text-grey);
  margin-bottom: 30px;
  max-width: 450px;
}

/* Enquiry Form Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 58, 122, 0.6);
  backdrop-filter: blur(5px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: modalScale 0.3s ease-out;
}

.modal-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 24px;
}

.modal-header h3 {
  color: var(--text-light);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.8;
  transition: var(--transition);
}

.modal-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.modal-body {
  padding: 30px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(232, 93, 76, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Toggle Option for Anonymity */
.anon-toggle-container {
  background-color: var(--bg-warm);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.anon-text {
  display: flex;
  flex-direction: column;
}

.anon-text span:first-child {
  font-weight: 700;
  font-size: 0.85rem;
}

.anon-text span:last-child {
  font-size: 0.75rem;
  color: var(--text-grey);
}

/* Switch styling */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--accent-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--accent-color);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

/* Success Animation */
.success-screen {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.success-screen.active {
  display: block;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(43, 147, 72, 0.1);
  color: #2b9348;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 20px auto;
  animation: popSuccess 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-screen h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.success-screen p {
  color: var(--text-grey);
  margin-bottom: 30px;
}

/* About Us Story */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
}

.story-content h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.story-content p {
  color: var(--text-grey);
  margin-bottom: 20px;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* FAQs accordion */
.faqs-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--bg-white);
  transition: var(--transition);
}

.faq-header:hover {
  background-color: var(--bg-warm);
}

.faq-header h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent-color);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 24px 20px 24px;
  display: none;
  font-size: 0.95rem;
  color: var(--text-grey);
}

.faq-item.active .faq-content {
  display: block;
}

/* Policies pages styling */
.policies-nav-container {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.policy-nav-link {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-grey);
  cursor: pointer;
  padding-bottom: 8px;
  border-bottom: 3px solid transparent;
}

.policy-nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.policy-panel {
  display: none;
}

.policy-panel.active {
  display: block;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.75rem;
  margin: 30px 0 16px 0;
}

.policy-content p {
  margin-bottom: 16px;
  color: var(--text-grey);
}

.policy-table-container {
  overflow-x: auto;
  margin: 24px 0;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.policy-table th, .policy-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.policy-table th {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
}

.policy-table tr:nth-child(even) {
  background-color: rgba(22, 58, 122, 0.02);
}

/* Contact page styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-card {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(232, 93, 76, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-card-details h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-card-details p, .contact-card-details a {
  color: var(--text-grey);
  font-size: 0.9rem;
}

.map-container {
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Site-wide Footer */
footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 30px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-logo p {
  margin-bottom: 20px;
  max-width: 250px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
}

.footer-contact-item i {
  color: var(--accent-color);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Admin Dashboard Portal */
.admin-login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  padding: 20px;
}

.admin-login-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.admin-login-card h2 {
  margin-bottom: 8px;
}

.admin-login-card p {
  color: var(--text-grey);
  margin-bottom: 24px;
}

.admin-dashboard {
  min-height: 100vh;
  background-color: var(--bg-light);
  display: flex;
}

.admin-sidebar {
  width: 250px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}

.admin-logo {
  padding: 0 24px 30px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.admin-logo img {
  height: 40px;
}

.admin-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-nav-item {
  padding: 14px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.7);
}

.admin-nav-item:hover, .admin-nav-item.active {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  border-left: 4px solid var(--accent-color);
}

.admin-content {
  flex-grow: 1;
  padding: 40px;
}

.admin-header-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.admin-summary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.admin-summary-card {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-summary-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(22, 58, 122, 0.05);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.admin-summary-info h3 {
  font-size: 1.75rem;
  margin-bottom: 2px;
}

.admin-summary-info p {
  color: var(--text-grey);
  font-size: 0.85rem;
}

.admin-panel-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  padding: 24px;
}

.admin-table-container {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th, .admin-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.admin-table th {
  background-color: var(--bg-light);
  color: var(--text-grey);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.admin-table tr:hover {
  background-color: var(--bg-warm);
}

.status-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-badge.new {
  background-color: rgba(232, 93, 76, 0.1);
  color: var(--accent-color);
}

.status-badge.contacted {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.status-badge.closed {
  background-color: rgba(43, 147, 72, 0.1);
  color: #2b9348;
}

.identity-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.identity-badge.public {
  background-color: #e2f0d9;
  color: #385723;
}

.identity-badge.anonymous {
  background-color: #fff2cc;
  color: #7f6000;
}

.action-btns {
  display: flex;
  gap: 8px;
}

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: var(--transition);
}

.action-btn.edit {
  color: var(--primary-color);
}

.action-btn.delete {
  color: #d90429;
}

.action-btn:hover {
  transform: scale(1.1);
}

/* Animations */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes popSuccess {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* Fixed Mobile Bottom CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  z-index: 99;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 20px;
}

/* Footer Layout styling */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
  .search-widget {
    grid-template-columns: repeat(2, 1fr);
    margin: -40px 24px 0 24px;
    width: auto;
  }
  .btn-search {
    grid-column: span 2;
    width: 100%;
    height: 48px;
  }
  .trust-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-row {
    grid-template-columns: 1fr;
  }
  .package-detail-layout {
    grid-template-columns: 1fr;
  }
  .sticky-rail {
    position: static;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* LAPTOP Breakpoint (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .header-container {
    padding: 0 32px !important;
  }
  .nav-right {
    gap: 20px;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 0.92rem;
  }
  .logo img#logo-icon {
    height: 32px;
  }
  .logo img#logo-text {
    height: 22px;
  }
}

/* TABLET Breakpoint (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .header-container {
    padding-left: 24px !important;
    padding-right: 0 !important; /* Dark hamburger box aligns flush to far right */
  }
  .navbar {
    height: 60px;
  }
  .logo img#logo-icon {
    height: 30px;
  }
  .logo img#logo-text {
    height: 20px;
  }
  .nav-right {
    gap: 16px;
    height: 100%;
  }
  .nav-links {
    display: flex;
    gap: 14px;
  }
  .nav-links a {
    font-size: 0.84rem;
  }
  .nav-search-btn {
    font-size: 1rem;
    padding-right: 12px;
  }
  /* Dark hamburger box on far right edge matching mockup */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: #262626; /* Dark background block */
    width: 60px;
    height: 100%;
    cursor: pointer;
    padding: 0 16px;
    transition: background-color 0.2s ease;
  }
  .menu-toggle:hover {
    background-color: #111111;
  }
  .menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
  }
}

/* MOBILE Breakpoint (up to 767px) */
@media (max-width: 767px) {
  .header-container {
    padding: 0 16px !important;
  }
  .navbar {
    height: 58px;
  }
  .logo img#logo-icon {
    height: 30px;
  }
  .logo img#logo-text {
    height: 20px;
  }
  .nav-right {
    gap: 16px;
  }
  .nav-links {
    display: none; /* Hidden from bar, shown when drawer active */
  }
  .nav-search-btn {
    display: inline-flex;
    font-size: 1.15rem;
    color: #ffffff;
    margin-right: 4px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4.5px;
    background: transparent; /* No dark box on mobile */
    width: auto;
    height: auto;
    padding: 4px;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
  }
}

/* MOBILE & TABLET MENU DRAWER (when opened) */
@media (max-width: 1023px) {
  .nav-links.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-width: 360px;
    background-color: #04A6E0 !important;
    box-shadow: 4px 0 25px rgba(0,0,0,0.25);
    flex-direction: column;
    padding: 20px 24px 40px 24px;
    align-items: stretch;
    gap: 0;
    z-index: 1100;
    overflow-y: auto;
    box-sizing: border-box;
    animation: slideInLeft 0.3s ease-out;
  }

  .nav-links.active .mobile-drawer-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
  }

  .drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .drawer-logo img:nth-child(1) {
    height: 30px;
    width: auto;
  }

  .drawer-logo img:nth-child(2) {
    height: 20px;
    width: auto;
  }

  .drawer-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
  }

  .drawer-close:hover {
    opacity: 0.8;
  }

  .nav-links.active li {
    width: 100%;
    display: block;
    height: auto;
  }

  .nav-links.active li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    padding: 12px 0;
    width: 100%;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-sizing: border-box;
  }

  .nav-links.active li a.active {
    border-bottom: 2px solid #ffffff !important;
    display: inline-block;
    padding-bottom: 8px;
    width: auto;
    font-weight: 700;
  }

  .nav-links.active .mobile-search-link {
    display: block !important;
    margin-top: 4px;
  }

  .nav-links.active .mobile-search-link a {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
  }
}

@media (max-width: 767px) {
  /* Hero Section Mobile */
  .hero {
    min-height: 500px;
    padding-bottom: 40px;
  }
  .hero-container-layout {
    padding-top: 100px;
  }
  .hero-search-bar {
    flex-direction: column;
    border-radius: 24px !important;
    padding: 20px 24px !important;
    gap: 16px !important;
    align-items: stretch !important;
    width: 100%;
    max-width: 100%;
  }
  .search-col {
    width: 100%;
    padding: 4px 0;
  }
  .search-divider {
    width: 100% !important;
    height: 1px !important;
    margin: 4px 0 !important;
    background-color: var(--border-light);
  }
  .search-goo-wrapper {
    width: 100% !important;
    height: 48px !important;
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }
  .search-button-goo-container {
    display: none !important;
  }
  .btn-search-circular {
    position: static !important;
    width: 100% !important;
    height: 48px !important;
    border-radius: 30px !important;
    background-color: #04A6E0 !important;
    transform: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .btn-search-circular i {
    font-size: 1.1rem;
  }

  /* Header Nav Mobile */
  .nav-phone {
    display: none;
  }
  .nav-cta {
    display: flex;
    flex: initial;
    gap: 16px;
    margin-right: 15px;
  }

  /* Hero Text Mobile */
  .hero-content h1 {
    font-size: 2.25rem;
    letter-spacing: -0.5px;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .hero-content .btn {
    font-size: 0.9rem;
    padding: 12px 24px !important;
  }

  /* Trust Bar Mobile */
  .trust-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Section Headers Mobile */
  .section-header h2 {
    font-size: 1.8rem !important;
  }

  /* Filter Chips Mobile */
  .filters-row {
    gap: 8px;
    margin-bottom: 25px;
  }
  .filter-chip {
    padding: 6px 14px;
    font-size: 0.82rem;
  }

  /* Homepage Gallery Mobile */
  .homepage-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 8px;
  }
  .gallery-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Package Cards Mobile */
  .package-card {
    flex: 0 0 280px;
    height: 350px;
  }

  /* Grids */
  .inc-exc-grid,
  .grid-2col {
    grid-template-columns: 1fr;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Mobile Bottom CTA */
  body {
    padding-bottom: 70px;
  }
  .mobile-cta-bar {
    display: grid;
  }

  /* Page Header Banners Mobile */
  .page-header h1 {
    font-size: 2rem;
  }
  .page-header p {
    font-size: 0.95rem;
  }

  /* Admin Panel Mobile */
  .admin-summary-cards {
    grid-template-columns: 1fr;
  }
  .admin-dashboard {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
  }
  .admin-content {
    padding: 20px;
  }

  /* Contact Page Mobile */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Policies Tabs Mobile */
  .policies-nav-container {
    flex-wrap: wrap;
    gap: 8px;
  }
  .policy-nav-link {
    font-size: 0.9rem;
    padding-bottom: 6px;
  }

  /* Contact Teaser Mobile */
  .contact-teaser-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-teaser-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .contact-teaser-card {
    padding: 20px;
  }

  /* Travel Stories Mobile */
  .travel-stories-container {
    padding: 0 40px;
  }
  .story-showcase-card {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .story-photo {
    height: 220px;
    width: 100%;
  }
  .story-text-content h3 {
    font-size: 1.3rem;
  }
  .story-text-content p {
    font-size: 0.9rem;
  }
  .nav-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  /* Why Chosen Mobile */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Custom Banner Mobile */
  .custom-banner-ctas {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .custom-banner-ctas .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .search-widget {
    grid-template-columns: 1fr;
  }
  .btn-search {
    grid-column: span 1;
  }
  .trust-container {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Hero Compact Mobile */
  .hero {
    min-height: 450px;
    padding-bottom: 30px;
  }
  .hero-content h1 {
    font-size: 1.75rem;
  }
  .hero-content .eyebrow {
    font-size: 0.75rem;
  }

  /* Gallery Grid Compact */
  .homepage-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px;
  }

  /* Dream Trip Compact */
  .dream-dest-card {
    height: 170px;
  }
  .dream-dest-name {
    font-size: 1.2rem;
  }

  /* Booking Card Compact */
  .sticky-booking-card {
    padding: 20px;
  }
  .price-val {
    font-size: 1.8rem;
  }

  /* Package Section Compact */
  .pkg-section {
    padding: 24px;
    border-radius: 12px;
  }
  .pkg-section-title {
    font-size: 1.4rem;
  }

  /* Modal Compact */
  .unlock-card {
    padding: 24px;
  }
  .unlock-card h3 {
    font-size: 1.4rem;
  }

  /* Contact Teaser Compact */
  .contact-teaser-cards {
    grid-template-columns: 1fr;
  }

  /* Travel Stories Compact */
  .travel-stories-container {
    padding: 0 20px;
  }
  .story-photo {
    height: 180px;
  }
}

/* Premium Dark Testimonial Slider Styles */
.stories-section-dark .story-showcase-card {
  background: #1e2029;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stories-section-dark .story-text-content h3 {
  color: #ffffff;
}

.stories-section-dark .story-text-content p {
  color: #cbd5e1;
}

.stories-section-dark .author-name {
  color: #ffffff;
}

.stories-section-dark .author-details {
  color: #94a3b8;
}

.stories-section-dark .p-dot {
  background-color: rgba(255, 255, 255, 0.2);
}

.stories-section-dark .p-dot.active {
  background-color: var(--accent-color);
}

.stories-section-dark .nav-arrow {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stories-section-dark .nav-arrow:hover {
  background-color: var(--accent-color);
  color: var(--text-dark);
}

/* Floating Social Media & WhatsApp Widget */
.floating-social-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.floating-btn.whatsapp {
  background-color: #25d366;
}

.floating-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

@media (max-width: 768px) {
  .floating-social-widget {
    bottom: 80px; /* Offset to clear mobile sticky CTA bar */
  }
}

/* Interactive cursor follow glow overlay for cards */
/* Interactive cursor follow glow overlay for cards */
.package-card::before,
.destination-tile::before,
.gallery-card::before,
.dream-dest-card::before,
.dream-explore-banner::before {
  display: none !important;
}

/* Custom Gallery Card styles for cursor shadow variables */
.gallery-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --shadow-x: 0px;
  --shadow-y: 10px;
}

.gallery-card:hover {
  box-shadow: var(--shadow-x) var(--shadow-y) 25px rgba(245, 180, 0, 0.35) !important;
}

/* Scroll entrance animations */
.animate-on-scroll {
  opacity: 0 !important;
  transform: translateY(40px) !important;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
  will-change: opacity, transform;
}

.animate-on-scroll.animated {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger delays for beautiful cascading layout flow */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s !important; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s !important; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s !important; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s !important; }

/* Scale animation version */
.animate-scale {
  opacity: 0 !important;
  transform: scale(0.96) !important;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
  will-change: opacity, transform;
}

.animate-scale.animated {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Animated Marker Highlight Text Animations */
.highlight-text {
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* Yellow highlight has been removed as per request */
.highlight-text::after {
  display: none;
}

/* Dream Trip Section Styles */
.dream-trip-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.dream-destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Individual Destination Card */
.dream-dest-card {
  position: relative;
  height: 220px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.dream-dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 4px #ffd800, 0 15px 30px rgba(0, 0, 0, 0.22) !important;
}

.dream-dest-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

/* Badge (Adventure, etc.) */
.dream-dest-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #ffd800;
  color: #000000;
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255, 216, 0, 0.35);
}

/* Price Range display */
.dream-dest-price {
  position: absolute;
  top: 16px;
  right: 16px;
  text-align: right;
  z-index: 2;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  font-family: var(--font-headings);
}

.dream-dest-price .price-val {
  display: block;
  font-weight: 800;
  font-size: 1rem;
}

.dream-dest-price .price-lbl {
  display: block;
  font-size: 0.7rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Card bottom title & duration */
.dream-dest-bottom {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: #ffffff;
}

.dream-dest-name {
  font-family: var(--font-headings);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 2px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  color: #ffffff !important;
}

.dream-dest-duration {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Right side Explore All Banner */
.dream-explore-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  min-height: 350px;
  --mouse-x: 50%;
  --mouse-y: 50%;
  --shadow-x: 0px;
  --shadow-y: 10px;
}

.dream-explore-banner:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-x) var(--shadow-y) 25px rgba(4, 166, 224, 0.35) !important;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(4, 166, 224, 0.25) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-sub {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-title {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffd800;
  margin: 4px 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.banner-sub-end {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Rounded explore button inside banner */
.btn-banner-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-banner-explore:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 166, 224, 0.4);
}

/* Media Queries for Responsiveness */
@media (max-width: 991px) {
  .dream-trip-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .dream-destinations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .dream-dest-card {
    height: 190px;
  }
  
  .banner-title {
    font-size: 2.4rem;
  }
  
  .banner-sub-end {
    font-size: 1.8rem;
  }
}

/* ==========================================
   DEALS & OFFERS COMPONENTS
   ========================================== */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.deal-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(22, 58, 122, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 4px #ffd800, 0 15px 30px rgba(0, 0, 0, 0.18) !important;
}

.deal-banner {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-color);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10;
}

.deal-image-box {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.deal-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.deal-card:hover .deal-image-box img {
  transform: scale(1.05);
}

.deal-countdown {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 12, 16, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
}

.deal-countdown-item {
  background: rgba(255,255,255,0.15);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.78rem;
}

.deal-countdown-item span {
  font-weight: 800;
  color: var(--accent-color);
}

.deal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.deal-meta {
  display: flex;
  gap: 15px;
  font-size: 0.82rem;
  color: var(--text-grey);
  font-weight: 600;
  margin-bottom: 10px;
}

.deal-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.deal-desc {
  font-size: 0.9rem;
  color: var(--text-grey);
  margin-bottom: 20px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.deal-pricing {
  margin-top: auto;
}

.deal-price-old {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-grey);
  display: block;
}

.deal-price-new {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
}

/* Custom Select Dropdown Styling */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}
.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  height: 48px;
  transition: all 0.2s;
}
.custom-select-trigger:hover, .custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--primary-color);
  background-color: white;
}

/* Specific overrides for Hero Search Bar selects */
.search-input-group .custom-select-trigger {
  border: none !important;
  outline: none !important;
  background-color: transparent;
  padding: 4px 0 12px 0 !important;
  height: auto;
  min-height: 36px;
  font-weight: 700;
}
.search-input-group .custom-select-trigger:hover, 
.search-input-group .custom-select-wrapper.open .custom-select-trigger,
.search-input-group .custom-select-trigger:focus {
  border: none !important;
  outline: none !important;
  background-color: transparent;
}
.custom-select-trigger .arrow {
  transition: transform 0.2s ease;
  font-size: 0.8rem;
  color: var(--text-grey);
}
.custom-select-wrapper.open .custom-select-trigger .arrow {
  transform: rotate(180deg);
}
.custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  max-height: 250px;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
}
.custom-select-wrapper.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-option {
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.custom-option:hover {
  background-color: #f1f5f9;
  color: var(--primary-color);
}
.custom-option.selected {
  background-color: rgba(27, 42, 74, 0.05);
  color: var(--primary-color);
  font-weight: 600;
}
