:root {
  --bg: #f3f8fc;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --text: #102f4e;
  --muted: #526983;
  --brand: #11558c;
  --brand-deep: #0a345b;
  --accent: #41b6df;
  --accent-soft: #e8f7fd;
  --offer: #f2bb14;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(9, 33, 54, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 0%, rgba(17, 85, 140, 0.14), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(65, 182, 223, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #edf5fb 100%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.offer-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(120deg, #f1b40d, #ffd657);
  color: #2c2300;
  text-align: center;
  font-size: 0.94rem;
  font-weight: 700;
}

.coupon-code {
  display: inline-block;
  padding: 0.12rem 0.42rem;
  border-radius: 8px;
  background: var(--brand-deep);
  color: #fff;
  letter-spacing: 0.02em;
}

.offer-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: var(--brand-deep);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: space-between;
  padding: 0.8rem 4vw;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 85, 140, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--brand-deep);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid rgba(17, 85, 140, 0.14);
}

.nav {
  display: none;
  gap: 1.1rem;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.landing-main,
footer {
  width: min(1180px, 94vw);
  margin: 0 auto;
}

.landing-main {
  padding: 1rem 0 4.5rem;
}

section {
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.82rem 1.22rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--accent));
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 85, 140, 0.22);
}

.header-cta {
  padding: 0.78rem 1rem;
  font-size: 0.88rem;
  line-height: 1;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 640px;
  box-shadow: var(--shadow);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 18, 31, 0.74) 0%, rgba(8, 26, 42, 0.56) 42%, rgba(8, 26, 42, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 13, 24, 0.2), rgba(4, 13, 24, 0.38));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 640px;
  width: min(620px, 100%);
  padding: 2rem 1.25rem;
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 4.6rem);
  max-width: 9ch;
}

.hero-copy {
  margin-top: 0.95rem;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 3vw, 1.24rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hero-book-btn {
  background: #fff;
  color: var(--brand-deep);
}

.hero-call-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.hero-call-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.hero-cta-note {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.section-head-centered {
  text-align: center;
}

.section-head-centered h2 {
  font-size: clamp(1.75rem, 5vw, 2.6rem);
}

.section-head-centered p {
  max-width: 40ch;
  margin: 0.7rem auto 0;
  color: var(--muted);
  font-size: 1rem;
}

.trust-bar,
.problem-section,
.services-section,
.reviews-section,
.results-section,
.offer-section,
.process-section,
.booking-section,
.local-section {
  background: var(--surface);
  border: 1px solid rgba(17, 85, 140, 0.11);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-bar,
.problem-section,
.services-section,
.reviews-section,
.results-section,
.offer-section,
.process-section,
.booking-section,
.local-section {
  padding: 1.25rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.trust-bar article {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: var(--surface-soft);
  border: 1px solid rgba(17, 85, 140, 0.1);
}

.trust-bar strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

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

.problem-section .section-head-centered p {
  max-width: 34ch;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.service-card {
  padding: 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fafdff, #f0f7fd);
  border: 1px solid rgba(17, 85, 140, 0.11);
}

.service-card h3 {
  font-size: 1.08rem;
}

.service-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

blockquote {
  margin: 0;
  padding: 1.3rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfdff, #f2f8fd);
  border: 1px solid rgba(17, 85, 140, 0.12);
  box-shadow: 0 10px 24px rgba(10, 52, 91, 0.08);
}

.review-stars {
  color: #f3b700;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

blockquote p {
  color: #1d3c5a;
}

blockquote cite {
  display: inline-block;
  margin-top: 0.85rem;
  font-style: normal;
  font-weight: 700;
  color: var(--brand-deep);
}

blockquote cite::before {
  content: "- ";
  color: rgba(10, 52, 91, 0.7);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

.proof-card {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid rgba(17, 85, 140, 0.1);
  box-shadow: 0 10px 22px rgba(10, 52, 91, 0.08);
}

.proof-card img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  cursor: zoom-in;
}

.proof-card figcaption {
  padding: 0.95rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-helper {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.offer-section {
  text-align: center;
  background: linear-gradient(180deg, #fff7de, #fffdf4);
}

.offer-cta,
.final-cta-btn {
  margin-top: 1rem;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.steps article {
  padding: 1rem;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid rgba(17, 85, 140, 0.11);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 700;
}

.steps h3 {
  margin-top: 0.7rem;
  font-size: 1.05rem;
}

.steps p {
  margin-top: 0.42rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.booking-section {
  display: grid;
  gap: 1rem;
}

.final-cta-top {
  text-align: center;
}

.final-cta-top p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.dark-note {
  color: var(--muted);
}

.quick-quote-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.quote-request-panel {
  margin-top: 0.25rem;
}

.quote-form-only {
  grid-template-columns: 1fr;
}

.quick-quote-copy {
  padding: 1.25rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff, #eef6fb);
  border: 1px solid rgba(17, 85, 140, 0.1);
}

.quick-quote-copy h3 {
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
}

.quick-quote-copy p {
  color: var(--muted);
}

.quote-reassurance {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.quote-reassurance li + li {
  margin-top: 0.35rem;
}

.quote-form {
  display: grid;
  gap: 0.78rem;
  padding: 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17, 85, 140, 0.1);
  box-shadow: 0 14px 30px rgba(9, 33, 54, 0.06);
}

.quote-form-only .quote-form {
  width: min(760px, 100%) !important;
  margin: 0 auto;
}

.quote-request-panel.quote-form-only {
  width: 100%;
  display: block;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.78rem;
}

.form-status {
  display: none;
  margin: 0 0 0.2rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.success {
  display: block;
  background: #e9f8ef;
  color: #166534;
  border: 1px solid #7ccca0;
  line-height: 1.6;
}

.form-status.error {
  display: block;
  background: #fdecec;
  color: #991b1b;
  border: 1px solid #f2a9a9;
}

label {
  display: grid;
  gap: 0.34rem;
  font-size: 0.98rem;
  font-weight: 600;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.78rem;
  border-radius: 12px;
  border: 1px solid rgba(17, 85, 140, 0.28);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(65, 182, 223, 0.34);
  border-color: var(--brand);
}

.quote-form .btn-primary {
  border: none;
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 1rem;
}

.chip-wrap span {
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: #f2f9ff;
  border: 1px solid rgba(17, 85, 140, 0.16);
  font-size: 0.9rem;
}

footer {
  margin: 2.5rem auto 5rem;
  text-align: center;
  color: var(--muted);
}

footer p {
  margin: 0.25rem 0;
}

footer a {
  color: var(--brand-deep);
  text-decoration: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(5, 17, 30, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(1100px, 90vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-nav {
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  font-size: 1.35rem;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .offer-bar {
    flex-direction: row;
  }

  .hero-content {
    padding: 3rem;
  }

  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-quote-panel {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  }

  .quote-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .topbar {
    gap: 1rem;
    padding: 0.95rem 3vw;
  }

  .brand {
    font-size: 1.18rem;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .nav {
    display: flex;
  }

  .header-cta {
    font-size: 0.96rem;
    padding: 0.88rem 1.16rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    min-height: 700px;
    padding: 3.6rem;
  }

  .trust-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
