/* ==========================================================================
   Meghna Tour Agency - Modern Luxury Travel & Holiday Package Design System
   Hamilton, NZ • Phone: 020 4314 313 • 12 Cole Thomas Place
   Color Palette: Ocean Emerald (#0d9488), Deep Navy (#061e29), Warm Gold (#f59e0b)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary-navy: #061e29;
  --primary-navy-light: #0d2938;
  --teal-emerald: #0d9488;
  --teal-emerald-hover: #0f766e;
  --teal-emerald-light: #14b8a6;
  --teal-emerald-soft: #f0fdf4;
  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --accent-gold-light: #fef3c7;
  --accent-rose: #f43f5e;
  --accent-rose-light: #ffe4e6;
  --bg-slate: #f8fafc;
  --surface-white: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.92);
  --border-light: #e2e8f0;
  --border-teal: rgba(13, 148, 136, 0.2);
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(6, 30, 41, 0.15);
  --shadow-teal: 0 12px 30px -5px rgba(13, 148, 136, 0.3);
  
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-slate);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  line-height: 1.25;
  font-weight: 700;
}

.text-gold { color: var(--accent-gold); }
.text-teal { color: var(--teal-emerald); }
.text-rose { color: var(--accent-rose); }
.bg-teal { background-color: var(--teal-emerald); color: var(--surface-white); }
.bg-navy { background-color: var(--primary-navy); color: var(--surface-white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-emerald), #0f766e);
  color: var(--surface-white);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0f766e, #115e59);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(13, 148, 136, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #d97706);
  color: var(--primary-navy);
  font-weight: 700;
  box-shadow: 0 10px 20px -5px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f59e0b, #b45309);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--surface-white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  border-color: var(--surface-white);
  background: var(--surface-white);
  color: var(--primary-navy);
}

.btn-outline-teal {
  border: 2px solid var(--teal-emerald);
  color: var(--teal-emerald);
}

.btn-outline-teal:hover {
  background: var(--teal-emerald);
  color: var(--surface-white);
}

.btn-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.btn-icon:hover {
  border-color: var(--teal-emerald);
  color: var(--teal-emerald);
  transform: scale(1.05);
}

/* Header & Top Bar */
.top-bar {
  background: linear-gradient(90deg, #04121a, var(--primary-navy), #0a2533);
  color: var(--surface-white);
  font-size: 0.85rem;
  padding: 0.55rem 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;
}

.announcement {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.badge-pulse {
  background: var(--accent-rose);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(244, 63, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244, 63, 94, 0); }
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.9;
  transition: var(--transition-fast);
}

.top-link:hover {
  opacity: 1;
  color: var(--accent-gold);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1.5rem;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo-img {
  height: 48px;
  width: auto;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-navy);
  padding: 0.4rem 0;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--teal-emerald);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--teal-emerald);
}

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

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.wishlist-btn-badge {
  position: relative;
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-rose);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--surface-white);
}

.hamburger-btn {
  display: none;
  font-size: 1.4rem;
  color: var(--primary-navy);
  padding: 0.4rem;
}

/* Sub-page Hero Section */
.page-hero-section {
  position: relative;
  padding: 4.5rem 0 4rem;
  background: linear-gradient(135deg, #04141c 0%, #061e29 60%, #0d2938 100%);
  color: var(--surface-white);
  text-align: center;
  overflow: hidden;
}

.page-hero-section::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.35) 0%, rgba(13, 148, 136, 0) 70%);
  pointer-events: none;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--surface-white);
  margin-bottom: 0.8rem;
}

.page-subtitle {
  font-size: 1.15rem;
  color: rgba(248, 250, 252, 0.85);
  max-width: 680px;
  margin: 0 auto;
}

/* Hero Section (Home) */
.hero-section {
  position: relative;
  min-height: 600px;
  background: var(--primary-navy);
  color: var(--surface-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 4rem 0 7rem;
}

.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
}

.hero-slider-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 30, 41, 0.82) 0%, rgba(6, 30, 41, 0.65) 50%, rgba(6, 30, 41, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 148, 136, 0.25);
  border: 1px solid rgba(20, 184, 166, 0.4);
  color: var(--teal-emerald-light);
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--surface-white);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(248, 250, 252, 0.88);
  font-weight: 400;
  margin-bottom: 2rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Search Engine Dock */
.search-dock-wrapper {
  position: relative;
  z-index: 30;
  margin-top: -4.5rem;
  padding: 0 1.25rem;
}

.search-dock {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.search-dock-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-right: 1px solid var(--border-light);
  padding-right: 1rem;
}

.field-group:last-of-type {
  border-right: none;
}

.field-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.field-label i {
  color: var(--teal-emerald);
}

.field-select, .field-input {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-navy);
  padding: 0.3rem 0;
  width: 100%;
  cursor: pointer;
}

.field-select:focus, .field-input:focus {
  outline: none;
}

.search-submit-btn {
  height: 54px;
  padding: 0 2rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* Exclusive Bonus Sale Banner */
.sale-banner-section {
  padding: 5rem 0 3rem;
}

.sale-card {
  background: linear-gradient(135deg, #04141c 0%, #0d2938 60%, #073b4c 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 40px rgba(6, 30, 41, 0.25);
  padding: 3rem;
  color: var(--surface-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.sale-content-left h2 {
  color: var(--surface-white);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.sale-content-left p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.timer-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.timer-unit {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 70px;
}

.timer-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.timer-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.7);
}

.sale-card-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.sale-card-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sale-badge-corner {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent-rose);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
}

/* Section Headers & Filter Pills */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.section-title-wrap .sub-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal-emerald);
  margin-bottom: 0.4rem;
  display: block;
}

.section-title-wrap h2 {
  font-size: 2.2rem;
  font-weight: 800;
}

.filter-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pill-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--surface-white);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.pill-btn:hover, .pill-btn.active {
  background: var(--teal-emerald);
  color: var(--surface-white);
  border-color: var(--teal-emerald);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

/* Package Cards & Grid */
.packages-section {
  padding: 4rem 0 5rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2rem;
}

.package-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-teal);
}

.card-gallery {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.package-card:hover .card-gallery img {
  transform: scale(1.06);
}

.card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 5;
}

.badge-tag {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.badge-tag.hot {
  background: var(--accent-rose);
  color: #fff;
}

.badge-tag.flight {
  background: rgba(6, 30, 41, 0.82);
  color: #fff;
  backdrop-filter: blur(6px);
}

.card-wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1rem;
  z-index: 5;
  transition: var(--transition-fast);
}

.card-wishlist-btn:hover, .card-wishlist-btn.saved {
  background: var(--accent-rose);
  color: #fff;
}

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

.card-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.meta-item i {
  color: var(--teal-emerald);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-navy);
  line-height: 1.35;
}

.bonus-pill {
  background: var(--accent-gold-light);
  color: #b45309;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  width: fit-content;
}

.card-highlights {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.card-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.card-highlights li i {
  color: var(--teal-emerald);
  margin-top: 0.2rem;
}

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

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

.original-price {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.final-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
}

.final-price small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Destinations Showcase */
.destinations-section {
  padding: 4rem 0 5rem;
  background: var(--surface-white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dest-card {
  position: relative;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

.dest-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 30, 41, 0.1) 30%, rgba(6, 30, 41, 0.85) 100%);
  transition: var(--transition-fast);
}

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

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  z-index: 10;
  color: var(--surface-white);
}

.dest-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--surface-white);
  margin-bottom: 0.2rem;
}

.dest-tag {
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.85);
  margin-bottom: 0.8rem;
}

.dest-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
}

/* Collections Grid */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.collection-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.collection-img-wrapper {
  position: relative;
  height: 200px;
}

.collection-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card-body {
  padding: 1.5rem;
}

/* Contact Page Cards & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem 0;
}

.info-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: var(--teal-emerald-soft);
  color: var(--teal-emerald);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

/* Features Grid */
.features-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-slate) 0%, var(--teal-emerald-soft) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-emerald);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--teal-emerald-soft);
  color: var(--teal-emerald);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Reviews */
.reviews-section {
  padding: 5rem 0;
  background: var(--surface-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--bg-slate);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars { color: var(--accent-gold); margin-bottom: 1rem; }
.review-text { font-size: 0.95rem; color: var(--text-dark); font-style: italic; margin-bottom: 1.5rem; }
.reviewer { display: flex; align-items: center; gap: 1rem; }
.reviewer-img { width: 48px; height: 48px; border-radius: var(--radius-full); object-fit: cover; }

/* Modals & Drawers */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 30, 41, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-container {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.95);
  transition: var(--transition-normal);
}

.modal-overlay.active .modal-container { transform: scale(1); }

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--surface-white);
  z-index: 10;
}

.modal-close-btn {
  font-size: 1.25rem;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover { background: var(--bg-slate); color: var(--primary-navy); }
.modal-body { padding: 2rem; }

.package-modal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.modal-gallery-main {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: 1rem;
}

.modal-gallery-thumbs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.thumb-img {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-fast);
}

.thumb-img.active, .thumb-img:hover { border-color: var(--teal-emerald); }

.booking-card-sticky {
  background: var(--bg-slate);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
}

/* Wishlist Drawer */
.wishlist-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100%;
  background: var(--surface-white);
  box-shadow: var(--shadow-lg);
  z-index: 2500;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.wishlist-drawer.active { right: 0; }

.wishlist-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wishlist-body {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wishlist-item {
  display: flex;
  gap: 1rem;
  padding: 0.8rem;
  background: var(--bg-slate);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.wishlist-item img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.wishlist-item-info { flex: 1; }
.wishlist-item-info h5 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.wishlist-item-info span { font-size: 0.85rem; font-weight: 700; color: var(--teal-emerald); }

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toast {
  background: var(--primary-navy);
  color: var(--surface-white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  border-left: 4px solid var(--teal-emerald);
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Footer */
.footer {
  background: var(--primary-navy);
  color: var(--surface-white);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand p {
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.95rem;
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.footer-title {
  color: var(--surface-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 0.3rem;
}

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

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface-white);
  font-size: 0.9rem;
}

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

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

/* Media Queries */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .search-dock-grid { grid-template-columns: 1fr 1fr; }
  .sale-card { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .package-modal-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger-btn { display: block; }
  .hero-title { font-size: 2.2rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .search-dock-grid { grid-template-columns: 1fr; }
  .field-group { border-right: none; border-bottom: 1px solid var(--border-light); padding-bottom: 0.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Floating Sticky Action Buttons (WhatsApp & Call) */
.floating-actions-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2800;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-end;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: var(--transition-normal);
  position: relative;
  text-decoration: none;
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-btn.whatsapp:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
}

.floating-btn.call {
  background: linear-gradient(135deg, var(--accent-gold), #d97706);
  color: var(--primary-navy);
}

.floating-btn.call:hover {
  background: linear-gradient(135deg, #f59e0b, #b45309);
  color: #ffffff;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.45);
}

.floating-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-navy);
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
  pointer-events: none;
}


/* Social Media Icons (Header & Footer) */
.top-socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0.5rem;
  padding-left: 0.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--surface-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--teal-emerald);
  color: #ffffff;
  transform: translateY(-2px);
}

.social-icon.facebook:hover { background: #1877f2; }
.social-icon.instagram:hover { background: #e4405f; }
.social-icon.youtube:hover { background: #ff0000; }
.social-icon.tiktok:hover { background: #000000; }

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}


/* FAQ Accordion Section */
.faq-section {
  padding: 5rem 0;
  background: var(--bg-slate);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

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

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

.faq-question i {
  color: var(--teal-emerald);
  transition: transform 0.3s ease;
  font-size: 0.95rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

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



