/* ============================================================
   GOKARNA VOYAGER — ULTRA-PREMIUM DESIGN SYSTEM
   ============================================================ */

:root {
  /* Colors */
  --bg-dark: #040d1a;
  --bg-dark-card: rgba(8, 24, 46, 0.72);
  --bg-dark-card-hover: rgba(12, 34, 64, 0.88);
  --bg-light: #f8fbfe;
  --bg-pearl: #eef5fb;

  --c-teal-glow: #00e5c9;
  --c-teal-dark: #009688;
  --c-teal-subtle: rgba(0, 229, 201, 0.12);
  --c-ocean-blue: #0284c7;
  --c-ocean-deep: #032b4f;
  --c-sunset: #ff6a3d;
  --c-amber: #ffa600;
  --c-gold: #ffb703;
  --c-wa: #25d366;
  --c-wa-hover: #1ebd5a;

  --text-primary: #0f1e2f;
  --text-secondary: #4a5d6e;
  --text-muted: #7b8f9f;
  --text-light: #ffffff;
  --text-light-sub: #b2c5d8;

  --border-subtle: rgba(0, 229, 201, 0.16);
  --border-light: rgba(15, 30, 47, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);

  /* Fonts */
  --font-display: 'Bodoni Moda', 'Times New Roman', serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacings & Radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(4, 13, 26, 0.06);
  --shadow-md: 0 12px 32px rgba(4, 13, 26, 0.10);
  --shadow-lg: 0 20px 50px rgba(4, 13, 26, 0.16);
  --shadow-glow: 0 0 35px rgba(0, 229, 201, 0.35);
  --shadow-wa: 0 8px 30px rgba(37, 211, 102, 0.38);

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & FOUNDATIONS
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--c-teal-glow);
  border-radius: 4px;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ============================================================
   TYPOGRAPHY & SECTION HEADERS
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-teal-subtle);
  color: #008775;
  border: 1px solid rgba(0, 229, 201, 0.32);
  padding: 6px 18px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-tag::before {
  content: '';
  width: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-amber));
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.section-title .accent {
  background: linear-gradient(135deg, #0284c7 0%, #00b8a4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 48px auto;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS & CTAs
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::before {
  left: 130%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--c-teal-glow) 0%, #00b4a4 100%);
  color: #000000;
  box-shadow: 0 8px 24px rgba(0, 229, 201, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 229, 201, 0.48);
}

.btn-wa {
  background: var(--c-wa);
  color: #000000;
  box-shadow: var(--shadow-wa);
}

.btn-wa:hover {
  background: var(--c-wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.52);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  color: #000000;
  border: 1px solid var(--border-glass);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(4, 13, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  width: 160px;
  height: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s ease, width 0.35s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}

.footer-logo-img {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.brand-logo span {
  color: var(--c-teal-glow);
}

.brand-logo .brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: #a0b6cc;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  color: #d1e2f2;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-teal-glow);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #ffffff;
}

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

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-call-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-call-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 380px;
  height: 100vh;
  background: #040d1a;
  backdrop-filter: blur(25px);
  padding: 90px 32px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.open {
  right: 0;
}

.mobile-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: #d1e2f2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 14px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(3, 14, 28, 0.72) 0%, rgba(4, 16, 32, 0.86) 100%),
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=85&fm=webp') center/cover no-repeat;
  color: #ffffff;
  padding: 140px 0 80px 0;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: 15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 201, 0.18) 0%, rgba(0, 229, 201, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.14) 0%, rgba(255, 106, 61, 0) 70%);
  filter: blur(70px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 229, 201, 0.12);
  border: 1px solid rgba(0, 229, 201, 0.35);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--c-teal-glow);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--c-teal-glow);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--c-teal-glow);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 201, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 229, 201, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 229, 201, 0); }
}

.hero-heading {
  font-family: var(--font-display);
  color: #ffffff !important;
  font-size: clamp(2.8rem, 5.6vw, 4.8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.3px;
  margin-bottom: 22px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.75), 0 1px 4px rgba(0,0,0,0.9);
}

.hero-heading .gold-grad {
  background: linear-gradient(135deg, #00e5c9 0%, #38bdf8 60%, #ff8a3d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #c4d7ea;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
}

.hero-stat-val {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
}

.hero-stat-val span {
  color: var(--c-teal-glow);
}

.hero-stat-lbl {
  font-size: 0.78rem;
  color: #8da4ba;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Quick Booking Card */
.hero-book-card {
  background: rgba(8, 24, 46, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-book-head {
  margin-bottom: 20px;
}

.hero-book-head h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.hero-book-head p {
  font-size: 0.85rem;
  color: #9cb5cb;
}

.quick-form-group {
  margin-bottom: 16px;
}

.quick-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #cce0f2;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-input, .quick-select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-md);
  color: #ffffff;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.quick-input:focus, .quick-select:focus {
  border-color: var(--c-teal-glow);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 15px rgba(0, 229, 201, 0.2);
}

.quick-select option {
  background: #08182e;
  color: #ffffff;
}

.quick-advance-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #a8c4db;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  margin-bottom: 20px;
}

/* ============================================================
   LIVE CONDITIONS TICKER
   ============================================================ */
.condition-ticker {
  background: #020812;
  border-bottom: 1px solid rgba(0, 229, 201, 0.15);
  padding: 12px 0;
  color: #b7cde1;
  font-size: 0.88rem;
  font-weight: 500;
}

.ticker-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-item strong {
  color: #ffffff;
}

.ticker-item .val-pill {
  background: rgba(0, 229, 201, 0.15);
  color: var(--c-teal-glow);
  padding: 2px 10px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.78rem;
}

/* ============================================================
   ABOUT & TRUST SECTION
   ============================================================ */
.about-section {
  padding: 128px 0;
  background: #ffffff;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

.about-badge-card {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: #040d1a;
  color: #ffffff;
  padding: 24px 28px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0, 229, 201, 0.3);
  box-shadow: var(--shadow-lg);
  max-width: 250px;
}

.about-badge-card .b-num {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--c-teal-glow);
  line-height: 1;
  margin-bottom: 6px;
}

.about-badge-card .b-text {
  font-size: 0.85rem;
  color: #b7cbdd;
  line-height: 1.4;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feat-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  transition: var(--transition);
}

.feat-item:hover {
  background: #ffffff;
  border-color: rgba(0, 229, 201, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 229, 201, 0.15) 0%, rgba(2, 132, 199, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feat-content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.feat-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ============================================================
   ACTIVITIES SECTION
   ============================================================ */
.activities-section {
  padding: 128px 0;
  background: var(--bg-pearl);
}

.acts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.act-card {
  background: #ffffff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  max-width: 380px;
}

.act-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 229, 201, 0.4);
}

.act-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.act-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(4, 13, 26, 0.78);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.act-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.act-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.act-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.act-book-link {
  color: #0284c7;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.act-book-link:hover {
  color: #00a08e;
}

/* ============================================================
   SIGHTSEEING & RADAR SECTION
   ============================================================ */
.sightseeing-section {
  padding: 128px 0;
  background: #ffffff;
}

.sight-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 700;
  background: var(--bg-light);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background: #040d1a;
  color: var(--c-teal-glow);
  border-color: #040d1a;
  box-shadow: var(--shadow-sm);
}

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

.sight-card {
  --cat-color: var(--c-ocean-blue);
  --cat-tint: rgba(2, 132, 199, 0.1);
  position: relative;
  background: #ffffff;
  border-radius: var(--r-lg);
  padding: 28px 24px 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.sight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--cat-color);
  opacity: 0.85;
}

.sight-card[data-category="beach"] {
  --cat-color: var(--c-sunset);
  --cat-tint: rgba(255, 106, 61, 0.1);
}

.sight-card[data-category="nature"] {
  --cat-color: #16a34a;
  --cat-tint: rgba(22, 163, 74, 0.1);
}

.sight-card[data-category="wildlife"] {
  --cat-color: var(--c-ocean-blue);
  --cat-tint: rgba(2, 132, 199, 0.1);
}

.sight-card[data-category="viewpoint"] {
  --cat-color: var(--c-gold);
  --cat-tint: rgba(255, 183, 3, 0.12);
}

.sight-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.sight-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.sight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 1.6rem;
  border-radius: var(--r-md);
  background: var(--cat-tint);
  transition: var(--transition);
}

.sight-card:hover .sight-icon {
  background: var(--cat-color);
  transform: scale(1.06) rotate(-4deg);
}

.sight-category {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--cat-color);
  background: var(--cat-tint);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.sight-card h4 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.sight-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 18px;
}

.sight-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-light);
}

.sight-details span {
  font-size: 0.76rem;
  color: var(--text-secondary);
  font-weight: 600;
  background: var(--bg-pearl);
  padding: 6px 12px;
  border-radius: var(--r-pill);
}

/* ============================================================
   PACKAGES & LIVE CALCULATOR SECTION
   ============================================================ */
.packages-section {
  padding: 128px 0;
  background: #040d1a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.pkg-ambient-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 201, 0.12) 0%, rgba(0, 229, 201, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

.packages-section .section-title {
  color: #ffffff;
}

.packages-section .section-desc {
  color: #9cb5cb;
}

.pkg-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 20px;
  margin-bottom: 60px;
  align-items: stretch;
}

.pkg-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(16px);
}

.pkg-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 201, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.pkg-card.featured {
  border: 2px solid var(--c-gold);
  background: linear-gradient(180deg, rgba(8, 30, 56, 0.85) 0%, rgba(4, 18, 36, 0.9) 100%);
  box-shadow: 0 0 35px rgba(255, 183, 3, 0.18);
}

.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--c-sunset) 0%, var(--c-amber) 100%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pkg-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.pkg-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 4px;
}

.pkg-time {
  font-size: 0.84rem;
  color: var(--c-teal-glow);
  font-weight: 600;
  margin-bottom: 20px;
}

.pkg-price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.pkg-curr {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.pkg-val {
  font-size: 3.1rem;
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  line-height: 1;
  font-family: var(--font-display);
}

.pkg-unit {
  font-size: 0.9rem;
  color: #8da4ba;
}

.pkg-split-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  color: #c4d7ea;
  margin-bottom: 24px;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pkg-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #d1e2f2;
}

.pkg-feat-item svg {
  color: var(--c-teal-glow);
  flex-shrink: 0;
}

/* ============================================================
   INTERACTIVE TRIP COST CALCULATOR
   ============================================================ */
.calc-container {
  background: rgba(8, 24, 46, 0.8);
  border: 1px solid rgba(0, 229, 201, 0.25);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.calc-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 8px;
}

.calc-subtitle {
  font-size: 0.92rem;
  color: #9cb5cb;
  margin-bottom: 24px;
}

.calc-field-group {
  margin-bottom: 20px;
}

.calc-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #c4d7ea;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-opt-btn {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-md);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.calc-opt-btn.active {
  background: var(--c-teal-glow);
  color: #040d1a;
  border-color: var(--c-teal-glow);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 229, 201, 0.35);
}

.calc-people-counter {
  display: flex;
  align-items: center;
  gap: 16px;
}

.counter-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.counter-btn:hover {
  background: var(--c-teal-glow);
  color: #040d1a;
}

.counter-val {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  min-width: 40px;
  text-align: center;
}

.calc-addon-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--transition);
}

.addon-label:hover {
  background: rgba(255, 255, 255, 0.08);
}

.addon-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.addon-price {
  font-weight: 700;
  color: var(--c-teal-glow);
  font-size: 0.88rem;
}

/* Calculator Receipt Side */
.calc-receipt {
  background: rgba(4, 13, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  padding: 28px;
}

.receipt-head {
  font-size: 1.15rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #b2c5d8;
  margin-bottom: 12px;
}

.receipt-row.total-row {
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  padding-top: 16px;
  margin-top: 16px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.receipt-row.total-row .total-amount {
  font-size: 1.8rem;
  color: var(--c-teal-glow);
  font-family: var(--font-heading);
}

.advance-footnote {
  margin-top: 12px;
  font-size: 0.78rem;
  color: #6f879c;
  text-align: center;
}

.advance-footnote span {
  color: #8fa6bd;
}

/* ============================================================
   BOOKING FORM SECTION
   ============================================================ */
.booking-section {
  padding: 128px 0;
  background: #ffffff;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.book-info-card {
  padding-right: 20px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px 0;
}

.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.policy-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 229, 201, 0.15);
  color: #008775;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.policy-text strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-primary);
}

.policy-text span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.book-form-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dbe5ee;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  background: #ffffff;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-control.error {
  border-color: #e63946;
}

.field-error {
  display: none;
  font-size: 0.78rem;
  color: #e63946;
  margin-top: 4px;
  font-weight: 600;
}

.field-error.show {
  display: block;
}

.form-advance-notice {
  background: rgba(255, 166, 0, 0.1);
  border: 1px solid rgba(255, 166, 0, 0.3);
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 0.82rem;
  color: #8c5b00;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: 128px 0;
  background: var(--bg-pearl);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

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

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-item.row-2 {
  grid-row: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 13, 26, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-caption {
  font-size: 0.92rem;
  font-weight: 700;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: 128px 0;
  background: #ffffff;
}

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

.review-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 229, 201, 0.4);
}

.review-stars {
  color: #ffa600;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-teal-glow);
}

.reviewer-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ SECTION (SEO ACCORDION)
   ============================================================ */
.faq-section {
  padding: 128px 0;
  background: var(--bg-pearl);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  text-align: left;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--c-teal-glow);
  color: #040d1a;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
}

.faq-item.active .faq-answer {
  max-height: 280px;
  padding: 0 26px 22px 26px;
}

.faq-answer p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   LOCATION & MAP SECTION
   ============================================================ */
.location-section {
  padding: 128px 0;
  background: #ffffff;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.loc-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.loc-card-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.loc-detail h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.loc-detail p, .loc-detail a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.loc-detail a:hover {
  color: #0284c7;
}

.map-wrapper {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  height: 440px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #030a14;
  color: #ffffff;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-brand span {
  color: var(--c-teal-glow);
}

.footer-tagline {
  font-size: 0.9rem;
  color: #8fa6bd;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.social-circle:hover {
  background: var(--c-teal-glow);
  color: #040d1a;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #9cb3c8;
}

.footer-links a:hover {
  color: var(--c-teal-glow);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: #72899f;
}

.footer-credit {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.8rem;
  color: #72899f;
}

.footer-credit a {
  color: var(--c-teal-glow);
  font-weight: 600;
}

.footer-credit a:hover {
  color: #ffffff;
}

/* ============================================================
   STICKY MOBILE CONVERSION BAR
   ============================================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(4, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  z-index: 999;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 12px;
}

.btn-mobile-call {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 80px;
  right: 24px;
  background: #040d1a;
  color: #ffffff;
  border: 1px solid var(--c-teal-glow);
  padding: 14px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-notice.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-grid, .booking-grid, .location-grid, .calc-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-badge-card {
    right: 10px;
    bottom: -15px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-wrap .nav-call-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-section {
    padding: 110px 0 60px 0;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 65px;
  }

  .about-section,
  .activities-section,
  .sightseeing-section,
  .packages-section,
  .booking-section,
  .gallery-section,
  .testimonials-section,
  .faq-section,
  .location-section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .about-section,
  .activities-section,
  .sightseeing-section,
  .packages-section,
  .booking-section,
  .gallery-section,
  .testimonials-section,
  .faq-section,
  .location-section {
    padding: 52px 0;
  }
}


/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVBAR SCROLLED STATE IMPROVED
   ============================================================ */
.navbar {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 14px 0;
}

.navbar.scrolled .brand-logo-img {
  width: 128px;
}

/* ============================================================
   HERO HEADING — FULL VISIBLE OVERRIDE
   ============================================================ */
.hero-section h1,
.hero-section .hero-heading {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.85);
}

.hero-section .hero-heading .gold-grad {
  background: linear-gradient(120deg, #00e5c9 0%, #38bdf8 50%, #ffa040 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 3px 16px rgba(0,229,201,0.45));
}

/* ============================================================
   ACTIVITIES & PACKAGE CARD REFINED HOVER BORDER GLOW
   ============================================================ */
.act-card:hover {
  border-color: rgba(0, 229, 201, 0.5);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 229, 201, 0.2);
}

.pkg-card.featured {
  position: relative;
}

.pkg-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================================
   BOOKING FORM INPUT REFINEMENTS
   ============================================================ */
.form-control::placeholder {
  color: #a0b6c8;
  font-size: 0.9rem;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

/* ============================================================
   GALLERY ITEM REFINED HOVER GLOW
   ============================================================ */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 2px solid rgba(0, 229, 201, 0);
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  border-color: rgba(0, 229, 201, 0.5);
}

/* ============================================================
   CONDITION TICKER ICON PULSE
   ============================================================ */
.ticker-item .val-pill {
  animation: shimmer 3s ease-in-out infinite;
}

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

/* ============================================================
   SECTION TRANSITIONS & VISUAL SEPARATION
   ============================================================ */
.about-section,
.gallery-section,
.testimonials-section,
.booking-section,
.location-section,
.faq-section {
  position: relative;
}

/* Section dividers via pseudo border-top subtle gradient */
.activities-section,
.sightseeing-section,
.packages-section,
.faq-section {
  border-top: 1px solid var(--border-light);
}

.packages-section {
  border-top: none;
}

/* ============================================================
   HERO SCROLL INDICATOR (ANIMATED)
   ============================================================ */
.hero-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}

.hero-scroll-cue svg {
  width: 22px;
  height: 22px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ============================================================
   RESPONSIVE - HERO MOBILE IMPROVEMENTS
   ============================================================ */
@media (max-width: 768px) {
  .hero-heading {
    font-size: clamp(2.1rem, 7.5vw, 3rem) !important;
    letter-spacing: -0.3px;
  }

  .hero-book-card {
    margin-top: 0;
    padding: 24px 20px;
  }

  .calc-container {
    padding: 24px 20px;
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pkg-cards-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item.span-2 {
    grid-column: span 2;
  }

  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .map-wrapper {
    height: 300px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

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

  .act-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .sight-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}
