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

:root {
  --coral: #ff6b5e;
  --coral-dark: #e8513e;
  --sunny: #ffb03a;
  --teal: #2ec4b6;
  --ink: #2d3550;
  --ink-soft: #5c6a86;
  --cream: #fff9f2;
  --card: #ffffff;
  --shadow: 0 20px 45px rgba(45, 53, 80, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", "Segoe UI", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

/* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(45, 53, 80, 0.08);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
}

.brand .logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--coral), var(--sunny));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
}

nav .links { display: flex; gap: 1.4rem; align-items: center; }

nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
}
nav a:hover { color: var(--coral); }
nav a.active { color: var(--coral-dark); }

.btn-book {
  background: var(--coral);
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: 12px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 16px rgba(255, 107, 94, 0.35);
}
.btn-book:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 107, 94, 0.4);
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  background: linear-gradient(120deg, var(--coral), var(--sunny));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.tagline {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.badge {
  background: #fff;
  border: 1.5px solid #ffd9c9;
  color: var(--coral-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  font-weight: 800;
  padding: 0.85rem 1.6rem;
  border-radius: 14px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 107, 94, 0.4);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-3px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid #ead9c8;
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }

.btn-solid {
  background: linear-gradient(120deg, var(--coral), var(--sunny));
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 150, 70, 0.4);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(255, 150, 70, 0.5); }

.hero-visual {
  position: relative;
}

.hero-visual .bubble {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  opacity: 0.9;
}
.bubble.b1 { width: 70px; height: 70px; background: var(--sunny); top: -12px; right: 6%; animation-delay: 0s; }
.bubble.b2 { width: 44px; height: 44px; background: var(--teal); bottom: 5%; left: -4%; animation-delay: 1.5s; }
.bubble.b3 { width: 26px; height: 26px; background: var(--coral); top: 42%; right: -1%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.rate-card {
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.8rem;
  border: 1px solid #ffe8da;
  position: relative;
  z-index: 2;
}

.rate-card .big {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
}
.rate-card .big span { font-size: 1.1rem; color: var(--ink-soft); font-weight: 700; }
.rate-card .kids { font-weight: 800; color: var(--ink-soft); margin-bottom: 1rem; }

.rate-strip {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed #ecd9c6;
  font-weight: 700;
}
.rate-strip:last-of-type { border-bottom: none; }
.rate-strip .amt { color: var(--coral-dark); font-weight: 900; }

/* SECTIONS */
section { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem; }

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 0.4rem;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 2.2rem;
}

.page-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 0.5rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
}
.page-hero p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0.6rem auto 0;
}

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

.feature {
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem 1.3rem;
  box-shadow: 0 10px 25px rgba(45, 53, 80, 0.08);
  border: 1px solid #f4e9dc;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(45, 53, 80, 0.14); }

.feature .icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.icon.i1 { background: #ffe8ec; }
.icon.i2 { background: #fff1d6; }
.icon.i3 { background: #d9f7f4; }
.icon.i4 { background: #e8e3ff; }

.feature h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.3rem; }
.feature p { font-size: 0.9rem; color: var(--ink-soft); }

/* PRICING */
.pricing-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid #f4e9dc;
  max-width: 640px;
  margin: 0 auto;
}

.pricing-head {
  background: linear-gradient(120deg, var(--coral), var(--sunny));
  color: #fff;
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricing-head h3 { font-weight: 900; font-size: 1.2rem; }
.pricing-head .per-hour { font-weight: 700; font-size: 0.85rem; opacity: 0.95; }

.pricing-rows { padding: 0.5rem 2rem; }

.p-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed #ecd9c6;
}
.p-row:last-child { border-bottom: none; }

.p-row .count {
  font-weight: 700;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-row .count .people { font-size: 1.1rem; }

.p-row .price {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--coral-dark);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.p-row .price small { font-weight: 700; color: var(--ink-soft); font-size: 0.8rem; }

.sample {
  margin: 1.2rem 2rem 2rem;
  background: var(--cream);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-align: center;
}
.sample strong { color: var(--coral-dark); }

/* CONTACT */
.contact-panel {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #f4e9dc;
  overflow: hidden;
}

.contact-head {
  background: linear-gradient(120deg, var(--coral), var(--sunny));
  color: #fff;
  padding: 1.6rem 2rem;
}
.contact-head h3 { font-weight: 900; font-size: 1.3rem; }
.contact-head p { opacity: 0.95; font-size: 0.95rem; margin-top: 0.3rem; }

.contact-body { padding: 2rem; }

/* FORM */
.contact-form { display: grid; gap: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: "Nunito", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid #ecd9c6;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 94, 0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}

.submit-btn {
  width: 100%;
  font-family: "Nunito", "Segoe UI", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, var(--coral), var(--sunny));
  border: none;
  padding: 1rem;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(255, 150, 70, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.submit-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 30px rgba(255, 150, 70, 0.55);
  filter: brightness(1.04);
}
.submit-btn:active {
  transform: translateY(-1px) scale(0.99);
}

@media (max-width: 560px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px dashed #ecd9c6;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .c-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-row .c-label { font-size: 0.8rem; color: var(--ink-soft); font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; }
.contact-row .c-value { font-weight: 800; color: var(--ink); }

/* CTA */
.cta {
  background: linear-gradient(135deg, #ff6b5e, #ffb03a);
  border-radius: 28px;
  padding: 2.6rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 45px rgba(255, 100, 60, 0.35);
}
.cta h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 900; margin-bottom: 0.5rem; }
.cta p { opacity: 0.95; margin-bottom: 1.6rem; }

.cta .btn-primary {
  background: #fff;
  color: var(--coral-dark);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.cta .btn-primary:hover { background: #ffe9de; }

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
footer .heart { color: var(--coral); }
footer a { color: var(--coral-dark); text-decoration: none; font-weight: 700; }
footer a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 400px; margin: 0 auto; }
  nav .links a:not(.btn-book) { display: none; }
}