:root {
  --primary: #0b6cf2;
  --primary-dark: #0753b9;
  --accent-teal: #2ec4d4;
  --secondary: #f2f8ff;
  --places-bg: #eef6ff;
  --text: #1d2b44;
  --heading-dark: #161e2e;
  --white: #ffffff;
  --shadow: 0 8px 24px rgba(14, 73, 145, 0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nav-h: clamp(3.75rem, 11vw, 5rem);
  --z-nav: 1000;
  --z-main-content: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-main {
  position: relative;
  flex: 1 0 auto;
  width: 100%;
  overflow-x: clip;
  z-index: var(--z-main-content);
}

.site-main > :not(.main-deco) {
  position: relative;
  z-index: 1;
}

.main-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.main-deco__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: main-orb-drift 22s ease-in-out infinite;
}

.main-deco__orb--1 {
  width: min(340px, 55vw);
  height: min(340px, 55vw);
  top: 4%;
  right: -8%;
  background: radial-gradient(circle, rgba(11, 108, 242, 0.2) 0%, transparent 68%);
  animation-delay: 0s;
}

.main-deco__orb--2 {
  width: min(260px, 42vw);
  height: min(260px, 42vw);
  top: 38%;
  left: -10%;
  background: radial-gradient(circle, rgba(46, 196, 212, 0.18) 0%, transparent 65%);
  animation-delay: -7s;
  animation-duration: 26s;
}

.main-deco__orb--3 {
  width: min(200px, 35vw);
  height: min(200px, 35vw);
  bottom: 12%;
  right: 15%;
  background: radial-gradient(circle, rgba(11, 108, 242, 0.14) 0%, transparent 62%);
  animation-delay: -14s;
  animation-duration: 19s;
}

@keyframes main-orb-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(-12px, 18px) scale(1.05);
  }
  70% {
    transform: translate(10px, -10px) scale(0.97);
  }
}

.main-deco__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(11, 108, 242, 0.12);
  animation: main-ring-pulse 10s ease-in-out infinite;
}

.main-deco__ring--1 {
  width: min(180px, 28vw);
  height: min(180px, 28vw);
  top: 22%;
  left: 6%;
}

.main-deco__ring--2 {
  width: min(120px, 20vw);
  height: min(120px, 20vw);
  bottom: 28%;
  right: 8%;
  animation-delay: -4s;
  animation-duration: 13s;
}

@keyframes main-ring-pulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.08) rotate(8deg);
    opacity: 0.85;
  }
}

.main-deco__float {
  position: absolute;
  color: rgba(11, 108, 242, 0.22);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  animation: main-icon-float 8s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(11, 108, 242, 0.12));
}

.main-deco__float--1 {
  top: 10%;
  left: 12%;
  animation-delay: 0s;
}

.main-deco__float--2 {
  top: 52%;
  right: 10%;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  animation-delay: -2s;
  animation-duration: 10s;
  color: rgba(46, 196, 212, 0.28);
}

.main-deco__float--3 {
  bottom: 35%;
  left: 18%;
  font-size: clamp(1.35rem, 3vw, 2rem);
  animation-delay: -4s;
  animation-duration: 9s;
}

.main-deco__float--4 {
  top: 68%;
  right: 22%;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  animation-delay: -1s;
  animation-duration: 11s;
  color: rgba(11, 108, 242, 0.18);
}

@keyframes main-icon-float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

.main-deco__hills {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(48px, 8vw, 80px);
  opacity: 0.9;
  animation: main-hills-breathe 12s ease-in-out infinite;
}

@keyframes main-hills-breathe {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.85;
  }
  50% {
    transform: scaleY(1.04);
    opacity: 1;
  }
}

.section {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 5rem 0;
}

.reviews {
  padding-top: 4.5rem;
}

.reviews-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(231, 239, 250, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.05rem 1.05rem 1rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14, 73, 145, 0.16);
  border-color: rgba(11, 108, 242, 0.22);
}

.review-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-who {
  min-width: 0;
}

.review-name {
  font-weight: 700;
  color: var(--heading-dark);
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-meta {
  font-size: 0.78rem;
  color: #6b829e;
}

.review-stars {
  display: inline-flex;
  gap: 0.15rem;
  color: #ffb703;
}

.review-text {
  color: #4c6180;
  font-size: 0.9rem;
  line-height: 1.65;
}

.reviews-box {
  background: var(--white);
  border: 1px solid rgba(231, 239, 250, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.reviews-box-title {
  font-weight: 700;
  color: var(--heading-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.reviews-box-title i {
  color: #4285f4;
}

.reviews-box-text {
  color: #5c6f8c;
  font-size: 0.9rem;
}

.reviews-box-actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .reviews-top {
    grid-template-columns: 1fr;
  }

  .review-head {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .review-stars {
    grid-column: 1 / -1;
  }

  .reviews-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-box-actions {
    width: 100%;
  }

  .reviews-box-actions .btn {
    width: 100%;
  }
}

.header {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(8, 28, 58, 0.42) 0%, rgba(8, 35, 62, 0.55) 45%, rgba(12, 48, 38, 0.45) 100%),
    url("hero-bg.png") center / cover no-repeat;
  color: var(--white);
}

.header-graphics {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.header-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.45;
  animation: blob-float 18s ease-in-out infinite;
}

.header-blob--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -8%;
  right: -10%;
  background: radial-gradient(circle, rgba(46, 196, 212, 0.55) 0%, transparent 70%);
  animation-delay: 0s;
}

.header-blob--2 {
  width: min(320px, 45vw);
  height: min(320px, 45vw);
  bottom: 5%;
  left: -12%;
  background: radial-gradient(circle, rgba(11, 108, 242, 0.5) 0%, transparent 68%);
  animation-delay: -6s;
}

.header-blob--3 {
  width: min(240px, 35vw);
  height: min(240px, 35vw);
  top: 38%;
  left: 35%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
  animation-delay: -12s;
}

.header-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 65% at 50% 45%, transparent 30%, rgba(5, 18, 40, 0.5) 100%);
  pointer-events: none;
}

.header-grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(2%, -3%) scale(1.04);
  }
  66% {
    transform: translate(-2%, 2%) scale(0.98);
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.sticky {
  background: rgba(7, 25, 53, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.95rem 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo {
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}

.logo:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -4px;
  background: var(--white);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-book {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: var(--nav-h);
  padding-bottom: 3rem;
  box-sizing: border-box;
}

.hero-content {
  max-width: 760px;
  padding-top: 1.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-title {
  color: var(--white);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
  animation: hero-bounce 2.2s ease-in-out infinite;
}

.hero-scroll:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

@keyframes hero-bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}

.page-loaded .hero-intro .hero-el {
  animation: hero-rise 0.9s var(--ease-out) backwards;
}

.page-loaded .hero-el--1 {
  animation-delay: 0.08s;
}

.page-loaded .hero-el--2 {
  animation-delay: 0.2s;
}

.page-loaded .hero-el--3 {
  animation-delay: 0.36s;
}

.page-loaded .hero-el--4 {
  animation-delay: 0.52s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.tagline-hero {
  display: inline-block;
  color: #b8d9ff;
  background: rgba(77, 163, 255, 0.22);
  border: 1px solid rgba(140, 200, 255, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.tagline-section {
  color: var(--primary);
  letter-spacing: 0.12em;
}

.title-accent {
  background: linear-gradient(120deg, #7ee8ff 0%, #4db8ff 45%, #b8f0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.18;
  margin: 0.75rem 0;
}

.subheading {
  font-size: 1.02rem;
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--primary);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.35rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-glow {
  box-shadow: 0 4px 22px rgba(11, 108, 242, 0.45);
}

.btn-glow:hover {
  box-shadow: 0 8px 28px rgba(11, 108, 242, 0.55);
}

.btn-small {
  font-size: 0.88rem;
  padding: 0.52rem 1.05rem;
}

.btn-block {
  width: 100%;
  margin-top: 0.5rem;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.25rem;
}

.section-head h2 {
  color: var(--heading-dark);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  margin: 0.35rem 0;
}

.section-text {
  color: #50617d;
}

.trust-strip {
  background: linear-gradient(180deg, #fafcff 0%, var(--white) 100%);
  border-bottom: 1px solid #e8f0fb;
  padding: 1.75rem 4%;
}

.trust-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.trust-icon {
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #e8f2ff 0%, #d4e8ff 100%);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(11, 108, 242, 0.12);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 8px 22px rgba(11, 108, 242, 0.2);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-text strong {
  font-size: 0.95rem;
  color: var(--heading-dark);
  font-weight: 600;
}

.trust-text span {
  font-size: 0.82rem;
  color: #5c6f8c;
  line-height: 1.45;
}

.section-wave {
  color: var(--secondary);
  line-height: 0;
  margin: -1px 0 0;
}

.section-wave--alt {
  color: var(--places-bg);
  margin-top: 0;
}

.section-wave-svg {
  display: block;
  width: 100%;
  height: clamp(36px, 5vw, 56px);
}

.packages {
  padding-top: 3rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(231, 239, 250, 0.95);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out), box-shadow 0.4s ease, border-color 0.3s ease;
  cursor: pointer;
}

html.js .card {
  opacity: 0;
  transform: translateY(32px);
}

html.js .package-grid.is-revealed .card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 85ms);
}

.card:nth-child(1) {
  --i: 0;
}

.card:nth-child(2) {
  --i: 1;
}

.card:nth-child(3) {
  --i: 2;
}

.card:nth-child(4) {
  --i: 3;
}

.card:nth-child(5) {
  --i: 4;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(14, 73, 145, 0.18);
  border-color: rgba(11, 108, 242, 0.22);
}

html.js .package-grid.is-revealed .card:hover {
  transform: translateY(-8px);
}

.card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-out);
}

.card:hover .card-media img {
  transform: scale(1.06);
}

.card-media-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 0.85rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.card-body {
  padding: 1rem 1.05rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-desc {
  color: #5a6f8a;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.85rem;
  flex: 1;
}

.card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #4a6282;
  margin-bottom: 0.9rem;
}

.card-stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card-stats i {
  color: var(--primary);
}

.card .btn-block {
  margin-top: auto;
}

.pickup {
  background: var(--secondary);
  width: 100%;
  padding: 0;
}

.pickup-container {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 1.75rem 0;
}

.pickup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.pickup h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2a4369;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.chip {
  background: var(--white);
  border: 1px solid #d4e4fb;
  color: #2d4f7a;
  border-radius: 999px;
  padding: 0.48rem 1rem;
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
}

.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 108, 242, 0.12);
  border-color: rgba(11, 108, 242, 0.35);
}

.places {
  background: var(--places-bg);
  width: 100%;
  max-width: none;
  padding: 5rem 0;
}

.places > .section-head,
.places > .places-panel {
  width: min(1120px, 92%);
  margin-left: auto;
  margin-right: auto;
}

.places-panel {
  background: var(--white);
  border: 1px solid #ddeaf8;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.places-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-teal), var(--primary));
  background-size: 200% 100%;
  animation: gradient-shift 8s linear infinite;
  opacity: 0.85;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.places-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}

.places-tab {
  border: 1px solid #cfe0f7;
  background: #f5f9ff;
  color: #35557c;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.3s var(--ease-out);
}

.places-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.places-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(11, 108, 242, 0.28);
  transform: scale(1.02);
}

.places-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.places-feature {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.places-feature img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out), opacity 0.45s ease;
}

.places-feature:hover img {
  transform: scale(1.03);
}

.places-feature-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.places-feature-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}

.places-feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.places-feature-sub {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.places-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.places-spots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.spot-item {
  background: var(--white);
  border: 1px solid #e3eef9;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #2c4566;
  box-shadow: 0 2px 10px rgba(14, 73, 145, 0.06);
  animation: spot-pop 0.45s var(--ease-out) backwards;
  animation-delay: calc(var(--spot-i, 0) * 42ms);
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, box-shadow 0.25s ease;
}

.spot-item:hover {
  transform: translateX(4px);
  border-color: rgba(11, 108, 242, 0.35);
  box-shadow: 0 4px 14px rgba(11, 108, 242, 0.1);
}

@keyframes spot-pop {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.spot-item i {
  color: var(--primary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.places-book-wrap {
  text-align: center;
  margin-top: 0.35rem;
}

.places-book {
  display: inline-flex;
  min-width: 12rem;
  justify-content: center;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

section.contact {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, #f8fbff 45%, var(--white) 100%);
}

section.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 108, 242, 0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.55;
}

section.contact .section-head,
section.contact .contact-layout {
  position: relative;
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.35rem;
  align-items: stretch;
}

.contact-info,
.contact-form {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #e4ecfb;
  box-shadow: var(--shadow);
  padding: 1.35rem 1.4rem;
}

.contact-info h3,
.contact-form h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.contact-lead {
  color: #50617d;
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.contact-mini-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #e3eef9;
  background: #fbfdff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

a.contact-mini-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(11, 108, 242, 0.12);
}

.contact-mini-card-static {
  cursor: default;
}

.contact-mini-icon {
  grid-row: 1 / span 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: #e8f2ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-mini-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b829e;
}

.contact-mini-value {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.contact-call-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-call-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.contact-call-nums {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-call-nums a {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.contact-call-nums a:hover {
  text-decoration: underline;
}

.contact-location-text {
  grid-column: 2;
  color: #385372;
  font-weight: 500;
}

.quick-book {
  background: linear-gradient(135deg, var(--primary) 0%, #0958c4 100%);
  color: var(--white);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.quick-book-title {
  font-weight: 600;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.quick-book-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.45);
  flex: 1;
  min-width: 8.5rem;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
}

.contact-form label {
  display: block;
  margin: 0.8rem 0 0.32rem;
  font-size: 0.9rem;
  color: #385372;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cadcf7;
  border-radius: 10px;
  padding: 0.75rem;
  font-family: inherit;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 108, 242, 0.12);
}

.form-note {
  margin-top: 0.65rem;
  color: #0e5fd4;
  font-size: 0.9rem;
}

.btn-send {
  margin-top: 0.35rem;
}

.footer {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  overflow: hidden;
  background: #0a1628;
  color: #c8daf5;
  padding: 2.75rem 4% 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(46, 196, 212, 0.45) 35%, var(--primary) 50%, rgba(46, 196, 212, 0.45) 65%, transparent 100%);
  opacity: 0.9;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #9eb6d6;
}

.footer-heading {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: #9eb6d6;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-col a {
  color: #9eb6d6;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bar {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 0 1.35rem;
  text-align: center;
}

.footer-copy {
  color: #6a86ad;
  font-size: 0.85rem;
}

.footer-credit {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: #7a93b8;
}

.footer-credit a {
  color: #9eb6d6;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .pickup-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .chip-wrap {
    justify-content: center;
  }

  .navbar-inner {
    padding-inline: 5%;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-wrap {
    position: absolute;
    top: calc(100% + 6px);
    right: 5%;
    flex: none;
    width: auto;
    justify-content: flex-end;
  }

  .nav-links {
    background: rgba(7, 25, 53, 0.98);
    border: 1px solid #1a406f;
    border-radius: 12px;
    width: min(260px, 88vw);
    flex-direction: column;
    padding: 0.85rem 1rem;
    gap: 0.35rem;
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .navbar .nav-book {
    display: none;
  }

  .places-body {
    grid-template-columns: 1fr;
  }

  .places-feature {
    min-height: 220px;
  }

  .places-feature img {
    min-height: 220px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .places-spots-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-media {
    height: 170px;
  }

  .trust-strip {
    padding: 1.35rem 5%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .header-blob,
  .places-panel::before {
    animation: none !important;
  }

  .hero-scroll {
    animation: none !important;
  }

  .page-loaded .hero-intro .hero-el {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  html.js .card {
    opacity: 1 !important;
    transform: none !important;
    transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
  }

  html.js .package-grid.is-revealed .card {
    transition-delay: 0ms !important;
  }

  .spot-item {
    animation: none !important;
    animation-delay: 0ms !important;
  }

  .trust-item:hover .trust-icon,
  .card:hover .card-media img,
  .places-feature:hover img {
    transform: none !important;
  }

  .main-deco__orb,
  .main-deco__ring,
  .main-deco__float,
  .main-deco__hills {
    animation: none !important;
  }
}
