:root {
  --pink: #d46584;
  --teal: #24adaf;
  --yellow: #f5c842;
  --orange: #e85d1a;
  --green: #2a9d3f;
  --cream: #fdf6ec;
  --dark: #0e1117;
  --white: #fff;
  --font-display: 'Syne', sans-serif;
  --font-malayalam: 'Noto Sans Malayalam', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--dark);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

/* Custom cursor */
#c-dot,
#c-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#c-dot {
  width: 8px;
  height: 8px;
  background: var(--pink);
}

#c-ring {
  width: 44px;
  height: 44px;
  border: 2px solid var(--pink);
  background: transparent;
  transition: transform 0.2s, background 0.2s;
}

#c-ring.hover {
  transform: translate(-50%, -50%) scale(1.8);
  background: rgba(212, 101, 132, 0.15);
}

@media (pointer: coarse) {

  #c-dot,
  #c-ring {
    display: none !important;
  }
}

/* Navbar */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s ease, padding 0.35s ease;
  padding: 1rem 0;
}

#navbar.scrolled {
  background: var(--teal);
  backdrop-filter: blur(12px);
  padding: 0.65rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;
}

.logo-biyyam {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--yellow);
  text-transform: uppercase;
}

.logo-malayalam {
  font-family: var(--font-malayalam);
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.85);
  text-decoration: none;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-book {
  background: var(--pink);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-book:hover {
  background: #c0546f;
  transform: scale(1.04);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--pink);
}

.mobile-book {
  background: var(--pink) !important;
  color: white !important;
  padding: 0.75rem 2.5rem;
  border-radius: 999px;
  font-size: 1rem !important;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .btn-book {
    display: none;
  }

  .logo-malayalam {
    font-size: 1rem;
  }
}

/* ===== HERO – FIXED (no black flashes, no mobile animation, full coverage) ===== */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #f6f0d7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  background: #f6f0d7;
}

#heroFramesCanvas,
.hero-fallback,
.hero-mobile {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

#heroFramesCanvas {
  display: block;
  opacity: 0;
  z-index: 2;
}

.hero-fallback {
  object-fit: cover;
  opacity: 1;
  z-index: 1;
}

.hero-mobile {
  display: none;
  z-index: 1;
}

#hero.is-ready #heroFramesCanvas {
  opacity: 1;
}
#hero.is-ready .hero-fallback {
  opacity: 0;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 90%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  color: white;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-wa-solid {
  background: #25d366;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-wa-solid:hover {
  background: #1fb155;
  transform: scale(1.05);
}

@media (max-width: 767px) {
  #heroFramesCanvas,
  .hero-fallback {
    display: none !important;
  }

  .hero-mobile {
    display: block !important;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  #hero {
    height: 80vh;
    margin: 0;
    padding: 0;
  }

  .hero-canvas-wrap {
    overflow: hidden;
  }
}

/* Brand Statement */
#brand {
  background: var(--cream);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.overline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.split-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.body-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--pink);
  line-height: 1;
}

.stat p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.2rem;
}

.photo-stack {
  position: relative;
}

.photo-stack img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  transform: rotate(2deg);
  display: block;
  position: relative;
  z-index: 1;
}

.photo-shadow {
  position: absolute;
  inset: 0;
  background: var(--teal);
  border-radius: 1.5rem;
  transform: rotate(-2deg) translate(12px, 12px);
  z-index: 0;
}

@media (max-width: 768px) {
  .brand-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Activities Toggle */
#activities {
  background: var(--dark);
  padding: 6rem 0;
  position: relative;
}

.section-heading {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.underline-span {
  display: inline-block;
  height: 4px;
  width: 80px;
  background: var(--pink);
  border-radius: 2px;
  margin-top: 0.5rem;
}

.toggle-wrap {
  width: 300px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  margin: 2rem auto 3.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.toggle-wrap .toggle-label {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.toggle-wrap .toggle-label.active {
  color: #fff;
}

.toggle-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toggle-indicator.water {
  transform: translateX(calc(100% + 4px));
  background: linear-gradient(135deg, var(--teal), #0d8f91);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.activity-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
  cursor: pointer;
}

.activity-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border-color: var(--pink);
}

.activity-card.water-card:hover {
  border-color: var(--teal);
}

.card-img {
  height: 200px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.activity-card:hover .card-img img {
  transform: scale(1.08);
}

.card-body {
  padding: 1.4rem;
}

.card-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--yellow);
}

.price .rupee {
  font-size: 1.2rem;
  vertical-align: super;
}

.price .duration {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.3rem;
}

/* Park Info */
#park-info {
  background: var(--dark);
  padding: 6rem 0;
  position: relative;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.info-card {
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: linear-gradient(135deg, var(--teal), #0d8f91);
}

.info-card:nth-child(2) {
  background: linear-gradient(135deg, var(--pink), #c0546f);
}

.info-card:nth-child(3) {
  background: linear-gradient(135deg, var(--orange), #c44e12);
}

.info-card::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.info-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-card-title svg {
  width: 22px;
  height: 22px;
  stroke: var(--yellow);
  stroke-width: 1.8;
  fill: none;
}

.timing-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 0;
}

.timing-row:last-of-type {
  border-bottom: none;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  opacity: 0.9;
  padding: 0.35rem 0;
}

.check-item::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23f5c842' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.get-dir-link {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: inline-block;
  width: fit-content;
  transition: 0.2s;
  color: white;
  text-decoration: none;
}

.get-dir-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

.stats-strip {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  margin-top: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1rem;
}

.stat-cell .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1.2;
}

.stat-cell .stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stats-strip .stat-cell:nth-child(2) {
    border-right: none;
  }
}

/* Park Rules */
#rules {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.rules-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rules-scene {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}

.rules-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8, 11, 15, 0.92) 0%, rgba(8, 11, 15, 0.85) 45%, rgba(8, 11, 15, 0.3) 70%, rgba(8, 11, 15, 0.05) 100%);
}

.rules-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55% 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  width: 100%;
  gap: 2rem;
}

.rules-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: white;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}

.rules-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.875rem;
  transition: background 0.3s, transform 0.3s;
}

.rule-item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(6px);
}

.rule-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--pink);
  flex-shrink: 0;
  width: 2.5rem;
  text-align: right;
  line-height: 1;
  margin-top: 2px;
}

.rule-item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  display: block;
  margin-bottom: 0.25rem;
}

.rule-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .rules-content {
    grid-template-columns: 1fr;
    padding: 4rem 1.25rem;
  }

  .rules-overlay {
    background: linear-gradient(to bottom, rgba(8, 11, 15, 0.92) 0%, rgba(8, 11, 15, 0.88) 100%);
  }

  .rule-item {
    gap: 0.75rem;
    padding: 0.9rem 1rem;
  }

  .rule-num {
    font-size: 1.2rem;
    width: 2rem;
    margin-top: 1px;
  }

  .rule-item strong {
    font-size: 0.9rem;
  }

  .rule-item p {
    font-size: 0.8rem;
  }
}

/* Kids Zone */
#kids {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}

.kids-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 550px;
}

.kids-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}

.kids-overline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--dark);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.kids-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.kids-body {
  font-size: 1.05rem;
  color: var(--dark);
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.kids-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.kids-tags span {
  background: var(--dark);
  color: var(--yellow);
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

.kids-img {
  position: relative;
  overflow: hidden;
}

.kids-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .kids-grid {
    grid-template-columns: 1fr;
  }

  .kids-text {
    padding: 3rem 2rem;
  }
}

/* Marquee */
.marquee-section {
  background: var(--pink);
  height: 72px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  animation: marquee-left 25s linear infinite;
}

.marquee-track .sep {
  color: var(--yellow);
  margin: 0 1rem;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Visitor Tips */
#tips {
  background: var(--teal);
  padding: 7rem 0;
  position: relative;
}

.tips-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 500px;
  margin: 0.75rem auto 3.5rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tip-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(8px);
  transition: transform 0.35s;
}

.tip-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.2);
}

.tip-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  margin-bottom: 1rem;
}

.tip-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.tip-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Location */
#location {
  background: var(--dark);
  padding: 6rem 0;
}

.location-inner {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: center;
}

.location-map {
  height: 460px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 2px solid rgba(212, 101, 132, 0.3);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: white;
  line-height: 1.2;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--pink);
}

.location-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-teal,
.btn-whatsapp {
  display: block;
  text-align: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-teal {
  background: var(--teal);
  color: white;
}

.btn-teal:hover {
  background: #1d9496;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1fb155;
  transform: translateY(-3px);
}

.social-row {
  display: flex;
  gap: 0.75rem;
}

.social-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.social-circle:hover {
  border-color: var(--pink);
  color: var(--pink);
}

@media (max-width: 768px) {
  .location-inner {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 280px;
  }
}

/* Activity Details Swiper */
#activity-details {
  background: var(--cream);
  padding: 6rem 0;
  overflow: hidden;
}

.ad-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.ad-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.75rem;
}

.ad-track-wrap {
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ad-slide {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 480px;
}

.ad-slide-bg {
  position: absolute;
  inset: 0;
}

.ad-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 11, 15, 0.9) 0%, rgba(8, 11, 15, 0.3) 60%, transparent 100%);
}

.ad-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ad-tag {
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
}

.ad-tag.outdoor {
  background: rgba(212, 101, 132, 0.25);
  color: var(--pink);
  border: 1px solid rgba(212, 101, 132, 0.4);
}

.ad-tag.water {
  background: rgba(36, 173, 175, 0.25);
  color: var(--teal);
  border: 1px solid rgba(36, 173, 175, 0.4);
}

.ad-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: white;
  line-height: 1.1;
}

.ad-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 380px;
}

.ad-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--yellow);
}

.ad-book {
  display: inline-block;
  background: var(--pink);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  width: fit-content;
  transition: all 0.3s;
  margin-top: 0.25rem;
}

.ad-book:hover {
  background: #c0546f;
  transform: translateY(-2px);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--pink);
}

.swiper-pagination-bullet-active {
  background: var(--pink);
}

@media (max-width: 768px) {
  .ad-slide {
    height: 400px;
  }

  .ad-name {
    font-size: 1.4rem;
  }
}

/* Footer */
#footer {
  background: #080b0f;
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-bg-logo img {
  width: clamp(280px, 70vw, 1000px);
  height: auto;
  object-fit: contain;
}

.footer-bg-logo img {
  filter: grayscale(100%) contrast(120%);
}

@media (max-width: 768px) {
  .footer-bg-logo img {
    width: 85vw;
  }

  .footer-bg-logo {
    opacity: 0.025;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-col .footer-logo-top {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--yellow);
}

.footer-col .footer-logo-main {
  font-family: var(--font-malayalam);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--pink);
}

.newsletter-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-row input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  flex: 1;
  outline: none;
}

.newsletter-row button {
  background: var(--pink);
  color: #fff;
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4rem;
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  background: var(--dark);
  border: 2px solid #25d366;
  color: #25d366;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: float-wa 3s ease-in-out infinite;
  transition: all 0.3s;
}

.float-wa:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-4px);
}

@keyframes float-wa {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Universal mobile fixes */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  body {
    overflow-x: hidden;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta button {
    width: min(280px, 100%);
  }
}

/* User Requested Mobile Fixes */
@media screen and (max-width: 767px) {
  /* 2-col grids to 1-col */
  .brand-grid, .tips-grid, .location-inner, .rules-content, .kids-grid, .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  /* Activity cards grid */
  .cards-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  /* Hero CTA buttons stack and center */
  .hero-cta {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    gap: 1rem;
  }
  .hero-cta > a, .hero-cta > button {
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
    box-sizing: border-box;
  }

  /* Park info cards */
  .info-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  /* Stats strip */
  .stats-strip {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  /* Rules section text side */
  .rules-text-side {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Floating WhatsApp button */
  .float-wa {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .float-wa .wa-text {
    display: none !important;
  }
  .float-wa svg {
    margin: 0 !important;
    width: 24px !important;
    height: 24px !important;
  }

  /* Section padding */
  section > div, .section-inner, .cards-grid, .info-grid, .stats-strip, .brand-grid, .tips-grid {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    box-sizing: border-box !important;
  }
  
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}

/* Extra small screen navbar fixes */
@media screen and (max-width: 360px) {
  .nav-inner {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    gap: 0.5rem !important;
  }
  .logo-img {
    max-width: 140px !important;
    height: auto !important;
  }
}