:root {
  --teal-dark: #0f3d3a;
  --teal: #0d9488;
  --teal-light: #2dd4bf;
  --accent: #f59e0b;
  --cream: #f7fbfa;
  --text: #1c2624;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%230d9488' fill-opacity='0.05'%3E%3Cellipse cx='36' cy='46' rx='11' ry='9'/%3E%3Cellipse cx='23' cy='30' rx='5' ry='6'/%3E%3Cellipse cx='35' cy='22' rx='5.2' ry='6.5'/%3E%3Cellipse cx='48' cy='27' rx='4.8' ry='6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 72px;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Baloo 2", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--teal-dark);
  margin-top: 0;
}

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / nav */
header {
  background: var(--teal-dark);
  color: white;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--teal-light);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.15s;
}

nav a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--accent);
  color: var(--teal-dark) !important;
  padding: 8px 18px;
  border-radius: 24px;
  font-weight: bold !important;
  opacity: 1 !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(15, 61, 58, 0.7), rgba(15, 61, 58, 0.7)),
    repeating-linear-gradient(120deg, #0d9488, #0d9488 50px, #14b8a6 50px, #14b8a6 100px);
  color: white;
  text-align: center;
  padding: 100px 20px 140px;
  position: relative;
  overflow: hidden;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  display: block;
}

.hero h1 {
  color: white;
  font-size: 2.6rem;
  max-width: 700px;
  margin: 0 auto 16px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--teal-dark);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}

.btn:hover {
  background: #fbbf24;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--teal-dark);
}

/* Trust bar */
.trust-bar {
  background: var(--teal);
  color: white;
  padding: 20px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 14px;
  text-align: center;
  font-weight: 600;
}

/* Sections */
section {
  padding: 70px 0;
}

.section-alt {
  background: white;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.section-header p {
  color: var(--teal);
}

/* Pricing / packages */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: white;
  padding: 28px 22px;
  border-radius: 26px;
  box-shadow: 0 4px 14px rgba(15, 61, 58, 0.08);
  text-align: center;
}

.card .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  margin: 8px 0;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  text-align: left;
}

.card ul li {
  padding: 6px 0;
  border-top: 1px dashed #d6e6e3;
}

.card ul li:first-child {
  border-top: none;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 20px;
  height: 180px;
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: white;
  padding: 24px 22px;
  border-radius: 26px;
  box-shadow: 0 4px 14px rgba(15, 61, 58, 0.08);
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.testimonial .author {
  margin-top: 12px;
  font-weight: 700;
  color: var(--teal-dark);
}

/* Service area */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.area-list li {
  background: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(15, 61, 58, 0.08);
}

/* Booking form */
.booking-section {
  background: var(--teal-dark);
  color: white;
}

.booking-section h2 {
  color: white;
}

.booking-section .section-header p {
  color: #a9d6cf;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 26px;
  border-radius: 28px;
  max-width: 560px;
  margin: 0 auto;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select {
  padding: 12px;
  border: 1px solid #2c5854;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
  width: 100%;
}

.form-status {
  font-weight: 600;
  min-height: 1.4em;
  color: white;
}

.form-status.success {
  color: var(--accent);
}

.form-status.error {
  color: #f87171;
}

/* Footer */
footer {
  background: #0a2b28;
  color: white;
  padding: 36px 0 22px;
  text-align: center;
}

footer .fine-print {
  margin-top: 16px;
  font-size: 0.82rem;
  opacity: 0.6;
}

footer .social a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
  opacity: 0.8;
}

.sticky-call {
  display: none;
}

/* Responsive */
@media (max-width: 760px) {
  .grid-3,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;
  }

  nav ul li {
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-cta {
    margin-top: 6px;
    display: inline-block;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .hero {
    padding: 70px 20px 90px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .sticky-call {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--teal-dark);
    text-align: center;
    padding: 14px;
    font-weight: bold;
    text-decoration: none;
    z-index: 30;
  }

  body {
    padding-bottom: 54px;
  }
}
