/* ==========================================================================
   BURGERSFORT WATER DRILLING — PUBLIC WEBSITE STYLES

   CASCADE MAP: tokens/reset → shared layout → navigation → hero → about →
   services → process → pricing → gallery → FAQ/contact → footer → motion →
   responsive rules → final launch refinements.

   EDITING TIP: Start with :root for site-wide colours. Later matching rules
   take priority; DEVELOPER_GUIDE.md explains where final overrides live.
   ========================================================================== */
:root {
  --ink: #04131f;
  --ink-2: #071d2d;
  --panel: #0a2639;
  --blue: #19a9ff;
  --blue-2: #66d8ff;
  --gold: #d9b56d;
  --paper: #f4f7f8;
  --white: #fff;
  --muted: #9eb1bd;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --body: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
  --serif: "Playfair Display", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}
img {
  display: block;
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.section {
  padding: 120px 0;
}
.section-kicker {
  display: block;
  color: var(--blue);
  font: 700 0.68rem var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 58px;
}
.section-heading h2,
.about-copy h2,
.pricing-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font: 700 clamp(2.7rem, 5vw, 5.4rem) / 0.98 var(--display);
  letter-spacing: -0.055em;
}
.section-heading h2 em,
.about-copy h2 em,
.pricing-copy h2 em,
.faq-intro h2 em,
.contact-copy h2 em,
.hero h1 em {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--blue-2);
}
.section-heading > p {
  max-width: 430px;
  color: #60717d;
  line-height: 1.8;
}
.section-heading.centered {
  display: block;
  text-align: center;
}
.section-heading.centered h2 {
  margin: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 800 0.72rem var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.3s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #057bd1);
  color: white;
  box-shadow: 0 14px 35px rgba(25, 169, 255, 0.28);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(25, 169, 255, 0.38);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: white;
  color: var(--ink);
}
.full {
  width: 100%;
}

/* Animated water canvas sits over the hero but never blocks interaction. */
#water-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 3;
  pointer-events: none;
  opacity: 0.8;
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.35s;
}
.site-header.scrolled {
  background: rgba(4, 19, 31, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-shell {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(102, 216, 255, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(25, 169, 255, 0.12);
  color: var(--blue-2);
  font-size: 1.15rem;
  box-shadow: inset 0 0 24px rgba(25, 169, 255, 0.12);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-copy strong {
  font: 800 0.95rem var(--display);
  letter-spacing: 0.04em;
}
.brand-copy small {
  margin-top: 5px;
  font: 600 0.61rem var(--display);
  letter-spacing: 0.21em;
  color: #b4cbd8;
}
.desktop-nav {
  margin-left: auto;
  display: flex;
  gap: 27px;
}
.desktop-nav a {
  color: #c7d5dd;
  font: 600 0.72rem var(--display);
  transition: 0.25s;
}
.desktop-nav a:hover {
  color: white;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 13px 18px;
  font: 700 0.68rem var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-cta:hover {
  background: white;
  color: var(--ink);
}
.menu-button,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(1, 12, 22, 0.96) 0%,
      rgba(1, 12, 22, 0.76) 43%,
      rgba(1, 12, 22, 0.08) 78%
    ),
    url("hero-premium.webp") center/cover no-repeat;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 70% 74%,
      rgba(25, 169, 255, 0.22),
      transparent 26%
    ),
    linear-gradient(180deg, transparent 72%, var(--ink));
  z-index: 1;
}
.hero-water-ring {
  position: absolute;
  right: 10%;
  top: 22%;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  border: 1px solid rgba(102, 216, 255, 0.28);
  box-shadow:
    0 0 0 26px rgba(25, 169, 255, 0.04),
    0 0 90px rgba(25, 169, 255, 0.2);
  z-index: 2;
  animation: waterRing 5s ease-in-out infinite;
}
.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.2fr 0.58fr;
  gap: 80px;
  align-items: center;
  padding-top: 135px;
  padding-bottom: 140px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8d2df;
  font: 700 0.68rem var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 36px;
  height: 1px;
  background: var(--blue);
}
.hero h1 {
  font: 800 clamp(4rem, 7.4vw, 8.6rem) / 0.86 var(--display);
  letter-spacing: -0.075em;
  margin: 28px 0 30px;
  max-width: 920px;
}
.hero h1 em {
  display: inline-block;
  font-size: 0.86em;
}
.hero-copy > p {
  max-width: 670px;
  color: #c4d2da;
  font-size: 1.06rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-trust {
  display: flex;
  gap: 38px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-trust div {
  display: flex;
  flex-direction: column;
}
.hero-trust strong {
  font: 800 0.88rem var(--display);
  color: var(--blue-2);
}
.hero-trust span {
  font-size: 0.68rem;
  color: #91a6b2;
  margin-top: 5px;
}
.booking-card {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(10, 38, 57, 0.92),
    rgba(5, 21, 34, 0.82)
  );
  border: 1px solid rgba(102, 216, 255, 0.22);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.booking-card::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  right: -100px;
  top: -110px;
  background: radial-gradient(circle, var(--blue), transparent 65%);
  opacity: 0.22;
}
.card-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 700 0.62rem var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cfe7f3;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #64e3a4;
  box-shadow: 0 0 0 0 rgba(100, 227, 164, 0.6);
  animation: pulse 1.8s infinite;
}
.mini-label {
  margin: 34px 0 8px;
  color: var(--blue-2);
  font: 700 0.66rem var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.booking-card h2 {
  font: 700 2.2rem/1.05 var(--display);
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.package-price {
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.package-price small {
  color: #8fa6b2;
  margin-bottom: 8px;
}
.package-price strong {
  font: 800 2.2rem var(--display);
  color: var(--gold);
}
.booking-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #d0dde4;
  font-size: 0.72rem;
}
.booking-card li i {
  color: var(--blue);
}
.card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  padding: 17px 0;
  border-bottom: 1px solid var(--blue);
  font: 700 0.72rem var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.card-note {
  display: block;
  color: #76909e;
  margin-top: 16px;
}
.hero-bottom {
  position: absolute;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
  bottom: 34px;
  display: flex;
  gap: 60px;
  color: #b8cbd6;
  font-size: 0.7rem;
}
.hero-bottom i {
  color: var(--blue);
  margin-right: 8px;
}

/* Moving service marquee */
.marquee {
  background: var(--blue);
  overflow: hidden;
  padding: 15px 0;
  color: white;
}
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  animation: marquee 24s linear infinite;
  font: 800 0.72rem var(--display);
  letter-spacing: 0.15em;
}
.marquee-track i {
  opacity: 0.55;
}

/* About */
.about {
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  height: 700px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.experience-badge {
  position: absolute;
  right: -24px;
  bottom: 42px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  border: 8px solid white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow);
}
.experience-badge strong {
  font: 800 1.3rem var(--display);
  color: var(--blue-2);
}
.experience-badge span {
  font-size: 0.7rem;
  line-height: 1.45;
  margin-top: 8px;
}
.about-copy .lead {
  font-size: 1.15rem;
  color: #283e4a;
  line-height: 1.8;
  margin-top: 35px;
}
.about-copy > p:not(.lead) {
  color: #6b7b84;
  line-height: 1.8;
}
.reason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 34px;
}
.reason-grid div {
  padding: 22px;
  border: 1px solid #dbe5ea;
  border-radius: 18px;
  background: #f8fbfc;
}
.reason-grid i {
  color: var(--blue);
  font-size: 1.25rem;
}
.reason-grid strong,
.reason-grid span {
  display: block;
}
.reason-grid strong {
  font: 800 0.84rem var(--display);
  margin: 14px 0 7px;
}
.reason-grid span {
  font-size: 0.72rem;
  color: #70818b;
  line-height: 1.5;
}

/* Services */
.services {
  background: #edf3f5;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  background: white;
  border-radius: 22px;
  padding: 30px;
  min-height: 290px;
  border: 1px solid #dde7eb;
  transition: 0.35s;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(25, 169, 255, 0.17),
    transparent 65%
  );
}
.service-card:hover {
  transform: translateY(-8px);
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #e7f6ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.service-card h3 {
  font: 800 1.18rem var(--display);
  margin: 45px 0 13px;
}
.service-card p {
  color: #72828b;
  line-height: 1.65;
  font-size: 0.85rem;
}
.service-card:hover p {
  color: #a9bac4;
}
.service-card a {
  position: absolute;
  left: 30px;
  bottom: 28px;
  color: var(--blue);
  font: 800 0.7rem var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-card a i {
  margin-left: 7px;
}

/* Process */
.process {
  position: relative;
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(25, 169, 255, 0.13),
    transparent 35%
  );
}
.process .container {
  position: relative;
}
.process-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 270px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.5;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 70px;
}
.process-card {
  text-align: center;
  position: relative;
}
.process-card > span {
  position: absolute;
  right: 12px;
  top: -12px;
  color: #58707e;
  font: 800 0.68rem var(--display);
}
.process-icon {
  position: relative;
  margin: auto;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(102, 216, 255, 0.35);
  background: #092437;
  color: var(--blue-2);
  font-size: 1.4rem;
  box-shadow: 0 0 0 10px rgba(25, 169, 255, 0.035);
}
.process-card h3 {
  font: 800 1rem var(--display);
  margin: 24px 0 10px;
}
.process-card p {
  color: #8fa3af;
  font-size: 0.72rem;
  line-height: 1.55;
}

/* Pricing */
.pricing {
  background: white;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 95px;
  align-items: center;
}
.pricing-copy > p {
  color: #687984;
  line-height: 1.8;
  font-size: 1rem;
  margin: 30px 0;
}
.price-benefits {
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: #344b57;
  font-size: 0.82rem;
}
.price-benefits i {
  color: var(--blue);
  margin-right: 10px;
}
.calculator {
  background: linear-gradient(145deg, #062238, #041724);
  border-radius: 30px;
  padding: 36px;
  color: white;
  box-shadow: var(--shadow);
}
.calculator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.calculator-header div {
  display: flex;
  flex-direction: column;
}
.calculator-header span {
  font: 800 0.74rem var(--display);
  letter-spacing: 0.13em;
}
.calculator-header small {
  color: #7893a2;
  margin-top: 6px;
}
.calculator-header > i {
  color: var(--blue);
  font-size: 1.4rem;
}
.field-label {
  display: block;
  margin-top: 28px;
  color: #9fb3be;
  font-size: 0.72rem;
}
.field-label select {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0b2a40;
  color: white;
  outline: none;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}
.check-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0a2639;
  padding: 14px;
  border-radius: 12px;
  font-size: 0.72rem;
  cursor: pointer;
}
.check-grid input {
  accent-color: var(--blue);
}
.estimate-box {
  padding: 28px 0;
}
.estimate-box small,
.estimate-box strong,
.estimate-box p {
  display: block;
}
.estimate-box small {
  color: #849ba8;
}
.estimate-box strong {
  font: 800 3.3rem var(--display);
  color: var(--gold);
  letter-spacing: -0.05em;
  margin: 7px 0;
}
.estimate-box p {
  color: #91a8b4;
  font-size: 0.72rem;
  min-height: 20px;
}

/* Gallery */
.gallery {
  background: #061824;
  color: white;
}
.section-heading.light > p {
  color: #8fa4b0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 290px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #0b273b;
  cursor: pointer;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-column: span 7;
}
.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  grid-column: span 5;
}
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  grid-column: span 6;
}
.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: 0.65s;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.78));
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  font: 700 0.68rem var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Testimonials */
.testimonials {
  background: #f1f6f8;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 22px;
  border: 1px solid #dce7ec;
}
.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}
.testimonial-card p {
  font: 600 1.14rem/1.65 var(--serif);
  margin: 24px 0;
}
.testimonial-card strong,
.testimonial-card span {
  display: block;
}
.testimonial-card strong {
  font: 800 0.76rem var(--display);
}
.testimonial-card span {
  font-size: 0.68rem;
  color: #81929b;
  margin-top: 5px;
}

/* FAQ */
.faq {
  background: white;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 100px;
}
.faq-intro > p {
  color: #70808a;
  line-height: 1.8;
  margin-top: 30px;
}
.faq-item {
  border-top: 1px solid #d8e2e7;
}
.faq-item:last-child {
  border-bottom: 1px solid #d8e2e7;
}
.faq-item button {
  width: 100%;
  border: 0;
  background: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font: 800 0.84rem var(--display);
}
.faq-item button i {
  transition: 0.3s;
  color: var(--blue);
}
.faq-item > div {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
}
.faq-item p {
  margin: 0;
  padding: 0 40px 22px 0;
  color: #6d7d86;
  line-height: 1.7;
  font-size: 0.85rem;
}
.faq-item.open > div {
  max-height: 220px;
}
.faq-item.open button i {
  transform: rotate(45deg);
}
.service-areas {
  background: var(--blue);
  color: white;
  padding: 24px 0;
}
.service-areas .container {
  display: flex;
  align-items: center;
  gap: 26px;
}
.service-areas span {
  font: 800 0.65rem var(--display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}
.service-areas p {
  margin: 0;
  font-size: 0.78rem;
}

/* Contact */
.contact {
  position: relative;
  color: white;
  background: var(--ink);
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 17, 28, 0.96) 0%,
      rgba(3, 17, 28, 0.82) 45%,
      rgba(3, 17, 28, 0.52)
    ),
    url("cta-premium.webp") center/cover no-repeat;
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 90px;
  align-items: center;
}
.light-kicker {
  color: var(--blue-2);
}
.contact-copy > p {
  color: #b0c1ca;
  line-height: 1.8;
  margin: 30px 0 36px;
  max-width: 540px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-details a {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-details i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(25, 169, 255, 0.13);
  color: var(--blue-2);
}
.contact-details small,
.contact-details span {
  display: block;
}
.contact-details small {
  font-size: 0.6rem;
  color: #8299a6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-details span {
  font: 700 0.82rem var(--display);
}
.appointment-form {
  background: white;
  color: var(--ink);
  border-radius: 30px;
  padding: 38px;
  box-shadow: var(--shadow);
}
.form-heading > span {
  color: var(--blue);
  font: 800 0.62rem var(--display);
  letter-spacing: 0.14em;
}
.form-heading h3 {
  font: 800 2rem var(--display);
  margin: 8px 0;
}
.form-heading p {
  color: #71818a;
  font-size: 0.8rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.appointment-form label {
  display: block;
  margin-top: 15px;
  color: #536671;
  font-size: 0.68rem;
  font-weight: 700;
}
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #d8e3e8;
  border-radius: 11px;
  background: #f7fafb;
  outline: none;
}
.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25, 169, 255, 0.09);
}
.appointment-form button {
  margin-top: 18px;
}
.form-note {
  text-align: center;
  color: #87979f;
  font-size: 0.62rem;
}
.form-note i {
  color: var(--blue);
}
.flash {
  padding: 12px;
  border-radius: 10px;
  margin-top: 14px;
  font-size: 0.76rem;
}
.flash.success {
  background: #e9fbf1;
  color: #17623d;
}
.flash.error {
  background: #fff0f0;
  color: #8a2222;
}
.map-section iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(0.78) contrast(1.05);
}

/* Footer + floating actions */
footer {
  background: #020b11;
  color: white;
  padding: 68px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 70px;
}
.footer-brand {
  margin-bottom: 20px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-grid p,
.footer-grid a,
.footer-grid span {
  color: #81949f;
  font-size: 0.75rem;
  line-height: 1.7;
}
.footer-grid > div > strong {
  font: 800 0.68rem var(--display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 45px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #647985;
  font-size: 0.65rem;
}
.footer-socials {
  margin-top: 8px;
}
.footer-grid .facebook-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: #dce9ef;
  font: 700 0.72rem var(--display);
  letter-spacing: 0.03em;
}
.facebook-link i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1877f2;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.facebook-link:hover {
  color: #fff;
}
.facebook-link:hover i,
.facebook-link:focus-visible i {
  transform: translateY(-2px) scale(1.05);
  background: #0f68d8;
  box-shadow: 0 12px 28px rgba(24, 119, 242, 0.35);
}
.facebook-link:focus-visible {
  outline: 2px solid #67b7ff;
  outline-offset: 5px;
  border-radius: 24px;
}
.floating-book {
  position: fixed;
  right: 28px;
  bottom: 104px;
  z-index: 900;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), #087dc8);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  font: 800 0.52rem var(--display);
  letter-spacing: 0.08em;
  text-align: center;
}
.floating-book i {
  font-size: 1rem;
}
.floating-whatsapp {
  position: fixed;
  right: 36px;
  bottom: 32px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1fbd65;
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 45px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 1100px;
  max-height: 86vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  border: 0;
  background: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.15s;
}
@keyframes waterRing {
  50% {
    transform: scale(1.06);
    opacity: 0.58;
  }
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(100, 227, 164, 0);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }
  .menu-button {
    margin-left: auto;
    display: grid;
    gap: 7px;
    background: none;
    border: 0;
  }
  .menu-button span {
    width: 28px;
    height: 1px;
    background: white;
  }
  .mobile-nav {
    position: absolute;
    top: 88px;
    left: 20px;
    right: 20px;
    background: rgba(4, 19, 31, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
  }
  .mobile-nav.open {
    display: grid;
  }
  .mobile-nav a {
    color: white;
    padding: 13px;
    border-bottom: 1px solid var(--line);
  }
  .hero-grid,
  .about-grid,
  .pricing-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding-top: 150px;
    gap: 42px;
  }
  .booking-card {
    max-width: 520px;
  }
  .hero-bottom {
    display: none;
  }
  .about-grid,
  .pricing-grid,
  .faq-grid,
  .contact-grid {
    gap: 55px;
  }
  .about-media img {
    height: 560px;
  }
  .experience-badge {
    right: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 42px;
  }
  .process-line {
    display: none;
  }
  .gallery-grid {
    grid-auto-rows: 270px;
  }
  .gallery-item {
    grid-column: span 6 !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 88px 0;
  }
  .nav-shell {
    height: 76px;
  }
  .mobile-nav {
    top: 76px;
  }
  .brand-copy strong {
    font-size: 0.82rem;
  }
  .brand-copy small {
    font-size: 0.52rem;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  #water-canvas {
    height: 780px;
  }
  .hero {
    min-height: auto;
  }
  .hero-bg {
    background-position: 62% center;
  }
  .hero-grid {
    padding-top: 126px;
    padding-bottom: 92px;
  }
  .hero-water-ring {
    width: 240px;
    height: 240px;
    right: -60px;
    top: 19%;
  }
  .hero h1 {
    font-size: 3.55rem;
  }
  .hero-copy > p {
    font-size: 0.92rem;
  }
  .hero-actions,
  .hero-trust {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-trust {
    gap: 16px;
  }
  .booking-card {
    padding: 25px;
  }
  .booking-card h2 {
    font-size: 1.8rem;
  }
  .package-price strong {
    font-size: 1.9rem;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 22px;
  }
  .section-heading h2,
  .about-copy h2,
  .pricing-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 2.7rem;
  }
  .about-media img {
    height: 450px;
  }
  .experience-badge {
    width: 145px;
    height: 145px;
    right: 10px;
    bottom: 18px;
  }
  .reason-grid,
  .service-grid,
  .testimonial-grid,
  .form-row,
  .check-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 260px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-card p {
    padding: 0 5px;
  }
  .calculator,
  .appointment-form {
    padding: 24px;
  }
  .estimate-box strong {
    font-size: 2.7rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }
  .gallery-item {
    grid-column: auto !important;
  }
  .service-areas .container {
    display: block;
  }
  .service-areas p {
    margin-top: 9px;
    line-height: 1.6;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .floating-book {
    width: 64px;
    height: 64px;
    right: 14px;
    bottom: 90px;
  }
  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
  }
  .map-section iframe {
    height: 340px;
  }
}

/* ===== 2026 cinematic redesign ===== */
:root {
  --ink: #04131d;
  --blue: #087b9f;
  --cyan: #35d4ff;
  --ice: #eafaff;
  --sand: #f4f0e8;
}
body {
  background: #f6f8f8;
  color: #10222a;
}
.site-header {
  background: transparent;
  border: 0;
}
.site-header.scrolled {
  background: rgba(3, 18, 28, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.brand-copy strong,
.brand-copy small,
.desktop-nav a {
  color: #fff;
}
.nav-cta {
  background: #fff;
  color: #062532;
}
.menu-button span {
  background: #fff;
}
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #02111b;
  color: #fff;
  padding: 130px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/static/hero-premium.webp");
  background-size: cover;
  background-position: center 58%;
  transform: scale(1.035);
  filter: saturate(0.92) contrast(1.06);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(1, 12, 20, 0.94) 0%,
      rgba(1, 15, 24, 0.78) 36%,
      rgba(2, 18, 29, 0.22) 67%,
      rgba(1, 15, 24, 0.12) 100%
    ),
    linear-gradient(0deg, rgba(0, 9, 15, 0.72), transparent 40%);
}
.hero-glow {
  position: absolute;
  width: 45vw;
  height: 45vw;
  right: -12vw;
  top: 8vh;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(48, 211, 255, 0.24),
    transparent 65%
  );
  filter: blur(25px);
}
.hero-grid {
  position: relative;
  z-index: 3;
  display: block;
}
.hero-copy {
  max-width: 780px;
}
.hero .eyebrow {
  color: #b9efff;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}
.hero .eyebrow span {
  background: #45d8ff;
  box-shadow: 0 0 18px #45d8ff;
}
.hero h1 {
  font-family: Manrope, sans-serif;
  font-size: clamp(3.5rem, 7.4vw, 7.6rem);
  line-height: 0.91;
  letter-spacing: -0.07em;
  margin: 24px 0 26px;
  max-width: 1050px;
}
.hero h1 em {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #8ce8ff;
  letter-spacing: -0.045em;
}
.hero-copy > p {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.75;
  color: rgba(238, 249, 255, 0.78);
  max-width: 650px;
}
.hero-actions {
  margin-top: 34px;
}
.btn {
  border-radius: 999px;
  padding: 16px 24px;
}
.btn-primary {
  background: linear-gradient(135deg, #4bddff, #0b9cc4);
  color: #02141e;
  box-shadow: 0 16px 45px rgba(24, 189, 231, 0.26);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 44px;
  color: rgba(235, 248, 255, 0.72);
  font-size: 0.88rem;
}
.hero-proof span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-proof i {
  color: #62ddff;
}
.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 5vw;
  bottom: 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-cue span {
  width: 45px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}
#water-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}
.section {
  padding: 120px 0;
}
.about {
  background: var(--sand);
}
.services {
  background: #031823;
  color: #fff;
}
.services .section-heading p,
.service-card p {
  color: rgba(232, 247, 252, 0.65);
}
.service-card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.025)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(67, 216, 255, 0.45);
}
.process {
  background: #f4f8f9;
}
.pricing {
  background: #061c27;
  color: #fff;
}
.gallery {
  background: #eef3f3;
}
.contact {
  background: #041722;
  color: #fff;
}
.appointment-form {
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}
@media (max-width: 900px) {
  .hero {
    min-height: 92svh;
    padding-top: 120px;
  }
  .hero-bg {
    background-position: 64% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(1, 12, 20, 0.92), rgba(1, 12, 20, 0.52)),
      linear-gradient(0deg, rgba(0, 9, 15, 0.8), transparent 45%);
  }
  .hero-copy {
    max-width: 680px;
  }
  .scroll-cue {
    display: none;
  }
}
@media (max-width: 640px) {
  .hero {
    min-height: 94svh;
    padding: 112px 0 62px;
  }
  .hero-bg {
    background-position: 68% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(1, 12, 20, 0.92), rgba(1, 12, 20, 0.58)),
      linear-gradient(0deg, rgba(0, 9, 15, 0.88), transparent 48%);
  }
  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }
  .hero-copy > p {
    font-size: 1rem;
    line-height: 1.65;
  }
  .hero-actions {
    display: grid;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-proof {
    gap: 13px;
    margin-top: 30px;
    display: grid;
  }
  .section {
    padding: 84px 0;
  }
  .nav-cta {
    display: none;
  }
}

/* ===== Mobile-first hero correction ===== */
@media (max-width: 700px) {
  .site-header {
    background: linear-gradient(
      180deg,
      rgba(2, 15, 24, 0.92),
      rgba(2, 15, 24, 0.45),
      transparent
    );
  }

  .nav-shell {
    height: 72px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .brand-copy strong {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .brand-copy small {
    font-size: 0.49rem;
    letter-spacing: 0.16em;
  }

  .hero {
    min-height: 100svh;
    display: block;
    padding: 0;
    background: #03131e;
    overflow: hidden;
  }

  /* The mobile image is its own cinematic panel instead of a desktop crop. */
  .hero-bg {
    inset: 0 0 auto;
    height: 52svh;
    min-height: 390px;
    max-height: 530px;
    background-position: 72% 58%;
    background-size: auto 100%;
    background-repeat: no-repeat;
    transform: none;
    filter: saturate(0.98) contrast(1.08) brightness(0.92);
  }

  .hero-shade {
    inset: 0 0 auto;
    height: 56svh;
    min-height: 420px;
    max-height: 570px;
    background:
      linear-gradient(
        180deg,
        rgba(1, 11, 18, 0.12) 0%,
        rgba(1, 12, 20, 0.08) 48%,
        rgba(3, 19, 30, 0.78) 82%,
        #03131e 100%
      ),
      linear-gradient(90deg, rgba(1, 12, 20, 0.28), transparent 45%);
  }

  .hero-glow {
    width: 68vw;
    height: 68vw;
    right: -24vw;
    top: 18svh;
    opacity: 0.65;
  }

  #water-canvas {
    inset: 0 0 auto;
    height: 52svh;
    max-height: 530px;
  }

  .hero-grid {
    position: relative;
    z-index: 4;
    padding-top: min(52svh, 530px);
    padding-bottom: 56px;
  }

  .hero-copy {
    max-width: none;
    margin-top: -5px;
    padding: 28px 0 0;
  }

  .hero .eyebrow {
    font-size: 0.64rem;
    line-height: 1.55;
    letter-spacing: 0.1em;
    max-width: 330px;
  }

  .hero h1 {
    margin: 16px 0 18px;
    max-width: 350px;
    font-size: clamp(2.75rem, 13.4vw, 4rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
  }

  .hero-copy > p {
    max-width: 410px;
    font-size: 0.94rem;
    line-height: 1.65;
    color: rgba(236, 248, 253, 0.76);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    min-height: 52px;
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 0.8rem;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 10px;
    margin-top: 24px;
    font-size: 0.7rem;
  }

  .hero-proof span:last-child {
    grid-column: 1 / -1;
  }

  .marquee {
    position: relative;
    z-index: 5;
  }
}

@media (max-width: 390px) {
  .hero-bg {
    background-position: 75% 58%;
    min-height: 365px;
  }

  .hero-grid {
    padding-top: min(50svh, 500px);
  }

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

/* ===== 2026 premium light redesign ===== */
:root {
  --paper: #f4fbfe;
  --ink: #102b3b;
  --blue: #118fd1;
  --blue-2: #48c8ef;
  --gold: #d7a94b;
  --body: "Inter", sans-serif;
  --display: "Manrope", sans-serif;
  --serif: "Manrope", sans-serif;
}
body {
  background: #f5fbfd;
  color: var(--ink);
}
.container {
  width: min(1200px, calc(100% - 32px));
}
.site-header {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 43, 59, 0.08);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(16, 43, 59, 0.1);
}
.nav-shell {
  height: 82px;
}
.brand {
  color: var(--ink);
}
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(16, 43, 59, 0.18);
}
.brand-copy small {
  color: #4c7385;
}
.desktop-nav a {
  color: #385e70;
}
.desktop-nav a:hover {
  color: var(--blue);
}
.nav-cta {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}
.hero {
  min-height: 100svh;
  background: #dff4fb;
  color: var(--ink);
  align-items: center;
}
.hero-bg {
  background-image: url("image13.png");
  background-position: center 56%;
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.01);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 251, 253, 0.98) 0%,
    rgba(245, 251, 253, 0.92) 38%,
    rgba(245, 251, 253, 0.32) 63%,
    rgba(3, 20, 31, 0.12) 100%
  );
  z-index: 1;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 65%,
    rgba(245, 251, 253, 0.98)
  );
  z-index: 1;
}
.hero::after {
  display: none;
}
.hero-grid {
  grid-template-columns: minmax(0, 650px) 1fr;
  padding-top: 135px;
  padding-bottom: 110px;
}
.hero-copy {
  max-width: 650px;
}
.hero-brand {
  display: none;
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(16, 43, 59, 0.2);
  margin-bottom: 22px;
}
.eyebrow {
  color: #2f647b;
}
.hero h1 {
  font-size: clamp(3.8rem, 6.4vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  margin: 24px 0;
}
.hero h1 em {
  color: var(--blue);
  font-style: normal;
  font-family: var(--display);
  font-size: 0.72em;
}
.hero-copy > p {
  color: #41697c;
  font-size: 1.08rem;
}
.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(16, 43, 59, 0.14);
}
.hero-proof {
  color: #375e70;
  border-top-color: rgba(16, 43, 59, 0.13);
}
.hero-proof i {
  color: var(--blue);
}
.scroll-cue {
  color: var(--ink);
}
#water-canvas {
  z-index: 2;
  opacity: 0.9;
}
.section {
  padding: 104px 0;
}
.section-heading h2,
.about-copy h2,
.pricing-copy h2,
.faq-intro h2,
.contact-copy h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
}
.section-heading h2 em,
.about-copy h2 em,
.pricing-copy h2 em,
.faq-intro h2 em,
.contact-copy h2 em {
  font-style: normal;
  font-family: var(--display);
  color: var(--blue);
}
.about {
  background: white;
}
.about-media img {
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(38, 88, 108, 0.16);
}
.services {
  background: #eef8fc;
}
.service-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card.image-card {
  padding: 0;
  min-height: 430px;
  overflow: hidden;
  background: white;
  border-radius: 26px;
}
.image-card > img {
  height: 250px;
  object-fit: cover;
}
.service-card-body {
  padding: 28px 30px 34px;
  position: relative;
  min-height: 180px;
}
.service-card.image-card h3 {
  margin: 0 0 10px;
}
.service-card.image-card a {
  left: 30px;
  bottom: 24px;
}
.service-card.image-card:hover {
  background: white;
  color: var(--ink);
}
.service-card.image-card:hover p {
  color: #72828b;
}
.process {
  background: #103448;
}
.pricing {
  background: white;
}
.gallery {
  background: #11384c;
}
.testimonials {
  background: #eef8fc;
}
.contact-bg {
  background:
    linear-gradient(90deg, rgba(16, 52, 72, 0.94), rgba(16, 52, 72, 0.7)),
    url("cta-premium.webp") center/cover no-repeat;
}
footer {
  background: #0d2b3b;
}
.floating-book {
  display: none;
}
@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }
  .menu-button {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .pricing-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-auto-rows: 240px;
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, 640px);
  }
  .nav-shell {
    height: 72px;
  }
  .brand-logo {
    width: 48px;
    height: 48px;
  }
  .brand-copy strong {
    font-size: 0.78rem;
  }
  .brand-copy small {
    font-size: 0.5rem;
  }
  .site-header {
    background: rgba(255, 255, 255, 0.9);
  }
  .hero {
    min-height: 100svh;
    padding: 0;
    display: block;
    background: #eff9fc;
  }
  .hero-bg {
    height: 48svh;
    inset: 72px 0 auto;
    background-position: 66% center;
    transform: none;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      rgba(238, 249, 252, 0.02) 0%,
      rgba(238, 249, 252, 0.06) 58%,
      #eff9fc 100%
    );
    height: 58svh;
    top: 72px;
  }
  .hero-glow {
    display: none;
  }
  .hero-grid {
    display: block;
    padding-top: calc(48svh + 88px);
    padding-bottom: 42px;
  }
  .hero-copy {
    max-width: none;
  }
  .hero-brand {
    display: none;
  }
  .eyebrow {
    font-size: 0.58rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
    line-height: 0.98;
    margin: 16px 0 17px;
    letter-spacing: -0.055em;
  }
  .hero h1 br {
    display: none;
  }
  .hero h1 em {
    display: block;
    font-size: 0.72em;
    margin-top: 6px;
  }
  .hero-copy > p {
    font-size: 0.94rem;
    line-height: 1.65;
    margin: 0;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    font-size: 0.68rem;
  }
  .hero-proof span:last-child {
    grid-column: 1/-1;
  }
  .scroll-cue {
    display: none;
  }
  #water-canvas {
    height: 58svh !important;
    mix-blend-mode: screen;
  }
  .section {
    padding: 76px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 34px;
  }
  .section-heading > p {
    margin-top: 18px;
  }
  .about-grid {
    gap: 38px;
  }
  .about-media img {
    min-height: 350px;
    object-fit: cover;
  }
  .reason-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card.image-card {
    min-height: 390px;
  }
  .image-card > img {
    height: 220px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-line {
    display: none;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-item:nth-child(n) {
    grid-column: auto;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .appointment-form {
    padding: 24px;
    border-radius: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-bottom {
    gap: 20px;
  }
  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
  }
}
@media (max-width: 390px) {
  .hero-bg {
    height: 44svh;
    background-position: 68% center;
  }
  .hero-grid {
    padding-top: calc(44svh + 86px);
  }
  .hero h1 {
    font-size: 2.55rem;
  }
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .hero-proof span:last-child {
    grid-column: auto;
  }
}

/* ===== July polish: contrast, precisely anchored water and instant calculator ===== */
#water-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.72;
}

/* The brighter hero needs dark brand text; older dark-theme rules were more specific. */
.site-header .brand-copy strong {
  color: #103346 !important;
}
.site-header .brand-copy small {
  color: #397083 !important;
}
.site-header .desktop-nav a {
  color: #315d70 !important;
}
.site-header .desktop-nav a:hover {
  color: #008fc7 !important;
}
.site-header .menu-button span {
  background: #12394b !important;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 51, 70, 0.1);
  box-shadow: 0 8px 30px rgba(16, 51, 70, 0.08);
}
.hero .eyebrow {
  color: #24627a !important;
}
.hero .eyebrow span {
  background: #04a8dd !important;
  box-shadow: none !important;
}

/* Keep text crisp on pale sections, including small mobile labels. */
.hero-copy > p {
  color: #315f73 !important;
}
.hero-proof {
  color: #315f73 !important;
}
.section-kicker {
  color: #087fae;
}

/* The estimate has no delayed fade or number transition. */
.estimate-box strong,
.estimate-box p {
  transition: none !important;
  animation: none !important;
}
#calculator-total {
  font-variant-numeric: tabular-nums;
}

@media (max-width: 700px) {
  #water-canvas {
    height: 100%;
    opacity: 0.62;
  }
  .site-header .brand-copy strong {
    font-size: 0.76rem !important;
  }
  .site-header .brand-copy small {
    font-size: 0.49rem !important;
  }
  .hero .eyebrow {
    color: #24718c !important;
    font-weight: 800;
  }
}

/* ===== Actual photographed-water animation layer ===== */
.hero-bg {
  background: none !important;
  transform: none !important;
  filter: none !important;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.01);
}
#water-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: normal;
}
@media (max-width: 700px) {
  .hero-bg {
    height: 48svh;
    inset: 72px 0 auto !important;
  }
  .hero-photo {
    object-position: 66% center;
    transform: none;
  }
  #water-canvas {
    height: 100% !important;
    opacity: 1;
  }
}
@media (max-width: 390px) {
  .hero-bg {
    height: 44svh;
  }
  .hero-photo {
    object-position: 68% center;
  }
}
@media (prefers-reduced-motion: reduce) {
  #water-canvas {
    display: none;
  }
}

/* ==========================================================
   MOBILE-FIRST, BURST-ALIGNED SCREEN SPLASH
   Static hero photo; no canvas, shaders, filters or render loop.
   ========================================================== */
#water-canvas {
  display: none !important;
}
.hero-bg {
  overflow: hidden;
}
.screen-splash {
  --burst-x: 47.3%;
  --burst-y: 38%;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  contain: layout paint style;
  transform: translateZ(0);
}
.screen-splash span {
  position: absolute;
  left: var(--burst-x);
  top: var(--burst-y);
  opacity: 0;
  will-change: transform, opacity;
}
.splash-core {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.92) 0 16%,
    rgba(192, 238, 255, 0.62) 30%,
    rgba(113, 211, 246, 0.18) 58%,
    transparent 72%
  );
  margin: -11px 0 0 -11px;
}
.splash-ring {
  width: 38px;
  height: 38px;
  border: 2px solid rgba(220, 247, 255, 0.72);
  border-radius: 50%;
  margin: -19px 0 0 -19px;
}
.splash-mist {
  width: 74px;
  height: 46px;
  border-radius: 50%;
  margin: -23px 0 0 -37px;
  background: radial-gradient(
    ellipse,
    rgba(220, 247, 255, 0.28),
    transparent 70%
  );
}
.splash-drop {
  width: 7px;
  height: 11px;
  border-radius: 60% 60% 68% 68%;
  margin: -5px 0 0 -3px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.92),
    rgba(145, 223, 250, 0.7) 52%,
    rgba(62, 171, 219, 0.25)
  );
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.65);
}
.screen-splash.is-playing .splash-core {
  animation: splashCore 0.72s cubic-bezier(0.16, 0.8, 0.28, 1) both;
}
.screen-splash.is-playing .splash-ring {
  animation: splashRing 0.9s ease-out both;
}
.screen-splash.is-playing .splash-mist {
  animation: splashMist 1.05s ease-out both;
}
.screen-splash.is-playing .d1 {
  animation: drop1 1s cubic-bezier(0.1, 0.72, 0.2, 1) both;
}
.screen-splash.is-playing .d2 {
  animation: drop2 0.92s cubic-bezier(0.1, 0.72, 0.2, 1) 0.03s both;
}
.screen-splash.is-playing .d3 {
  animation: drop3 1.05s cubic-bezier(0.1, 0.72, 0.2, 1) 0.05s both;
}
.screen-splash.is-playing .d4 {
  animation: drop4 0.9s cubic-bezier(0.1, 0.72, 0.2, 1) 0.02s both;
}
.screen-splash.is-playing .d5 {
  animation: drop5 1.08s cubic-bezier(0.1, 0.72, 0.2, 1) 0.08s both;
}
.screen-splash.is-playing .d6 {
  animation: drop6 0.98s cubic-bezier(0.1, 0.72, 0.2, 1) 0.06s both;
}
@keyframes splashCore {
  0% {
    opacity: 0;
    transform: scale(0.25);
  }
  20% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: scale(4.2);
  }
}
@keyframes splashRing {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  20% {
    opacity: 0.68;
  }
  100% {
    opacity: 0;
    transform: scale(5.4);
  }
}
@keyframes splashMist {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.45);
  }
  28% {
    opacity: 0.42;
  }
  100% {
    opacity: 0;
    transform: translate3d(-18px, -24px, 0) scale(3);
  }
}
@keyframes drop1 {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.4) rotate(-12deg);
  }
  16% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate3d(-150px, -118px, 0) scale(1.45) rotate(-28deg);
  }
}
@keyframes drop2 {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.35);
  }
  18% {
    opacity: 0.82;
  }
  100% {
    opacity: 0;
    transform: translate3d(132px, -92px, 0) scale(1.28) rotate(24deg);
  }
}
@keyframes drop3 {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.4);
  }
  15% {
    opacity: 0.86;
  }
  100% {
    opacity: 0;
    transform: translate3d(-88px, 128px, 0) scale(1.15) rotate(18deg);
  }
}
@keyframes drop4 {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.3);
  }
  18% {
    opacity: 0.78;
  }
  100% {
    opacity: 0;
    transform: translate3d(155px, 98px, 0) scale(1.35) rotate(-18deg);
  }
}
@keyframes drop5 {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.35);
  }
  18% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate3d(-198px, 24px, 0) scale(1.1) rotate(30deg);
  }
}
@keyframes drop6 {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.35);
  }
  18% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translate3d(204px, -8px, 0) scale(1.2) rotate(-22deg);
  }
}

/* Phone image crop: coordinates are tied to the visible hero-image box. */
@media (max-width: 700px) {
  .screen-splash {
    --burst-x: 31.5%;
    --burst-y: 36%;
  }
  .splash-drop {
    width: 6px;
    height: 9px;
  }
  .screen-splash.is-playing .d5,
  .screen-splash.is-playing .d6 {
    display: none;
  }
  @keyframes drop1 {
    0% {
      opacity: 0;
      transform: translate3d(0, 0, 0) scale(0.4);
    }
    18% {
      opacity: 0.82;
    }
    100% {
      opacity: 0;
      transform: translate3d(-78px, -70px, 0) scale(1.1) rotate(-24deg);
    }
  }
  @keyframes drop2 {
    0% {
      opacity: 0;
      transform: translate3d(0, 0, 0) scale(0.4);
    }
    18% {
      opacity: 0.82;
    }
    100% {
      opacity: 0;
      transform: translate3d(82px, -52px, 0) scale(1.04) rotate(22deg);
    }
  }
  @keyframes drop3 {
    0% {
      opacity: 0;
      transform: translate3d(0, 0, 0) scale(0.4);
    }
    18% {
      opacity: 0.8;
    }
    100% {
      opacity: 0;
      transform: translate3d(-52px, 62px, 0) scale(1.02) rotate(16deg);
    }
  }
  @keyframes drop4 {
    0% {
      opacity: 0;
      transform: translate3d(0, 0, 0) scale(0.4);
    }
    18% {
      opacity: 0.78;
    }
    100% {
      opacity: 0;
      transform: translate3d(74px, 48px, 0) scale(1.05) rotate(-16deg);
    }
  }
}
@media (max-width: 390px) {
  .screen-splash {
    --burst-x: 31%;
    --burst-y: 36.5%;
  }
}
@media (min-width: 701px) and (max-width: 1100px) {
  .screen-splash {
    --burst-x: 42%;
    --burst-y: 38%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .screen-splash {
    display: none !important;
  }
}

/* ==========================================================
   PREMIUM MOBILE NAVIGATION + LIGHTWEIGHT MOTION PASS
   GPU-friendly transforms only; no permanent render loops.
   ========================================================== */
.menu-button {
  position: relative;
  z-index: 1003;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(8, 52, 75, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(9, 47, 68, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  place-content: center;
  gap: 5px !important;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.menu-button span {
  display: block;
  width: 21px !important;
  height: 2px !important;
  border-radius: 99px;
  background: #10384c !important;
  transform-origin: center;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease,
    width 0.25s ease;
}
.menu-button span:nth-child(2) {
  width: 21px !important;
  margin-left: 0;
}
.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-button.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}
.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 26, 38, 0.34);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 980px) {
  .mobile-nav {
    display: flex !important;
    position: fixed !important;
    top: 86px !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 1002;
    flex-direction: column;
    padding: 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    border-radius: 24px !important;
    background: rgba(248, 253, 255, 0.96) !important;
    box-shadow: 0 24px 70px rgba(4, 35, 52, 0.2) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 0.28s ease,
      transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.28s ease;
  }
  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  .mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 14px !important;
    color: #11394d !important;
    font-family: Manrope, sans-serif;
    font-weight: 700;
    border: 0 !important;
    border-radius: 14px;
    transition:
      background 0.2s ease,
      transform 0.2s ease,
      color 0.2s ease;
  }
  .mobile-nav a::after {
    content: "→";
    font-size: 1rem;
    color: #17a9d8;
    transition: transform 0.2s ease;
  }
  .mobile-nav a:active {
    background: #e7f7fc;
    transform: scale(0.985);
  }
  .mobile-nav a:last-child {
    margin-top: 8px;
    background: #0f3548;
    color: #fff !important;
    justify-content: center;
    gap: 12px;
  }
  .mobile-nav a:last-child::after {
    color: #fff;
  }
  body.nav-open {
    overflow: hidden;
  }
}
@media (max-width: 700px) {
  .menu-button {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }
  .mobile-nav {
    top: 72px !important;
  }
}

/* One-time premium entrance sequence. */
.site-header {
  animation: headerDrop 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-photo {
  animation: heroSettle 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy > p,
.hero-actions,
.hero-proof {
  opacity: 0;
  animation: heroRise 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-copy .eyebrow {
  animation-delay: 0.12s;
}
.hero-copy h1 {
  animation-delay: 0.2s;
}
.hero-copy > p {
  animation-delay: 0.3s;
}
.hero-actions {
  animation-delay: 0.4s;
}
.hero-proof {
  animation-delay: 0.5s;
}
@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes heroSettle {
  from {
    opacity: 0.72;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Refined reveal and button sheen. */
.reveal {
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  transform: none;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 28%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    transparent
  );
  transform: skewX(-18deg) translateX(-240%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary:hover::after {
  transform: skewX(-18deg) translateX(620%);
}
.image-card img {
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}
.image-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.06);
}

@media (max-width: 700px) {
  .hero-photo {
    animation-duration: 0.85s;
  }
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy > p,
  .hero-actions,
  .hero-proof {
    animation-duration: 0.58s;
  }
  .image-card:hover img {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header,
  .hero-photo,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy > p,
  .hero-actions,
  .hero-proof {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .mobile-nav,
  .nav-backdrop,
  .menu-button span {
    transition: none !important;
  }
}

/* ==========================================================
   2026 LAUNCH LAYER — conversion, accessibility and consistency
   Consolidates the final visual behaviour without affecting admin pages.
   ========================================================== */
:root {
  --ink: #082d3e;
  --ink-deep: #041c29;
  --blue: #0799ce;
  --blue-2: #55d5f5;
  --paper: #f3f9fb;
  --radius: 24px;
}
body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  text-rendering: optimizeLegibility;
}
:focus-visible {
  outline: 3px solid #16a9dc;
  outline-offset: 4px;
}
.section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.site-header {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(8, 45, 62, 0.08);
}
.nav-shell {
  height: 78px;
}
.brand-logo {
  width: 54px;
  height: 54px;
}
.desktop-nav a {
  font-size: 0.75rem !important;
}
.nav-cta {
  background: #08384a;
  border-color: #08384a;
  box-shadow: 0 10px 30px rgba(8, 56, 74, 0.16);
}
.hero {
  min-height: clamp(720px, 100svh, 940px);
}
.hero-bg {
  inset: 78px 0 0;
}
.hero-photo {
  object-position: center 52%;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(246, 252, 254, 0.99) 0%,
      rgba(246, 252, 254, 0.94) 37%,
      rgba(246, 252, 254, 0.5) 56%,
      rgba(7, 35, 48, 0.1) 74%
    ),
    linear-gradient(0deg, #f5fbfd 0%, transparent 38%);
}
.hero-grid {
  padding-top: 145px;
  padding-bottom: 100px;
}
.hero-copy {
  max-width: 690px;
}
.hero h1 {
  max-width: 690px;
  font-size: clamp(3.7rem, 6.25vw, 6.75rem);
  line-height: 0.91;
}
.hero h1 em {
  font-size: 0.69em;
  line-height: 1.03;
  margin-top: 10px;
}
.hero-copy > p {
  max-width: 610px;
}
.btn {
  min-height: 58px;
}
.btn-primary {
  background: linear-gradient(135deg, #1cc3e8, #078bc3);
  color: #032a3b;
  box-shadow: 0 14px 35px rgba(7, 153, 206, 0.28);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(8, 45, 62, 0.16);
}
.hero-proof {
  max-width: 650px;
}
.marquee {
  background: #08384a;
}
.about-grid,
.pricing-grid,
.contact-grid {
  gap: clamp(48px, 7vw, 92px);
}
.service-card.image-card {
  box-shadow: 0 14px 45px rgba(31, 83, 105, 0.08);
  border: 1px solid rgba(8, 74, 101, 0.08);
}
.service-card.image-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 65px rgba(31, 83, 105, 0.15);
}
.image-card > img {
  background: #dceff5;
}
.process-card {
  border-color: rgba(255, 255, 255, 0.14);
}
.calculator {
  box-shadow: 0 26px 70px rgba(21, 72, 94, 0.13);
}
.promise-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.promise-card > i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #dff5fb;
  color: #087fae;
  font-size: 1.2rem;
}
.promise-card strong {
  font: 800 1.1rem var(--display);
  color: #12394b;
}
.promise-card p {
  margin: 0 !important;
}
.appointment-form {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  min-height: 52px;
  background: #f8fcfd;
  border-color: #d6e7ed;
}
.appointment-form textarea {
  min-height: 112px;
}
.form-note {
  text-align: center;
}
.floating-facebook,
.floating-whatsapp {
  position: fixed;
  right: 22px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.35rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.floating-whatsapp {
  bottom: 22px;
  background: #20b966;
}
.floating-facebook {
  bottom: 88px;
  background: #1877f2;
}
.floating-facebook:hover,
.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

@media (max-width: 980px) {
  .nav-shell {
    height: 74px;
  }
  .hero-bg {
    inset: 74px 0 0;
  }
  .hero {
    min-height: 900px;
  }
  .hero-grid {
    padding-top: 160px;
  }
}
@media (max-width: 700px) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }
  .nav-shell {
    height: 70px;
  }
  .brand-logo {
    width: 46px;
    height: 46px;
  }
  .hero {
    min-height: auto;
    background: #f4fafc;
    padding: 0;
  }
  .hero-bg {
    height: 43svh;
    min-height: 330px;
    max-height: 470px;
    inset: 70px 0 auto !important;
  }
  .hero-photo {
    object-position: 68% center;
  }
  .hero-shade {
    top: 70px;
    height: 48svh;
    min-height: 380px;
    background: linear-gradient(
      180deg,
      rgba(244, 250, 252, 0.02) 0%,
      rgba(244, 250, 252, 0.04) 55%,
      #f4fafc 98%
    );
  }
  .hero-grid {
    padding-top: calc(clamp(330px, 43svh, 470px) + 82px);
    padding-bottom: 48px;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.75rem);
    max-width: 360px;
    line-height: 0.96;
  }
  .hero h1 em {
    font-size: 0.72em;
    margin-top: 7px;
  }
  .hero-copy > p {
    font-size: 0.98rem !important;
    line-height: 1.65;
  }
  .hero .eyebrow {
    max-width: 350px;
    font-size: 0.61rem !important;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .hero-proof {
    grid-template-columns: 1fr 1fr !important;
  }
  .hero-proof span:last-child {
    grid-column: 1/-1;
  }
  .section {
    padding: 72px 0;
  }
  .section-heading h2,
  .about-copy h2,
  .pricing-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }
  .about-media img {
    height: 380px;
    min-height: 0;
  }
  .experience-badge {
    width: 130px;
    height: 130px;
  }
  .service-card.image-card {
    min-height: 0;
  }
  .service-card-body {
    min-height: 185px;
  }
  .process-grid {
    gap: 10px;
  }
  .process-card {
    padding: 25px 12px;
  }
  .process-card > span {
    font-size: 0.58rem;
  }
  .process-card h3 {
    font-size: 0.92rem;
  }
  .process-card p {
    font-size: 0.68rem;
  }
  .calculator {
    padding: 22px;
  }
  .estimate-box strong {
    font-size: 2.35rem;
  }
  .gallery-grid {
    grid-auto-rows: 245px;
  }
  .contact-copy h2 br {
    display: none;
  }
  .contact-details a {
    align-items: flex-start;
  }
  .appointment-form {
    padding: 22px;
  }
  .floating-facebook,
  .floating-whatsapp {
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp {
    bottom: 16px;
  }
  .floating-facebook {
    bottom: 78px;
  }
}
@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 0.72rem !important;
  }
  .brand-copy small {
    font-size: 0.45rem !important;
  }
  .hero h1 {
    font-size: 2.55rem;
  }
  .hero-proof {
    grid-template-columns: 1fr !important;
  }
  .hero-proof span:last-child {
    grid-column: auto;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card p {
    font-size: 0.76rem;
  }
  .check-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section {
    content-visibility: visible;
  }
  .screen-splash {
    display: none !important;
  }
}

/* ==========================================================================
   FINAL LOGO PLACEMENT
   Keeps the shared image14 logo balanced in the header and footer.
   ========================================================================== */
.site-header .brand {
  flex: 0 0 auto;
  gap: 14px;
}

.site-header .brand-logo {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  padding: 3px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 9px 26px rgba(7, 48, 68, 0.14);
}

.site-header .brand-copy {
  align-items: flex-start;
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: max-content;
  max-width: 100%;
  margin: 0 0 14px;
}

.footer-brand .brand-logo {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  padding: 4px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.footer-brand + p {
  width: min(100%, 440px);
  margin: 0;
}

@media (max-width: 700px) {
  .site-header .brand {
    gap: 10px;
  }

  .site-header .brand-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    padding: 2px;
  }

  .site-header .brand-copy strong {
    font-size: 0.76rem;
  }

  .site-header .brand-copy small {
    font-size: 0.48rem;
    letter-spacing: 0.15em;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-brand {
    gap: 12px;
    margin-bottom: 12px;
  }

  .footer-brand .brand-logo {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .footer-brand + p {
    max-width: 330px;
    line-height: 1.65;
  }
}

/* ==========================================================================
   RECENT WORK — consistent framed images and Facebook reels
   ========================================================================== */
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 18px;
}

.gallery .gallery-item:nth-child(n) {
  grid-column: auto;
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  min-height: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(78, 212, 245, 0.24);
  border-radius: 24px;
  background: linear-gradient(145deg, #0d3447, #061d29);
  box-shadow:
    0 22px 55px rgba(3, 24, 35, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.gallery .gallery-item img,
.gallery .gallery-item iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 17px;
  background: #071d29;
}

.gallery .gallery-item img {
  object-fit: cover;
}

.gallery .gallery-item::after {
  inset: 7px;
  border-radius: 17px;
  pointer-events: none;
}

.gallery .gallery-video::after {
  display: none;
}

.gallery .gallery-item span {
  left: 17px;
  right: 17px;
  bottom: 17px;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.gallery .gallery-video span {
  padding: 10px 11px;
  border-radius: 12px;
  background: rgba(3, 25, 37, 0.82);
  backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gallery .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery .gallery-item:nth-child(n) {
    width: min(100%, 340px);
    margin-inline: auto;
  }
}

/* ==========================================================================
   RECENT WORK SHOWCASE
   Both media windows use the same 1:1 square. On desktop the cards sit beside
   each other; on mobile they cascade vertically without changing proportions.
   ========================================================================== */
.recent-work-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
}

.media-showcase {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 32px;
  background: #fff;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.24),
    0 0 0 7px rgba(255, 255, 255, 0.07);
}

.media-showcase-head {
  min-height: 76px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #123b4d;
}

.media-showcase-head div {
  display: grid;
  gap: 4px;
}

.media-showcase-head span {
  color: #178eb6;
  font: 800 0.61rem var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-showcase-head strong {
  font: 800 clamp(1rem, 1.6vw, 1.35rem) var(--display);
}

.media-showcase-head > i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #159fd0, #0b5f83);
  box-shadow: 0 10px 26px rgba(12, 125, 165, 0.24);
}

.reel-stage,
.project-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 23px;
  background: #061b27;
  touch-action: pan-y;
}

.reel-slide,
.project-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition:
    opacity 0.55s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.55s ease;
}

.reel-slide.is-active,
.project-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.project-slide,
.project-slide img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/*
 * Facebook reels are portrait media inside a square viewer. Keeping the
 * iframe at its natural 9:16 proportion shows the complete reel without
 * stretching faces, equipment or text; the dark side space acts as a mat.
 */
.reel-slide iframe {
  display: block;
  width: 56.25%;
  height: 100%;
  margin-inline: auto;
  border: 0;
  background: #061b27;
}

.project-slide {
  padding: 0;
  cursor: pointer;
  background: #071d29;
}

.project-slide img {
  object-fit: cover;
  transition: transform 5.6s ease;
}

.project-slide.is-active img {
  transform: scale(1.045);
}

.media-caption {
  position: absolute;
  z-index: 4;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 58px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  color: #fff;
  background: rgba(2, 23, 34, 0.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.media-caption span {
  color: #5cddff;
  font: 800 0.65rem var(--display);
  letter-spacing: 0.1em;
}

.media-caption strong {
  font: 800 0.75rem var(--display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slideshow-controls {
  min-height: 68px;
  padding: 12px 12px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.slideshow-controls > button {
  width: 42px;
  height: 42px;
  border: 1px solid #d5e6ec;
  border-radius: 50%;
  color: #0d465e;
  background: #f7fbfc;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.slideshow-controls > button:hover {
  transform: translateY(-2px);
  color: #fff;
  background: #0d465e;
}

.slideshow-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.slideshow-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #bfd4dc;
  cursor: pointer;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.slideshow-dots button.is-active {
  width: 25px;
  background: #159fcf;
}

@media (max-width: 900px) {
  .recent-work-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .recent-work-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .media-showcase {
    width: min(100%, 440px);
    margin-inline: auto;
    padding: 8px;
    border-radius: 26px;
  }

  .media-showcase-head {
    min-height: 68px;
    padding: 12px 14px;
  }

  .reel-stage,
  .project-stage {
    border-radius: 19px;
  }

  .media-caption {
    left: 11px;
    right: 11px;
    bottom: 11px;
  }

  .slideshow-controls {
    min-height: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reel-slide,
  .project-slide,
  .project-slide img {
    transition: none;
  }
}

/* ==========================================================================
   HEADER BRAND ALIGNMENT
   This final override keeps the circular logo vertically centred against the
   complete two-line name block after all earlier responsive header rules.
   ========================================================================== */
.site-header .nav-shell {
  align-items: center;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
}

.site-header .brand-logo {
  display: block;
  align-self: center;
  margin: 0;
}

.site-header .brand-copy {
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  line-height: 1;
}

.site-header .brand-copy strong,
.site-header .brand-copy small {
  display: block;
  margin-inline: 0;
}

@media (max-width: 700px) {
  .site-header .brand {
    min-height: 52px;
    gap: 12px;
  }

  .site-header .brand-logo {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
  }

  .site-header .brand-copy {
    min-height: 38px;
    transform: translateY(1px);
  }

  .site-header .brand-copy small {
    margin-top: 7px;
  }
}

/* ==========================================================================
   CROPPED LOGO — CIRCULAR ICON TREATMENT
   The source is landscape, so a centred cover crop works better than placing
   the entire wide image inside a circle. It makes the rig, truck and water
   drop readable while the circular frame supplies the final crop.
   ========================================================================== */
.site-header .brand-logo,
.footer-brand .brand-logo {
  box-sizing: border-box;
  padding: 0;
  object-fit: cover;
  object-position: 50% 50%;
  background-color: #fff;
}

.site-header .brand-logo {
  border: 1px solid rgba(12, 83, 115, 0.08);
}

.footer-brand .brand-logo {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ==========================================================================
   NAVIGATION VISIBILITY
   Desktop already exposes every navigation link, so the hamburger and its
   mobile-only menu are hidden. They are enabled only at tablet/mobile widths.
   ========================================================================== */
.site-header .menu-button,
.site-header .mobile-nav {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header .menu-button {
    display: flex !important;
  }

  .site-header .mobile-nav {
    display: flex !important;
  }
}
