/* ── CUSTOM FONTS ── */
@font-face {
  font-family: 'OvercameDemo';
  src: url('../assets/fonts/OvercameDemoBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Moliga';
  src: url('../assets/fonts/Moliga DEMO.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avengenz';
  src: url('../assets/fonts/Avengenz.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cream Cake';
  src: url('../Cream Cake Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ── PREMIUM VARIABLES ── */
:root {
  --orange: #E63E00;
  --sun: #F7931A;
  --yellow: #FFD700;
  --cream: #FDFBF7;
  --sand: #F2EFE9;
  --deep: #0D0D12;
  --bark: #1A1A24;
  --smoke: #6E6E78;
  --white: #FFFFFF;
  --black: #050508;

  --glass-bg-dark: rgba(255, 255, 255, 0.03);
  --glass-border-dark: rgba(255, 255, 255, 0.06);
  --glass-bg-light: rgba(255, 255, 255, 0.6);
  --glass-border-light: rgba(255, 255, 255, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--sun), var(--yellow));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── LOADING SCREEN ── */
#loader {
  position: fixed;
  inset: 0;
  background: #050508;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  width: 180px;
  height: auto;
  border-radius: 10px;
  animation: loaderPulse 1s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  from {
    opacity: 0.6;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--sun));
  border-radius: 3px;
  animation: loaderFill 1.4s ease forwards;
}

@keyframes loaderFill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--sun), var(--orange));
  border-radius: 4px;
}

/* ── LOGO ── */
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-wrap:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.main-logo {
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
  padding: 8px 16px;
  background: rgba(5, 5, 8, 0.95);
  border-bottom: 1px solid rgba(230, 62, 0, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--sun));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: var(--white);
  border: none;
  padding: 10px 26px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(230, 62, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230, 62, 0, 0.5);
}

.nav-cta:hover::before {
  left: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── MOBILE DRAWER ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background: rgba(5, 5, 8, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
  animation: drawerFade 0.4s ease both;
}

@keyframes drawerFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--sun);
  transform: translateY(-3px);
}

.mobile-menu .close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.mobile-menu .close-btn:hover {
  transform: rotate(90deg) scale(1.1);
  color: var(--sun);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: bgZoomFade 24s infinite ease-in-out;
}

.hero-slideshow .slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slideshow .slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slideshow .slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slideshow .slide:nth-child(4) {
  animation-delay: 18s;
}

@keyframes bgZoomFade {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  10% {
    opacity: 1;
    transform: scale(1.02);
  }

  25% {
    opacity: 1;
    transform: scale(1);
  }

  35% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5, 5, 8, 0.75) 0%, rgba(26, 13, 5, 0.65) 50%, rgba(5, 5, 8, 0.85) 100%);
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: drift 12s ease-in-out infinite alternate;
}

.orb1 {
  width: 600px;
  height: 600px;
  background: rgba(230, 62, 0, 0.25);
  top: -150px;
  right: -100px;
}

.orb2 {
  width: 500px;
  height: 500px;
  background: rgba(247, 147, 26, 0.2);
  bottom: -150px;
  left: -100px;
  animation-delay: -4s;
}

.orb3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 215, 0, 0.15);
  top: 40%;
  left: 30%;
  animation-delay: -8s;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -40px) scale(1.1);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 20px 140px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(230, 62, 0, 0.1);
  border: 1px solid rgba(230, 62, 0, 0.3);
  color: var(--sun);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-bottom: 28px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title {
  font-family: 'OvercameDemo', 'Bangers', cursive;
  font-size: clamp(4rem, 14vw, 10rem);
  letter-spacing: 6px;
  line-height: 0.9;
  color: #FFD700;
  text-shadow: 0 0 40px rgba(230, 62, 0, 0.5), 0 4px 20px rgba(247, 147, 26, 0.3);
  margin-bottom: 24px;
  filter: drop-shadow(0 10px 30px rgba(230, 62, 0, 0.2));
  animation: fadeUp 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-sub-text {
  font-size: clamp(2rem, 7vw, 4.5rem);
  letter-spacing: 8px;
  color: var(--white);
  opacity: 0.9;
  margin-top: 10px;
}

.hero-tagline {
  font-family: 'Cream Cake', cursive;
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: bold;
  font-style: normal;
  color: var(--sun);
  margin-bottom: 12px;
  animation: fadeUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-tagline2 {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 46px;
  font-weight: 300;
  letter-spacing: 0.5px;
  animation: fadeUp 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: var(--white);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(230, 62, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(230, 62, 0, 0.6);
}

.btn-primary:hover::after {
  transform: rotate(45deg) translateY(100%);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--sun);
  background: rgba(247, 147, 26, 0.1);
  color: var(--sun);
  transform: translateY(-4px);
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  background: rgba(5, 5, 8, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
  padding: 24px 44px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-family: 'Bebas Neue', 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--sun), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── SECTION COMMONS ── */
section {
  padding: 60px 60px;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(230, 62, 0, 0.08);
}

.section-title {
  font-family: 'OvercameDemo', 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 20px;
}

.section-sub {
  color: var(--smoke);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
  font-weight: 400;
}

/* ── SERVICES ── */
#services {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

#services .section-title {
  color: var(--white);
}

#services .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.svc-card {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border-dark);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.svc-card:hover {
  border-color: rgba(230, 62, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(230, 62, 0, 0.15), rgba(247, 147, 26, 0.15));
  border: 1px solid rgba(247, 147, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.4s;
}

.svc-card:hover .svc-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--orange), var(--sun));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(230, 62, 0, 0.3);
}

.svc-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.svc-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.wonderla-badge {
  max-width: 1140px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(230, 62, 0, 0.08));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 24px 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.wonderla-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.4);
}

.wb-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.3));
}

.wb-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.wb-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ── PACKAGES ── */
#packages {
  background: var(--deep);
  position: relative;
}

#packages .section-title {
  color: var(--white);
}

#packages .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.packages-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  gap: 32px;
  max-width: 1200px;
  margin-inline: auto;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pkg-card {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-dark);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(230, 62, 0, 0.4);
}

.pkg-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.pkg-img-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.pkg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 18, 1) 0%, transparent 60%);
}

.pkg-card:hover .pkg-img-inner {
  transform: scale(1.1);
}

.pkg-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(5, 5, 8, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--sun);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 2;
}

.pkg-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.pkg-dest {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.pkg-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pkg-meta span {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 10px;
  border-radius: 8px;
}

.pkg-meta svg {
  width: 13px;
  height: 13px;
  fill: var(--sun);
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  margin-top: auto;
}

.pkg-price .from {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pkg-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--sun);
}

.pkg-price .per {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.pkg-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: rgba(230, 62, 0, 0.1);
  border: 1px solid rgba(230, 62, 0, 0.3);
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pkg-btn:hover {
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(230, 62, 0, 0.3);
  transform: translateY(-2px);
}

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 147, 26, 0.05) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.about-visual {
  position: relative;
  padding-right: 40px;
  padding-bottom: 40px;
}

.about-img-main {
  width: 100%;
  height: 520px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--bark), var(--orange));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.about-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=80') center/cover;
  mix-blend-mode: overlay;
  opacity: 0.8;
  transition: transform 0.7s ease;
}

.about-visual:hover .about-img-main::before {
  transform: scale(1.05);
}

.about-img-overlay {
  display: none;
}

.about-exp-badge {
  position: absolute;
  top: 40px;
  left: -30px;
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: var(--white);
  padding: 20px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(230, 62, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-exp-badge span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.about-exp-badge span:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-points {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-point:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.point-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(230, 62, 0, 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.point-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--deep);
}

.point-text p {
  font-size: 0.9rem;
  color: var(--smoke);
  line-height: 1.6;
}

.md-card {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.md-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(247, 147, 26, 0.3);
}

.md-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 4px;
}

.md-info p {
  font-size: 0.85rem;
  color: var(--smoke);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.md-info a {
  font-size: 0.95rem;
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── GALLERY ── */
#gallery {
  background: var(--sand);
}

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.g-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform: translateZ(0);
}

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

/* 10-item Asymmetrical Grid Pattern */
.g-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: span 2;
}

.g-item:nth-child(2) {
  grid-column: span 1;
  grid-row: span 1;
}

.g-item:nth-child(3) {
  grid-column: span 1;
  grid-row: span 2;
}

.g-item:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
}

.g-item:nth-child(5) {
  grid-column: span 1;
  grid-row: span 1;
}

.g-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 1;
}

.g-item:nth-child(7) {
  grid-column: span 1;
  grid-row: span 1;
}

.g-item:nth-child(8) {
  grid-column: span 1;
  grid-row: span 2;
}

.g-item:nth-child(9) {
  grid-column: span 1;
  grid-row: span 2;
}

.g-item:nth-child(10) {
  grid-column: span 2;
  grid-row: span 2;
}

/* Responsive Grid */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .g-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: span 2;
  }

  .g-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .g-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .g-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .g-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .g-item:nth-child(6) {
    grid-column: 1 / 3;
    grid-row: span 1;
  }

  .g-item:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .g-item:nth-child(8) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .g-item:nth-child(9) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .g-item:nth-child(10) {
    grid-column: 1 / 3;
    grid-row: span 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-grid .g-item {
    grid-column: 1 / 2 !important;
    grid-row: span 1 !important;
  }
}

/* Lightbox CSS */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  object-fit: contain;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: color 0.2s;
}

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

.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.g-item:hover::after {
  opacity: 1;
}

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

.g-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.g-item:hover .g-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--deep);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

#testimonials::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 60px;
  font-family: 'Playfair Display', serif;
  font-size: 32rem;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}

.testi-header {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#testimonials .section-title {
  color: var(--white);
}

#testimonials .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.testi-carousel-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 10px;
}

.testi-viewport {
  overflow: hidden;
  flex: 1;
}

.testi-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card {
  min-width: calc(33.333% - 20px);
  flex-shrink: 0;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border-dark);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative;
}

.testi-card::before {
  content: '”';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.testi-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(247, 147, 26, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.testi-stars {
  color: var(--sun);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--sun));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(230, 62, 0, 0.3);
}

.testi-name {
  font-weight: 800;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.testi-trip {
  font-size: 0.8rem;
  color: var(--sun);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── CONTACT ── */
#contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  background: var(--cream);
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info {
  padding-right: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}

.contact-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.cd-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  transition: transform 0.3s ease;
}

.contact-detail:hover .cd-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: var(--white);
  border-color: transparent;
}

.cd-text h4 {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--deep);
}

.cd-text p {
  font-size: 0.95rem;
  color: var(--smoke);
  line-height: 1.5;
}

.cd-text a {
  font-size: 1rem;
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.cd-text a:hover {
  color: var(--deep);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  position: relative;
}

.social-btn svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

/* Specific Insta & WA Colors */
.social-btn.insta {
  color: #E1306C;
  background: #fff;
  border-color: rgba(225, 48, 108, 0.3);
}

.social-btn.insta::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 2px solid #E1306C;
  opacity: 0;
  pointer-events: none;
  animation: attentionPulse 2.5s infinite;
}

.social-btn.insta:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 20px 40px rgba(214, 36, 159, 0.35);
  border-color: transparent;
}

.social-btn.call {
  color: var(--orange);
  background: #fff;
  border-color: rgba(247, 147, 26, 0.3);
}

.social-btn.call::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 2px solid var(--orange);
  opacity: 0;
  pointer-events: none;
  animation: attentionPulse 2.5s infinite 0.75s;
}

.social-btn.call:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 20px 40px rgba(247, 147, 26, 0.35);
  border-color: transparent;
}

.social-btn.wa {
  color: #25D366;
  background: #fff;
  border-color: rgba(37, 211, 102, 0.3);
}

.social-btn.wa::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 2px solid #25D366;
  opacity: 0;
  pointer-events: none;
  animation: attentionPulse 2.5s infinite 1.25s;
}

.social-btn.wa:hover {
  background: #25D366;
  color: white;
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.35);
  border-color: transparent;
}

@keyframes attentionPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.2);
    opacity: 0;
  }

  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

.contact-form {
  background: var(--white);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), var(--sun), var(--yellow));
}

.contact-form h3 {
  font-family: 'OvercameDemo', 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--deep);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--smoke);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  border: 2px solid var(--sand);
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--deep);
  background: var(--cream);
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(230, 62, 0, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(230, 62, 0, 0.25);
}

.form-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 32px rgba(230, 62, 0, 0.4);
}

.form-submit:active {
  transform: translateY(0) scale(0.98);
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(37, 211, 102, 0.1);
  color: #20BA56;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 20px;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 40px 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30%;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.5;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 25px;
  max-width: none;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  max-width: 300px;
}

.footer-tagline {
  font-family: 'Cream Cake', cursive;
  font-size: 1.5rem;
  font-style: normal;
  color: var(--sun);
  display: block;
  margin-top: 12px;
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 14px;
}

.footer-col a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-col a:hover {
  color: var(--sun);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: none;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  left: auto;
  z-index: 997;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-float:hover {
  transform: scale(1.1) rotate(10deg);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: waPulse 2s linear infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ── FLOATING CALL ── */
.call-float {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  left: auto;
  z-index: 997;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(230, 62, 0, 0.4);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.call-float:hover {
  transform: scale(1.1) rotate(10deg);
}

.call-float svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  transition: transform 0.3s;
}

.call-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0;
  animation: callPulse 2s linear infinite;
  pointer-events: none;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
   TABLET (≤ 992px)
══════════════════════════════════════ */
@media(max-width: 992px) {

  section {
    padding: 60px 30px;
  }

  #about,
  #contact {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual {
    padding: 0;
    margin-bottom: 20px;
  }

  .contact-info {
    padding: 0;
  }

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

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

  .g-item:nth-child(1),
  .g-item:nth-child(4),
  .g-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }

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

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

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

/* ══════════════════════════════════════
   MOBILE (≤ 768px)
══════════════════════════════════════ */
@media(max-width: 768px) {

  /* ── NAV ── */
  nav {
    padding: 12px 10px;
  }

  nav.scrolled {
    padding: 10px 10px;
  }

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .main-logo {
    height: 44px;
  }

  /* ── SECTIONS ── */
  section {
    padding: 70px 20px;
  }

  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 5px 12px;
  }

  .section-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    margin-bottom: 14px;
  }

  .section-sub {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding-top: 70px !important;
    padding-bottom: 180px !important;
  }
  .hero-content {
    padding: 0 20px !important;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 5rem);
    letter-spacing: 3px;
  }

  .hero-sub {
    font-size: clamp(1.4rem, 8vw, 2.2rem);
    letter-spacing: 4px;
    margin-bottom: 16px;
  }

  .hero-tagline {
    font-family: 'Cream Cake', cursive;
    font-size: clamp(1.4rem, 6vw, 1.8rem);
    margin-bottom: 8px;
    font-style: normal;
  }

  .hero-tagline2 {
    font-size: 0.82rem;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 14px 32px;
    font-size: 0.95rem;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .stat-item {
    padding: 18px 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 50%;
  }

  .stat-item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  /* ── SERVICES ── */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
  }

  .svc-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    font-size: 1.2rem;
  }

  .svc-text h4 {
    font-size: 1rem;
  }

  .wonderla-badge {
    padding: 20px;
    gap: 14px;
  }

  /* ── PACKAGES ── */
  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .packages-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .packages-header .btn-primary {
    width: auto;
    max-width: none;
  }

  /* ── ABOUT ── */
  #about {
    display: flex;
    flex-direction: column;
  }

  .about-visual {
    min-height: 260px;
    border-radius: 20px;
    order: -1;
  }

  .about-exp-badge {
    bottom: -16px;
    right: 16px;
  }

  .about-points {
    gap: 16px;
  }

  .about-point {
    gap: 12px;
  }

  .md-card {
    padding: 18px 20px;
  }

  /* ── GALLERY ── */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 160px !important;
    gap: 8px;
  }

  .g-item:nth-child(1),
  .g-item:nth-child(4),
  .g-item:nth-child(5) {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  /* ── TESTIMONIALS ── */
  .testi-card {
    min-width: 100%;
    padding: 28px 22px;
  }

  .testi-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .testi-quote {
    font-size: 0.9rem;
  }

  /* ── CONTACT ── */
  #contact {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .contact-form {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-details {
    gap: 16px;
  }

  .social-row {
    gap: 10px;
    flex-wrap: wrap;
  }

  /* ── FOOTER ── */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  footer {
    padding: 60px 20px 100px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 0.8rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }

  /* ── FLOATING BUTTONS ── */
  .wa-float {
    bottom: 125px;
    right: 16px;
    left: auto;
    width: 50px;
    height: 50px;
  }

  .wa-float svg {
    width: 26px;
    height: 26px;
  }

  .call-float {
    display: flex !important;
    bottom: 24px;
    right: 16px;
    left: auto;
    width: 50px;
    height: 50px;
  }

  .call-float svg {
    width: 22px;
    height: 22px;
  }
}

/* ══════════════════════════════════════
   SMALL PHONES (≤ 420px)
══════════════════════════════════════ */
@media(max-width: 420px) {

  .hero-title {
    font-size: clamp(2.6rem, 18vw, 4rem);
    letter-spacing: 2px;
  }

  .hero-sub {
    font-size: clamp(1.2rem, 9vw, 1.8rem);
    letter-spacing: 3px;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-ghost {
    padding: 13px 24px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
  }

  .pkg-card .pkg-body {
    padding: 18px 16px;
  }

  .testi-card {
    padding: 22px 16px;
  }

  .main-logo {
    height: 38px;
  }
}


/* ── TESTIMONIAL CAROUSEL ARROWS & DOTS ── */
.testi-arrow {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.testi-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.testi-dot.active {
  background: var(--sun);
  width: 24px;
  border-radius: 4px;
}

/* ── PKG-CARD GLARE / SHINE EFFECT ── */
.pkg-card {
  position: relative;
  overflow: hidden;
}

.pkg-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 5;
}

.pkg-card:hover::after {
  left: 125%;
}

/* ── MOBILE RESPONSIVE ADDITIONS ── */
@media (max-width: 768px) {
  .mobile-call-btn {
    display: flex;
  }


  /* 2-col gallery on mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 180px !important;
  }

  .g-item:nth-child(1),
  .g-item:nth-child(4),
  .g-item:nth-child(5) {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  /* 1-card testimonial on mobile */
  .testi-card {
    min-width: calc(100% - 0px);
  }

  .testi-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* -- PACKAGE FILTER TABS -- */
.pkg-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pkg-tab {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Avengenz', 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.pkg-tab:hover {
  border-color: var(--sun);
  color: var(--sun);
  background: rgba(247, 147, 26, 0.08);
}

.pkg-tab.active {
  background: linear-gradient(135deg, var(--orange), var(--sun));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(230, 62, 0, 0.35);
  transform: translateY(-2px);
}

@keyframes pkgFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -- CLIENTS LOGO MARQUEE -- */
.clients-strip {
  background: var(--black);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.client-logo {
  flex-shrink: 0;
  width: 120px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 10px 14px;
  transition: all 0.3s ease;
}

.client-logo:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(247, 147, 26, 0.3);
  transform: scale(1.05);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(60%) brightness(1.2);
  transition: filter 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .client-logo {
    width: 90px;
    height: 55px;
    padding: 8px 10px;
  }

  .marquee-track {
    gap: 24px;
    animation-duration: 35s;
  }
}

/* -- SERVICE DETAIL MODAL -- */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.svc-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.svc-modal-card {
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-modal-overlay.open .svc-modal-card {
  transform: translateY(0) scale(1);
}

.svc-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.svc-modal-close:hover {
  background: var(--orange);
  color: white;
}

.svc-modal-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.svc-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.svc-modal-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.svc-modal-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-modal-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
  line-height: 1.5;
}

.svc-modal-points li::before {
  content: '✦';
  color: var(--sun);
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-modal-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(230, 62, 0, 0.35);
}

.svc-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230, 62, 0, 0.5);
}

@media (max-width: 480px) {
  .svc-modal-card {
    padding: 36px 24px 28px;
  }

  .svc-modal-title {
    font-size: 1.35rem;
  }
}


/* -- SERVICE DETAIL MODAL -- */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.svc-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.svc-modal-card {
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-modal-overlay.open .svc-modal-card {
  transform: translateY(0) scale(1);
}

.svc-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.svc-modal-close:hover {
  background: var(--orange);
  color: white;
}

.svc-modal-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.svc-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.svc-modal-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.svc-modal-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-modal-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
  line-height: 1.5;
}

.svc-modal-points li::before {
  content: '✦';
  color: var(--sun);
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-modal-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(230, 62, 0, 0.35);
}

.svc-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(230, 62, 0, 0.5);
}

@media (max-width: 480px) {
  .svc-modal-card {
    padding: 36px 24px 28px;
  }

  .svc-modal-title {
    font-size: 1.35rem;
  }
}

/* -- CLIENTS STRIP SIZE INCREASE -- */
.clients-strip {
  padding: 36px 0;
}

.client-logo {
  width: 240px !important;
  height: 130px !important;
  padding: 4px !important;
  border-radius: 20px !important;
  overflow: hidden;
}

.marquee-track {
  gap: 12px !important;
}

/* -- CURSOR TOOLTIP -- */
#logo-tooltip {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  background: rgba(20, 20, 30, 0.92);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(247, 147, 26, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#logo-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .client-logo {
    width: 170px !important;
    height: 95px !important;
    padding: 4px !important;
    border-radius: 16px !important;
  }

  .marquee-track {
    gap: 8px !important;
  }
}

/* -- ABOUT TITLE MIXED CASE FIX -- */
#about .section-title {
  text-transform: none;
}

/* -- PACKAGE DESTINATION NAME FONT -- */
.pkg-dest {
  font-family: 'OvercameDemo', 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

/* -- PACKAGE DASH NORMAL FONT -- */
.pkg-sep {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  opacity: 0.7;
}

/* -- ABOUT BUS SLIDESHOW -- */
.about-img-main {
  position: relative;
  overflow: hidden;
  background: #111;
}

/* Remove old ::before pseudo background */
.about-img-main::before {
  display: none !important;
}

.about-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.about-slide.active {
  opacity: 1;
}

.about-slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.about-slide-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.about-slide-dots button.active {
  background: var(--sun);
  transform: scale(1.3);
}

/* ── MOBILE RESPONSIVE FIXES ── */

/* About slideshow mobile */
@media (max-width: 768px) {
  .about-img-main {
    height: 280px !important;
    border-radius: 18px;
  }

  .about-visual {
    padding-right: 0;
    padding-bottom: 20px;
  }

  .about-exp-badge {
    left: 12px;
    top: 12px;
    padding: 12px 16px;
    font-size: 0.82rem;
  }

  .about-exp-badge span:first-child {
    font-size: 1.4rem;
  }

  .about-slide-dots {
    bottom: 8px;
  }

  .about-slide-dots button {
    width: 7px;
    height: 7px;
  }

  /* Clients strip mobile */
  .clients-strip {
    padding: 24px 0;
  }

  .clients-label {
    font-size: 0.65rem;
    margin-bottom: 14px;
  }

  /* Service modal mobile */
  .svc-modal-card {
    padding: 32px 20px 24px;
    border-radius: 18px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .svc-modal-title {
    font-size: 1.25rem;
  }

  .svc-modal-icon {
    font-size: 2.4rem;
  }

  /* Package filter tabs mobile */
  .pkg-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .pkg-tab {
    font-size: 0.78rem;
    padding: 8px 16px;
  }

  /* Package cards mobile */
  .pkg-card {
    border-radius: 16px;
  }

  .pkg-dest {
    font-size: 1rem;
  }
}

/* Extra small screens */
@media (max-width: 400px) {
  .about-img-main {
    height: 220px !important;
  }

  .hero-title {
    font-size: clamp(2.5rem, 14vw, 4rem);
    letter-spacing: 2px;
  }

  section {
    padding: 56px 16px;
  }

  .svc-modal-card {
    padding: 28px 16px 20px;
  }
}

/* ── VIDEO REVIEWS SECTION ── */
#testimonials {
  background: var(--black);
}

.testi-header {
  text-align: center;
  margin-bottom: 56px;
}

.testi-header .section-title,
.testi-header .section-sub {
  color: var(--white);
}

.testi-header .section-sub {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
}

.vreview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.vreview-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vreview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(247, 147, 26, 0.25);
}

/* Video wrapper */
.vreview-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.vreview-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Big play button overlay */
.vreview-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.vreview-play-btn:hover {
  background: rgba(0, 0, 0, 0.15);
}

.vreview-play-btn span {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--orange), var(--sun));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 8px 30px rgba(230, 62, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  padding-left: 4px;
}

.vreview-play-btn:hover span {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(230, 62, 0, 0.7);
}

.vreview-play-btn.hidden {
  display: none;
}

/* Stars badge */
.vreview-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  color: #ffd700;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
}

/* Info strip below video */
.vreview-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  flex-wrap: wrap;
}

.vreview-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vreview-meta {
  flex: 1;
}

.vreview-name {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.vreview-college {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  margin-top: 2px;
}

.vreview-quote {
  width: 100%;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.5;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .vreview-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 420px;
  }

  .vreview-play-btn span {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
}

/* video click cursor */
.vreview-video {
  cursor: pointer;
}

/* Wonderla badge arrow */
.wb-arrow {
  margin-left: auto;
  font-size: 1.4rem;
  color: var(--sun);
  transition: transform 0.3s;
}

.wonderla-badge:hover .wb-arrow {
  transform: translateX(4px);
}

/* ── ABOUT SECTION MOBILE COMPLETE FIX ── */
@media (max-width: 768px) {

  /* Section layout */
  #about {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px;
    padding: 56px 20px;
  }

  /* Visual block MUST have explicit height for absolute slides to work */
  .about-visual {
    width: 100%;
    height: 320px !important;
    min-height: 320px !important;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 0 !important;
    order: -1;
  }

  /* Image container fills visual exactly */
  .about-img-main {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px;
    overflow: hidden;
  }

  /* Slideshow fills the container */
  .about-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  /* Each slide fills fully */
  .about-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Dots at very bottom */
  .about-slide-dots {
    bottom: 10px;
  }

  /* Badge — small, top-left corner */
  .about-exp-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    right: auto;
    bottom: auto;
    padding: 12px 16px;
    font-size: 0.78rem;
    border-radius: 14px;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
  }

  .about-exp-badge span:first-child {
    font-size: 1.4rem;
    display: block;
  }

  /* Content below the image */
  .about-content {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .about-visual {
    height: 260px !important;
    min-height: 260px !important;
  }
}

/* ── GALLERY MOBILE — FORCE 2 COLUMNS FOR ALL ITEMS ── */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 150px !important;
    gap: 8px !important;
  }

  /* Reset ALL items to auto — no item spans 2 columns on mobile */
  .g-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}


/* ── CONTACT MAP ── */
.contact-map-wrap {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1) invert(1) contrast(1.1);
  /* Dark theme map */
}

/* ── GALLERY MOBILE: STRICT 2-COLUMN GRID ── */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 150px !important;
    gap: 8px !important;
  }

  /* Beat all :nth-child specificity with :nth-child(n) wildcard + !important */
  .gallery-grid .g-item:nth-child(n) {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* ── PACKAGES EMPTY STATE & FILTERS ── */
.pkg-filter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.pkg-tab {
  padding: 12px 28px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.5px;
}

.pkg-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  transform: translateY(-2px);
}

.pkg-tab.active {
  background: linear-gradient(135deg, var(--orange), var(--sun));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(230, 62, 0, 0.3);
}

.pkg-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  max-width: 600px;
  margin: 0 auto 40px;
  transition: all 0.4s ease;
}

.pkg-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  opacity: 0.3;
}

.pkg-empty-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.pkg-empty-state p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.6;
}

.pkg-empty-state strong {
  color: var(--sun);
}

/* Hide cards by default for the load state */
.pkg-card {
  display: none;
}

@keyframes pkgFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide grid on initial state to keep and center the prompt */
#pkg-grid {
  display: none;
}

/* ──── WHY SKYSCAPE ──── */
.why-skyscape {
  background: var(--sand);
  padding: 60px 60px;
}

.why-skyscape .section-title {
  color: var(--deep);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
}

.why-item {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(230, 62, 0, 0.12);
  border-color: rgba(230, 62, 0, 0.1);
}

.why-check {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--sun));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(230, 62, 0, 0.25);
}

.why-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.why-text p {
  font-size: 0.95rem;
  color: var(--smoke);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-skyscape {
    padding: 80px 24px;
  }
}

.nrml-font {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  margin-left: 2px;
}
/* Mobile GPU Optimization */
@media (max-width: 768px) {
  .navbar, .svc-card, .wonderla-badge, .pkg-card, .testi-card, .hero-badge, .pkg-filter {
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
  }
}
