:root {
  --bg: #f4f7f8;
  --bg-accent: #e8f4f7;
  --text: #17303b;
  --text-soft: #4c6670;
  --brand: #0d7b8a;
  --brand-dark: #095e6a;
  --card: #ffffff;
  --border: #d6e6ea;
  --shadow: 0 14px 35px rgba(14, 59, 68, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 10%, #d8eff3 0, transparent 45%),
    radial-gradient(circle at 10% 25%, #eaf6f8 0, transparent 40%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  padding: 1.2rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero__bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.42;
}

.hero__bg-shape--one {
  width: 280px;
  height: 280px;
  background: #a2dae2;
  top: -100px;
  right: -50px;
}

.hero__bg-shape--two {
  width: 220px;
  height: 220px;
  background: #bee3d9;
  bottom: 20px;
  left: -80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.2px;
}

.nav__cta {
  text-decoration: none;
  color: var(--brand-dark);
  font-weight: 700;
}

.hero__content {
  padding-top: 4.2rem;
  animation: riseIn 0.8s ease-out both;
}

.eyebrow {
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.79rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

h1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.95rem, 4vw, 3.15rem);
  line-height: 1.15;
}

.hero__lead {
  margin-top: 1rem;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-soft);
  font-size: 1.06rem;
}

.offer-checklist {
  margin-top: 1.35rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.offer-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(14, 59, 68, 0.08);
  color: var(--text);
}

.offer-checklist__icon {
  width: 1.55rem;
  height: 1.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.hero__buttons {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.72rem 1.1rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--solid {
  background: var(--brand);
  color: #fff;
}

.btn--solid:hover {
  background: var(--brand-dark);
  box-shadow: 0 8px 20px rgba(9, 94, 106, 0.35);
}

.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.65);
}

.btn--small {
  background: var(--brand-dark);
  color: #fff;
  margin-top: 1rem;
}

.section {
  padding: 4rem 0;
}

main,
.hero__content,
.footer {
  text-align: center;
}

main ul,
main li,
.offer-checklist__item,
.preview-card p,
.pack-card ul {
  text-align: left;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(220, 239, 243, 0.75));
}

.section__title-wrap {
  margin-bottom: 1.5rem;
  text-align: center;
}

.section__title-wrap h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin-bottom: 0.5rem;
}

.section__title-wrap p {
  color: var(--text-soft);
}

.pack-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.pack-card h3,
.preview-card h3 {
  margin-bottom: 0.4rem;
}

.pack-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pack-card .btn {
  margin-top: auto;
  display: block;
  text-align: center;
}

.pack-card ul {
  margin: 0 0 0.6rem 0;
  color: var(--text-soft);
  text-align: left;
  font-size: 0.85rem;
}

.pack-card ul li {
  padding: 0.18rem 0;
}

.pack-card__group-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
  background: var(--bg-accent);
  border-radius: 6px;
  padding: 0.2rem 0.55rem;
  margin: 0.75rem 0 0.3rem;
  display: inline-block;
}

.price {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.badge {
  display: inline-block;
  background: #d9f3f6;
  color: #0f5e68;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.pack-card--featured {
  transform: translateY(-8px);
}

.text-link {
  text-decoration: none;
  color: var(--brand-dark);
  font-weight: 700;
}

.preview-card {
  animation: fadeUp 0.7s ease both;
}

.preview-card:nth-child(2) {
  animation-delay: 0.1s;
}

.preview-card:nth-child(3) {
  animation-delay: 0.2s;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.category {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.category__summary {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  user-select: none;
  border-radius: 14px;
  transition: background 0.18s ease;
  width: 100%;
}

.category__summary::-webkit-details-marker {
  display: none;
}

.category__summary::after {
  content: '▾';
  font-size: 0.95rem;
  color: var(--brand-dark);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  order: 2;
}

.category__summary:hover {
  background: #edf9fa;
}

.category[open] > .category__summary {
  border-bottom: 1px solid var(--border);
  border-radius: 14px 14px 0 0;
}

.category[open] > .category__summary::after {
  transform: rotate(-180deg);
}

.category__summary h3 {
  margin: 0;
  flex: 1;
  order: 1;
}

.category__summary .category__label {
  margin-bottom: 0;
}

.category__label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-dark);
  padding: 0.28rem 0.75rem;
  background: #d9f3f6;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
}

.category > .preview-grid {
  padding: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.contact-card {
  text-align: center;
  padding: 2rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1rem 0 1.2rem;
  text-align: center;
  color: var(--text-soft);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .pack-grid,
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero {
    padding-bottom: 3rem;
  }

  .hero__content {
    padding-top: 3.2rem;
  }

  .offer-checklist {
    grid-template-columns: 1fr;
  }

  .pack-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .pack-card--featured {
    transform: none;
  }
}

/* ── Testimonials carousel ──────────────────── */
.testimonial-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 1rem;
}

.testimonial-slide .testimonial-card {
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.testimonial-btn {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.testimonial-btn:hover {
  background: var(--brand);
  color: #fff;
  transform: scale(1.08);
}

.testimonial-dots {
  display: flex;
  gap: 0.45rem;
}

.testimonial-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--brand);
  transform: scale(1.3);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.75rem 0.9rem;
  text-align: left;
  box-shadow: 0 4px 18px rgba(14, 59, 68, 0.08);
}

.testimonial-card__quote {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
  position: relative;
  padding-top: 1rem;
}

.testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  top: -0.15rem;
  left: 0;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--brand);
  font-family: Georgia, serif;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
  padding-top: 0.65rem;
}

.testimonial-card__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* ── Gallery ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(14, 59, 68, 0.16);
}

.gallery-item__thumb {
  width: 100%;
  height: 190px;
  background-size: cover;
  background-position: center;
}

/* Placeholder gradient swatches until real photos are added */
.gallery-thumb--1 { background: linear-gradient(135deg, #a2dae2 0%, #095e6a 100%); }
.gallery-thumb--2 { background: linear-gradient(135deg, #bee3d9 0%, #0d7b8a 100%); }
.gallery-thumb--3 { background: linear-gradient(135deg, #f8cdd4 0%, #c46877 100%); }
.gallery-thumb--4 { background: linear-gradient(135deg, #c9d8f8 0%, #3a5dbf 100%); }
.gallery-thumb--5 { background: linear-gradient(135deg, #d8d0f8 0%, #5a3abf 100%); }
.gallery-thumb--6 { background: linear-gradient(135deg, #fde8c8 0%, #d47c20 100%); }

.gallery-item__label {
  padding: 0.9rem 1rem;
}

.gallery-item__label h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.gallery-item__label p {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin: 0;
}

/* ── Modal / Lightbox ────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 48, 0.65);
  backdrop-filter: blur(4px);
}

.modal__box {
  position: relative;
  background: var(--card);
  border-radius: 20px;
  width: min(680px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(9, 94, 106, 0.3);
  animation: riseIn 0.25s ease-out both;
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-soft);
  line-height: 1;
  z-index: 1;
}

.modal__close:hover {
  color: var(--text);
}

.modal__thumb {
  width: 100%;
  height: 220px;
  border-radius: 20px 20px 0 0;
  background-size: cover;
  background-position: center;
}

.modal__body {
  padding: 1.5rem 1.75rem 2rem;
  text-align: left;
}

.modal__title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.modal__info {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  font-size: 0.96rem;
}

/* ── Modal Form ──────────────────────────────── */
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
}

.form-row input,
.form-row textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--brand);
}

.modal__form-heading {
  margin-bottom: 0.75rem;
}

.modal__form-submit {
  width: 100%;
}

.modal__form-success {
  color: var(--brand-dark);
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0;
}

@media (max-width: 920px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
