:root {
  --primary: #0f6b86;
  --primary-dark: #081c2d;
  --accent: #c7f284;
  --accent-strong: #a9df44;
  --soft-accent: #eefafc;
  --whatsapp: #25d366;
  --text: #16202b;
  --muted: #607287;
  --border: rgba(8, 28, 45, 0.08);
  --shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 28%);
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Outfit", sans-serif;
}

a {
  text-decoration: none;
}

.topbar {
  background: #061522;
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 0;
  font-size: 14px;
}

.topbar a,
.topbar span {
  color: rgba(255, 255, 255, 0.94);
}

.topbar i {
  margin-right: 6px;
  color: #d9f890;
}

.book-mini-btn,
.btn-whatsapp,
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.book-mini-btn {
  padding: 8px 14px;
  background: var(--whatsapp);
  color: #fff;
}

.header {
  top: 44px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  z-index: 997;
  transition: all 0.3s ease;
}

.header.header-scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--border);
}

.header .container {
  min-height: 78px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.logo strong {
  display: block;
  font-size: 1.08rem;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  font-size: 1.2rem;
}

.navbar {
  display: flex;
  align-items: center;
  position: static;
}

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

.navbar a {
  color: #264056;
  font-weight: 600;
  font-size: 14px;
}

.navbar a.active,
.navbar a:hover {
  color: var(--primary);
}

.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  color: var(--primary-dark);
  cursor: pointer;
}

.hero {
  margin-top: 122px;
  padding: 92px 0 58px;
  background:
    radial-gradient(circle at top left, rgba(199, 242, 132, 0.26), transparent 28%),
    linear-gradient(135deg, #061522 0%, #0b3147 45%, #0f6b86 100%);
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  color: #fff;
}

.eyebrow,
.section-kicker,
.panel-badge,
.service-label,
.list-pill {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.panel-badge {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.section-kicker,
.list-pill,
.service-label {
  background: var(--soft-accent);
  color: var(--primary-dark);
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.04;
  margin: 18px 0 14px;
  max-width: 660px;
}

.hero-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
}

.hero-actions,
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 24px;
}

.hero-highlights {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
}

.hero-highlights i {
  color: #d9f890;
  margin-right: 6px;
}

.hero-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.hero-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 128px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 32px rgba(4, 17, 27, 0.28);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 128px;
  object-fit: cover;
}

.btn-main {
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--accent), #e8ffb0);
  color: #13202d;
  box-shadow: 0 14px 30px rgba(199, 242, 132, 0.24);
}

.btn-main:hover {
  color: #13202d;
  transform: translateY(-2px);
}

.btn-whatsapp {
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--whatsapp), #179b51);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.26);
}

.btn-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 28px;
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 35px rgba(4, 17, 27, 0.28);
}

.hero-panel h3 {
  margin: 14px 0 16px;
  font-size: 1.55rem;
}

.panel-list {
  display: grid;
  gap: 12px;
}

.panel-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.panel-item i {
  font-size: 1.1rem;
  color: #dff9a7;
}

.panel-item strong {
  display: block;
  margin-bottom: 4px;
}

.panel-item span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.mini-proof div {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.mini-proof strong {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}

.mini-proof span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

.trust-strip {
  margin-top: -18px;
  position: relative;
  z-index: 3;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.trust-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
}

.trust-card span {
  color: var(--muted);
  font-size: 0.93rem;
}

.section {
  padding: 90px 0;
}

.section-light {
  background: #f5fbfd;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(1.95rem, 4vw, 2.95rem);
  margin: 14px 0 12px;
}

.section-heading p,
.section-intro p,
.booking-note,
.footer p,
.standards-card p {
  color: var(--muted);
}

.service-stack {
  display: grid;
  gap: 16px;
}

.service-panel,
.checklist-card,
.testimonial-card,
.standards-card,
.booking-card,
.booking-form-wrap,
.process-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.service-panel header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-price {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 28, 45, 0.08);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
}

.service-panel h3 {
  margin: 8px 0 0;
}

.service-panel p,
.service-panel li,
.testimonial-card p,
.booking-card p {
  color: var(--muted);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--soft-accent);
  color: var(--primary);
  font-size: 1.15rem;
}

.service-panel ul,
.checklist-card ul,
.booking-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}

.service-panel li::before {
  content: "•";
  color: var(--primary);
  margin-right: 8px;
}

.panel-primary {
  background: linear-gradient(135deg, #0f6b86 0%, #0a4a61 100%);
  color: #fff;
  border: none;
}

.panel-primary p,
.panel-primary li {
  color: rgba(255, 255, 255, 0.86);
}

.panel-primary .service-label {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.panel-primary .service-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.panel-primary .service-price {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.panel-primary li::before {
  color: #dff9a7;
}

.panel-accent {
  border: 2px solid rgba(199, 242, 132, 0.65);
  background: linear-gradient(180deg, #fbfff3 0%, #ffffff 100%);
}

.checklist {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

.standards-card {
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f3fbfe 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.process-card h3 {
  margin: 14px 0 10px;
  font-size: 1.25rem;
}

.process-card p {
  color: var(--muted);
  margin: 0;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #0a4a61);
  color: #fff;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.checklist-card ul {
  margin-top: 16px;
}

.checklist-card li {
  color: var(--muted);
  margin-bottom: 10px;
}

.checklist-card i,
.booking-card i {
  color: var(--primary);
  margin-right: 8px;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.testimonial-card {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: "“";
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 52px;
  color: rgba(15, 107, 134, 0.12);
  font-family: Georgia, serif;
}

.testimonial-card .stars {
  color: #f6b941;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.testimonial-card span {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.spotlight-card {
  background: linear-gradient(180deg, #081c2d 0%, #0d3348 100%);
}

.spotlight-card p,
.spotlight-card h5,
.spotlight-card span {
  color: #fff;
}

.spotlight-card::after {
  color: rgba(255, 255, 255, 0.12);
}

.booking {
  background: linear-gradient(180deg, #f9fcff 0%, #eef8fb 100%);
}

.booking-card {
  background: linear-gradient(135deg, #081c2d 0%, #0b3349 100%);
  color: #fff;
}

.booking-card .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.booking-card h2 {
  margin: 14px 0 12px;
}

.booking-card p,
.booking-card span {
  color: rgba(255, 255, 255, 0.84);
}

.price-summary {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.price-summary span {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.booking-steps {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.booking-steps div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.booking-steps strong {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dff9a7;
  color: #10202e;
}

.booking-form label {
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-form .form-control,
.booking-form .form-select {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: none;
}

.booking-form textarea.form-control {
  min-height: auto;
}

.booking-note i {
  color: var(--primary);
  margin-right: 6px;
}

.gallery {
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfd 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 21, 34, 0.06) 0%, rgba(6, 21, 34, 0.78) 100%);
}

.gallery-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}

.gallery-copy span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-copy h4 {
  margin: 0;
  font-size: 1.08rem;
}

.gallery-card-wide {
  grid-row: span 2;
  min-height: 100%;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-socials a:hover {
  background: var(--accent);
  color: #13202d;
}

.footer {
  background: #061522;
  color: rgba(255, 255, 255, 0.92);
  padding: 30px 0;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.whatsapp-float {
  bottom: 86px;
  background: var(--whatsapp);
  font-size: 1.3rem;
}

.back-to-top {
  bottom: 22px;
  background: var(--primary-dark);
  font-size: 1.6rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .hero-shell,
  .checklist-grid,
  .review-grid,
  .trust-grid,
  .process-grid,
  .hero-photo-strip,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-shell,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .navbar {
    position: static;
  }

  .navbar ul {
    display: none;
  }

  .navbar.navbar-mobile ul {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    width: auto;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }

  .navbar.navbar-mobile li {
    width: 100%;
  }

  .navbar.navbar-mobile a {
    display: block;
    padding: 12px 10px;
  }
}

@media (max-width: 767px) {
  .service-panel header {
    flex-direction: column;
  }

  .service-meta {
    width: 100%;
    justify-content: space-between;
  }

  .topbar {
    display: none;
  }

  .header {
    top: 0;
  }

  .hero {
    margin-top: 78px;
    padding-top: 72px;
  }

  .section {
    padding: 72px 0;
  }

  .trust-grid,
  .checklist-grid,
  .process-grid,
  .hero-photo-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-wide {
    grid-row: span 1;
  }

  .mini-proof {
    grid-template-columns: 1fr;
  }
}
