:root {
  --deep: #212d47;
  --navy: #3c4767;
  --steel: #556187;
  --gray: #87878f;
  --orange: #ec8d55;
  --burnt: #d46422;
  --bg: rgba(135, 135, 143, 0.15);
  --bg-strong: rgba(85, 97, 135, 0.22);
  --surface: rgba(135, 135, 143, 0.18);
  --surface-dark: rgba(60, 71, 103, 0.92);
  --card: rgba(135, 135, 143, 0.13);
  --card-hover: rgba(85, 97, 135, 0.18);
  --text: #212d47;
  --muted: #556187;
  --border: rgba(60, 71, 103, 0.25);
  --shadow: 0 22px 60px rgba(33, 45, 71, 0.16);
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-heading: 'Rubik', 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 42%, rgba(85, 97, 135, 0.42), transparent 34%), var(--deep);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.heater-loader {
  display: flex;
  width: min(520px, calc(100% - 42px));
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  animation: introLift 1s cubic-bezier(.22, 1, .36, 1) both;
}

.heater-loader img {
  width: min(260px, 72vw);
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.22));
  animation: logoGlow 1.35s ease both;
}

.heater-loader h2 {
  margin: 0;
  color: #ffffff;
  font-family: 'Libre Baskerville', var(--font-heading);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.08;
}

.heater-loader h2 span {
  display: block;
  color: var(--orange);
}

.loader-line {
  width: min(260px, 68vw);
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.loader-line span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: loaderSweep 1.15s ease-in-out infinite;
}

@keyframes introLift {
  from { opacity: 0; transform: translateY(22px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logoGlow {
  from { opacity: 0; transform: translateY(12px) scale(0.92); filter: drop-shadow(0 0 0 rgba(236, 141, 85, 0)); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.22)); }
}

@keyframes loaderSweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(260%); }
}

.logo {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 23px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.2px;
}

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

.logo sup {
  color: var(--burnt);
  margin-left: 2px;
  font-family: var(--font-body);
  font-size: 10px;
}

 .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: 0.3s ease;
}

.navbar-nav .nav-link.active::before,
.navbar-nav .nav-link:hover::before {
  transform: scaleX(1);
}

.navbar-nav .nav-link.dropdown-toggle::after {
  border-top-color: var(--orange);
}


.services-dropdown .dropdown-menu {
  display: none;
  min-width: 250px;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid rgba(236, 141, 85, 0.26);
  border-radius: 0;
  background: rgba(33, 45, 71, 0.9);
  box-shadow: 0 18px 46px rgba(33, 45, 71, 0.24);
}

.services-dropdown.is-open .dropdown-menu,
.services-dropdown .dropdown-menu.show {
  display: block;
}

.services-dropdown .dropdown-item {
  padding: 9px 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  white-space: normal;
  transition: 0.3s ease;
}

.services-dropdown .dropdown-item:hover,
.services-dropdown .dropdown-item:focus {
  color: #ffffff;
  background: linear-gradient(135deg, var(--burnt), var(--orange));
}

.socials {
  display: flex;
  gap: 15px;
  align-items: center;
}

.socials a {
  color: var(--burnt);
  font-size: 18px;
  letter-spacing: 8px;
  transition: 0.3s ease;
}

.socials a:hover {
  color: var(--deep);
  transform: translateY(-2px);
}

.main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--burnt);
  background: var(--burnt);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 23px;
  font-weight: 700;
  padding: 12px 22px;
  transition: 0.35s ease;
}
 .locations-btn .main-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(236, 141, 85, 0.28);
  background: #27385b;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 17px;
  font-weight: 700;
  padding: 12px 22px;
  width: 100%;
  max-width: 280px;
  min-height: 58px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.35s ease;
}
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--burnt);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  transition: 0.35s ease;
  padding: 10px 16px;
  border-color: rgba(212, 100, 34, 0.38);
  background: transparent;
  color: #ffffff;
  font-size: 10px;
}

.main-btn:hover,
.mini-btn:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(212, 100, 34, 0.24);
  transform: translateY(-3px);
}

.section-pad-top {
  padding-top: 135px;
}

.section-space {
  padding: 105px 0;
}

.quote-section em,
.section-title em,
.strip-title em {
  color: var(--burnt);
  font-style: normal;
  font-weight: 500;
}

.section-title {
  margin-bottom: 52px;
}

.hero-section::after {
  content: '';
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -170px;
  height: 340px;
  background: radial-gradient(120% 80% at 18% 100%, rgba(236, 141, 85, 0.16) 0 28%, transparent 29%), radial-gradient(100% 75% at 62% 100%, rgba(135, 135, 143, 0.16) 0 32%, transparent 33%);
  opacity: 0.8;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}

.abstract-bg,
.soft-bg {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.hero-section .container,
.abstract-bg .container,
.network-strip .container,
.soft-bg .container {
  position: relative;
  z-index: 2;
}

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

.stat-card {
  text-align: center;
}

.stat-card i {
  margin-bottom: 8px;
  color: var(--burnt);
  font-size: 35px;
}

.stat-card strong {
  display: block;
  color: var(--deep);
  font-family: var(--font-serif);
  font-size: 18px;
}

.stat-card span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.blog-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: 0.4s ease;
}

.blog-card:hover {
  border-color: rgba(236, 141, 85, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  transition: 0.8s ease;
}

.blog-card:hover img {
  transform: scale(1.06);
}

.card-body-custom {
  padding: 23px 22px 24px;
  text-align: center;
}

.about-box a {
  color: var(--burnt);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 14px;
  font-weight: 800;
}

.blog-card a {
  color: var(--burnt);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 11px;
  font-weight: 800;
}

.about-box a:hover {
  color: var(--orange);
}

.blog-card a:hover {
  color: var(--orange);
}

.solution-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 15px;
}

.solution-card {
  position: relative;
  min-height: 140px;
  padding: 42px 18px 24px;
  background: rgba(135, 135, 143, 0.18);
  transition: 0.35s ease;
}

.solution-card:hover {
  background: var(--card);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.solution-card span {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 100, 34, 0.35);
  border-radius: 50%;
  background: var(--bg-strong);
  color: var(--burnt);
  font-size: 20px;
  transform: translateX(-50%);
  transition: 0.35s ease;
}

.solution-card:hover span {
  background: var(--burnt);
  color: #ffffff;
  transform: translateX(-50%) translateY(-4px);
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.blog-card.tall {
  padding-bottom: 24px;
  text-align: center;
}

.blog-card.tall img {
  height: 255px;
}

.blog-card.tall .meta {
  margin-top: 21px;
  color: var(--burnt);
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
}

.blog-card.tall h3 {
  margin-top: 13px;
  padding: 0 20px;
}

.blog-card.tall p {
  margin: 0;
  padding: 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.quote-mark {
  margin-bottom: 15px;
  color: var(--burnt);
  font-size: 40px;
  opacity: 0.78;
}

.about-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.about-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.about-box {
  position: relative;
  z-index: 2;
  margin-left: -30px;
  padding: 60px 62px;
  background: var(--surface);
}

.about-box span {
  color: var(--burnt);
  font-size: 25px;
  font-style: italic;
}

.about-box p {
  color:#222836;
  font-size: 18px;
  font-weight: 500;
}

.contact-card input:focus,
.contact-card select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(236, 141, 85, 0.12);
}
form.CUS input.subject{display:none}
.contact-card button {
  width: 100%;
  height: 50px;
  border: 0;
  background: var(--burnt);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 12px;
  font-weight: 800;
  transition: 0.3s ease;
}

.contact-card button:hover {
  background: var(--orange);
}

.footer-menu {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 50;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--burnt);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

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

.back-top:hover {
  background: var(--deep);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  margin-left: -20px;
}

.reveal-img {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: translateY(28px) scale(0.96);
}

.reveal-icon {
  opacity: 0;
  transform: translateY(18px) scale(0.72) rotate(-8deg);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.22, 1, .36, 1);
}

.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

.delay-4 {
  transition-delay: 0.48s;
}

@media (max-width: 991px) {
.navbar-collapse {
  padding: 22px 0;
}
.reveal-card {
  margin-left: 0px;
}
}

@media (max-width: 991px) {
.header-actions {
  justify-content: center;
}
}

@media (max-width: 991px) {
.section-pad-top {
  padding-top: 115px;
}
}

@media (max-width: 991px) {
.solution-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 991px) {
.stats-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 991px) {
.strip-title {
  text-align: center;
}
}

@media (max-width: 991px) {
.about-box {
  margin-left: 0;
}
}

@media (max-width: 991px) {
.about-img {
  height: 420px;
}
}

@media (max-width: 991px) {
.cta-section h2 {
  font-size: 38px;
}
}

@media (max-width: 575px) {
.hero-section {
  min-height: auto;
}
}

@media (max-width: 575px) {
.hero-title {
  font-size: 34px;
}
}

@media (max-width: 575px) {
.hero-text {
  font-size: 14px;
}
}

@media (max-width: 575px) {
.section-title h2 {
  font-size: 34px;
}
}

@media (max-width: 575px) {
.section-space {
  padding: 75px 0;
}
}

@media (max-width: 575px) {
.solution-grid {
  grid-template-columns: 1fr;
}
}

@media (max-width: 575px) {
.stats-grid {
  grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 575px) {
.blog-card img {
  height: 220px;
}
}

@media (max-width: 575px) {
.blog-card.tall img {
  height: 220px;
}
}

@media (max-width: 575px) {
.about-box {
  padding: 38px 26px;
}
}

@media (max-width: 575px) {
.footer-menu {
  flex-wrap: wrap;
  justify-content: center;
}
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 740px;
  padding-bottom: 112px;
  background: linear-gradient(180deg, rgba(33, 45, 71, 0.84) 0%, rgba(33, 45, 71, 0.88) 46%, rgba(33, 45, 71, 0.92) 100%), url('../img/water-heater-hero-BG.webp') center / cover no-repeat; background-attachment: fixed;
}

/* .hero-water-steam {
  position: absolute;
  top: 165px;
  right: -6%;
  z-index: 1;
  width: min(64vw, 800px);
  height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding: 0 56px 92px;
  pointer-events: none;
  filter: blur(1px);
  -webkit-filter: blur(1px);
  opacity: 0.38;
  transform: rotate(-4deg);
  -webkit-mask-image: radial-gradient(ellipse at 54% 50%, #000 0 55%, transparent 78%);
  mask-image: radial-gradient(ellipse at 54% 50%, #000 0 55%, transparent 78%);
}

.hero-water-steam span {
  --steam-drift: 0px;
  --steam-tilt: 0deg;
  --steam-skew: 0deg;
  position: relative;
  bottom: 0;
  display: block;
  min-width: 11px;
  height: 180px;
  margin: 0 2px 44px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 48% 52% 58% 42% / 62% 46% 54% 38%;
  filter: blur(7px);
  -webkit-filter: blur(7px);
  mix-blend-mode: screen;
  opacity: 0;
  animation: heroWaterSteamUp 6s linear infinite;
  animation-delay: calc(var(--i) * -0.42s);
} */

.hero-water-steam span:nth-child(3n) { --steam-drift: -18px; --steam-tilt: -7deg; --steam-skew: 5deg; }
.hero-water-steam span:nth-child(3n + 1) { --steam-drift: 14px; --steam-tilt: 6deg; --steam-skew: -4deg; }
.hero-water-steam span:nth-child(4n) { --steam-drift: 24px; --steam-tilt: 10deg; --steam-skew: 7deg; }
.hero-water-steam span:nth-child(5n) { --steam-drift: -28px; --steam-tilt: -11deg; --steam-skew: -6deg; }

@keyframes heroWaterSteamUp {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) skewX(0deg) scaleX(1);
    opacity: 0;
  }
  15% {
    opacity: 0.82;
  }
  50% {
    transform: translate3d(calc(var(--steam-drift) * 0.45), -155px, 0) rotate(calc(var(--steam-tilt) * 0.55)) skewX(calc(var(--steam-skew) * 0.45)) scaleX(5);
  }
  95% {
    opacity: 0;
  }
  100% {
    transform: translate3d(var(--steam-drift), -315px, 0) rotate(var(--steam-tilt)) skewX(var(--steam-skew)) scaleX(10);
    opacity: 0;
  }
}

.hero-text {
  max-width: 560px;
  margin: 0 auto 26px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.80);
}

.about-section {
  background: rgba(135, 135, 143, 0.14);
}

.diagnosis-section {
  background: rgba(135, 135, 143, 0.14);
}

.gallery-section {
  padding: 20px 0 80px;
  background: rgba(135, 135, 143, 0.14);
}


.network-strip {
  z-index: 1;
  padding: 75px 0;
  background: rgba(135, 135, 143, 0.1);
}

.featured-section {
  background: rgba(135, 135, 143, 0.18);
}
.passions-section {
  background: var(--deep);
}

.dark-section .light-content {
  color: #ffffff;
}

.dark-section .tiny-title {
  color: #ffffff;
}

.dark-section h2 {
  color: #ffffff;
}

.dark-section p {
  color: #ffffff;
}

.passions-section .section-title h2 {
  color: #ffffff;
}

.passions-section .solution-card {
  background: rgba(255, 255, 255, 0.90);
}

.passions-section .solution-card:hover {
  background: #ffffff;
}

.feature-content p {
  max-width: 560px;
  color: var(--muted);
}

.maintenance-section p {
  max-width: 560px;
  color: var(--muted);
}

.light-content h2 {
  color: #ffffff;
}

.light-content p {
  color: #ffffff;
}

.feature-photo {
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(33, 45, 71, 0.22);
}

.feature-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(236, 141, 85, 0.48);
  pointer-events: none;
}

.feature-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s ease;
}

.arched-photo:hover img {
  transform: scale(1.055);
}

.feature-photo:hover img {
  transform: scale(1.055);
}

.feature-photo-left {
  max-width: 560px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--deep);
  font-weight: 700;
}

.check-list i {
  color: var(--burnt);
}

.pill-row i {
  color: var(--burnt);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid rgba(236, 141, 85, 0.32);
  background: rgba(60, 71, 103, 0.48);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.maintenance-faq {
  display: grid;
  gap: 16px;
}

.maintenance-faq-item {
  overflow: hidden;
  border: 1px solid rgba(60, 71, 103, 0.16);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(33, 45, 71, 0.10);
}

.maintenance-faq-button {
  padding: 20px 24px;
  background: #ffffff;
  color: var(--deep);
  font-weight: 800;
  font-size: 18px;
  box-shadow: none;
}

.maintenance-faq-button:not(.collapsed) {
  background: rgba(236, 141, 85, 0.12);
  color: var(--deep);
  box-shadow: none;
}

.maintenance-faq-button:focus {
  border-color: rgba(236, 141, 85, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(236, 141, 85, 0.18);
}

.maintenance-faq-button::after {
  width: 1.45rem;
  height: 1.45rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ec8d55'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 1.45rem;
  filter: none;
  transform: scale(1.18);
  font-weight: 900;
}

.maintenance-faq-button:not(.collapsed)::after {
  transform: scale(1.18) rotate(180deg);
}

.maintenance-faq-body {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.72;
}

@media (max-width: 991px) {
.feature-photo img {
  height: 390px;
}
}

@media (max-width: 575px) {
.arched-photo img {
  height: 300px;
}
}

@media (max-width: 575px) {
.feature-photo img {
  height: 300px;
}
}

.navbar-nav .nav-link {
  position: relative;
  margin: 0 9px;
  font-size: 16px;
  color: #ffffff;
}

.site-header .logo {
  color: #ffffff;
}

.navbar-nav .nav-link.active {
  color: #ffffff;
}

.navbar-nav .nav-link:hover {
  color: #ffffff;
}

.site-header .mini-btn {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(33, 45, 71, 0.18);
}

.site-header .mini-btn:hover {
  border-color: var(--orange);
  background: var(--burnt);
  color: #ffffff;
}

.site-header .socials a {
  color: #ffffff;
}

.site-header .socials a:hover {
  color: var(--orange);
}

.navbar-toggler {
  border: 1px solid rgba(60, 71, 103, 0.25);
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ec8d55' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  filter: none;
}

.header-container {
  display: flex;
  align-items: center;
}

.navbar-brand {
  min-width: 0;
}

.navbar-brand img {
  display: block;
  width: min(220px, 48vw) !important;
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .header-container {
    flex-wrap: wrap;
  }

  .navbar-brand {
    flex: 1 1 auto;
    max-width: calc(100% - 58px);
    margin-right: 0;
  }

  .navbar-toggler {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .navbar-collapse {
    flex-basis: 100%;
  }

  .services-dropdown .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 8px 0 12px;
    background: rgba(33, 45, 71, 0.72);
    box-shadow: none;
  }
}

.cta-section {
  padding: 95px 0;
  background: var(--deep);
}

.data {
  margin-bottom: 56px;
}


.data .reveal-card {
  margin-left: 0;
}

.data .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.data-card {
  height: 100%;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 100%;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(236, 141, 85, 0.24);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.data-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--burnt), var(--orange));
  color: #ffffff;
  font-size: 18px;
}

.data-card h3 {
  margin: 0 0 8px;
  color: var(--deep);
  font-size: 20px;
  line-height: 1.2;
}

.data-card p {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.data-card p:last-child {
  margin-bottom: 0;
}

.data-card a {
  color: var(--burnt);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.data-card a:hover {
  color: var(--orange);
}

.cta-section .eyebrow {
  color: #ffffff;
}

.cta-section .section-title h2 {
  color: #ffffff;
}

.cta-section p {
  color: #5a6a8b;
}

.cta-section em {
  font-style: normal;
  font-weight: 400;
  color: var(--orange);
}

.contact-card {
  padding: 34px;
  background: rgba(33, 45, 71, 0.96);
  border: 1px solid rgba(236, 141, 85, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.contact-card input,
.contact-card select {
  width: 100%;
  height: 48px;
  margin-bottom: 14px;
  padding: 0 14px;
  border: 1px solid var(--border);
  outline: none;
  transition: 0.25s ease;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.20);
  color: var(--deep);
}

.contact-card input::placeholder {
  color: rgba(33, 45, 71, 0.70);
}

@media (max-width: 991px) {
.site-header,
.site-header.scrolled {
  background: rgba(135, 135, 143, 0.96);
}
}

.quote-section {
  padding: 85px 0;
  background: var(--navy) !important;
  color: #ffffff;
}

.quote-section.soft-bg {
  background: var(--navy) !important;
  color: #ffffff;
}

.quote-section p {
  max-width: 760px;
  margin: 20px auto;
  color: #ffffff;
}

.quote-section span {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
}

.quote-section .quote-mark {
  color: #ff7213 !important;
}

.quote-section h2 em {
  color: var(--orange) !important;
}

.dark-section,
.options-section.dark-section {
  background: var(--deep) !important;
}

.options-section .feature-content h2,
.options-section .feature-content p,
.options-section .pill-row span {
  color: #ffffff !important;
}

.options-section .pill-row i,
.options-section .tiny-title {
  color: var(--orange) !important;
}

.arched-photo {
  position: relative;
  border-top-left-radius: 48%;
  border-bottom-right-radius: 48%;
  border-radius: 0 !important;
  overflow: hidden;
  max-width: 590px;
  margin-left: auto;
  background: rgba(85, 97, 135, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.arched-photo img {
  width: 100%;
  transition: transform 0.9s ease;
  height: auto !important;
  object-fit: cover;
  object-position: center;
}

.arched-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(236, 141, 85, 0.48);
  pointer-events: none;
  border-color: rgba(236, 141, 85, 0.62) !important;
}

@media (max-width: 991px) {
.arched-photo {
  margin: 0;
  max-width: 100%;
}
}

@media (max-width: 991px) {
.arched-photo img {
  height: 360px !important;
}
}

.maintenance-section {
  background: rgba(135, 135, 143, 0.14) !important;
  position: relative;
}

.maintenance-section::after {
  display: none !important;
  content: none !important;
}


.site-header {
  padding: 0px 0;
  transition: 0.35s ease;
  background: rgba(214, 214, 214, 0.34) !important;
}

.site-header,
.site-header.scrolled {
  box-shadow: 0 12px 34px rgba(33, 45, 71, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  z-index: 1000 !important;
}

.site-header.scrolled {
  padding: 8px 0;
  background: rgba(29, 37, 54, 0.58) !important;
}

.footer {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  background: #d9dbe1 !important;
  color: var(--deep) !important;
}

.footer .logo,
.footer .socials a {
  color: var(--deep) !important;
}

.footer-menu a {
  font-size: 14px;
  color: var(--deep) !important;
}

.footer .logo span,
.footer .logo sup,
.footer .socials a:hover,
.footer-menu a:hover {
  color: var(--burnt) !important;
}

.hero-gallery-wrap {
  position: relative;
  margin-top: 80px;
  max-width: 1180px !important;
  margin: 20px auto 0!important;
  padding: 34px 0 20px !important;
}

.hero-gallery {
  will-change: transform;
  perspective: 1100px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(20px, 3vw, 38px) !important;
  min-height: 380px !important;
  overflow: visible !important;
  transform: none !important;
  transition: none !important;
}

.hero-img {
  border-radius:0;
  border-color: rgba(236, 141, 85, 0.48) !important;
  will-change: transform, width, height, opacity, filter;
  position: relative !important;
  flex: 0 0 auto !important;
  border-bottom: 5px solid rgba(236, 141, 85, 0.72) !important;
border-right: 3px solid transparent !important;
border-image: linear-gradient( to top, rgba(236, 141, 85, 0.72), rgba(33, 45, 71, 0)) 1 !important; 

border-left: 3px solid rgba(236, 141, 85, 0.72) !important;
  background: rgba(85, 97, 135, 0) !important;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.25) !important;
  overflow: hidden !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: transform 0.65s cubic-bezier(.22, 1, .36, 1), box-shadow 0.65s cubic-bezier(.22, 1, .36, 1), border-color 0.65s cubic-bezier(.22, 1, .36, 1) !important;
}

.hero-img.small {
  transform: translateY(8px) scale(0.96);
  opacity: 0.78;
  filter: saturate(0.88) brightness(0.84);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
  width: clamp(280px, 25vw, 355px) !important;
  height: clamp(220px, 20vw, 270px) !important;
}

.hero-img.main {
  opacity: 1;
  filter: saturate(1.05) brightness(0.98);
  border-color: var(--orange) !important;
  box-shadow: 0 32px 86px rgba(0, 0, 0, 0.34);
  z-index: 2;
  width: clamp(330px, 31vw, 430px) !important;
  height: clamp(270px, 25vw, 360px) !important;
  transform: translateY(-10px) !important;
}

.hero-img img {
  will-change: opacity, transform;
  display: block;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  filter: none !important;
  transform: scale(1) !important;
  transition: transform 0.95s cubic-bezier(.22, 1, .36, 1), filter 0.95s cubic-bezier(.22, 1, .36, 1) !important;
}

.hero-img:hover {
  border-color: var(--orange) !important;
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.34) !important;
  transform: translateY(-10px) !important;
  border-bottom: 5px solid #d46422 !important;
border-right: 3px solid transparent !important;
border-image: linear-gradient( to top, #d46422, rgba(33, 45, 71, 0)) 1 !important; 

border-left: 3px solid #d46422 !important;
}

.hero-img.main:hover {
  transform: translateY(-18px) !important;
}

.hero-img:hover img {
  transform: scale(1.08) !important;
  filter: saturate(1.04) contrast(1.03) !important;
}

@media (max-width: 1199px) {
.hero-gallery-wrap {
  padding-inline: 72px;
  max-width: 980px !important;
}
}

@media (max-width: 1199px) {
.hero-img.small {
  width: 285px !important;
  height: 220px !important;
}
}

@media (max-width: 1199px) {
.hero-img.main {
  width: 350px !important;
  height: 295px !important;
}
}

@media (max-width: 991px) {
.hero-section {
  min-height: auto !important;
  padding-bottom: 64px !important;
}

/* .hero-water-steam {
  top: 165px;
  right: -140px;
  width: 520px;
  height: 420px;
  opacity: 0.28;
filter: blur(8px);
  -webkit-filter: blur(8px);
  }

.hero-water-steam span {
  min-width: 8px;
  height: 140px;
  margin-bottom: 34px;
} */
}

@media (max-width: 991px) {
.hero-gallery-wrap {
  max-width: 720px !important;
  margin-top: 58px !important;
  padding: 16px 0 26px !important;
}
}

@media (max-width: 991px) {
.hero-gallery {
  flex-direction: row;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  min-height: 0 !important;
  gap: 18px !important;
}
}

@media (max-width: 991px) {
.hero-img.small {
  width: calc(50% - 9px) !important;
  height: 245px !important;
  transform: none !important;
}
}

@media (max-width: 991px) {
.hero-img.main {
  transform: none !important;
  width: min(100%, 520px) !important;
  order: -1 !important;
  height: 300px !important;
}
}

@media (max-width: 991px) {
.hero-img.main:hover {
  transform: translateY(-8px) !important;
}
}

@media (max-width: 991px) {
.hero-img:hover {
  transform: translateY(-8px) !important;
}
}

@media (max-width: 575px) {
.hero-gallery-wrap {
  padding: 10px 44px 24px;
  margin-top: 42px !important;
}
}

@media (max-width: 575px) {
.hero-gallery {
  min-height: 230px;
  gap: 10px;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
}
}

@media (max-width: 575px) {
.hero-img.small {
  width: 100% !important;
  height: 225px !important;
}
}

@media (max-width: 575px) {
.hero-img.main {
  width: 100% !important;
  height: 255px !important;
}
}

.coupon-strip-section {
  padding: 50px 0 70px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(236, 141, 85, 0.10) 56%, rgba(85, 97, 135, 0.12) 100%);
  position: relative;
  z-index: 1;
  
}

.coupon-strip {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 32px;
  background: linear-gradient(135deg, var(--burnt) 0%, var(--orange) 100%);
  color: #ffffff;
  box-shadow: 0 24px 55px rgba(212, 100, 34, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}

.coupon-strip::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
  left: -58px;
  top: -48px;
}

.coupon-strip::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  pointer-events: none;
  right: -44px;
  bottom: -60px;
}

.coupon-copy {
  flex: 1;
  position: relative;
  z-index: 1;
}

.coupon-kicker {
  display: inline-block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 800;
}

.coupon-copy p {
  margin: 8px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.coupon-btn {
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  background: #ffffff;
  color: var(--deep);;
  border: 1px solid rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 13px;
  font-weight: 900;
  position: relative;
  z-index: 1;
  transition: 0.35s ease;
}

.coupon-btn:hover {
  background: var(--deep);
  color: #ffffff;
  border-color: var(--deep);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
.coupon-strip {
  padding: 24px;
  gap: 20px;
}
}

@media (max-width: 767px) {
.coupon-strip-section {
  padding-top: 26px;
}
}

@media (max-width: 767px) {
.coupon-strip {
  flex-direction: column;
  text-align: center;
  align-items: center;
}
}

@media (max-width: 767px) {
.coupon-badge {
  width: 86px;
  min-width: 86px;
  height: 66px;
}
}

@media (max-width: 767px) {
.coupon-btn {
  width: 100%;
  max-width: 230px;
}
}

.coupon-badge strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 0.95;
  letter-spacing: 0;
}

.service-details-section .tiny-title {
  margin-bottom: 24px;
}

.service-details-slider {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 58px;
}

.service-slider-viewport {
  overflow: hidden;
}

.service-slider-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: none;
}

.service-slide-card {
  padding: 34px;
  border: 0;
}

.service-slide-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.service-slide-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.service-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 1px solid rgba(236, 141, 85, 0.45);
  background: #ec8d55;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(33, 45, 71, 0.16);
  transition: 0.3s ease;
}

.service-slider-btn:hover {
  background: #d46422;
  border-color: #d46422;
  transform: translateY(-50%) translateY(-2px);
}

.service-slider-prev {
  left: 0;
}

.service-slider-next {
  right: 0;
}

.service-slider-btn.is-disabled {
  opacity: 0.38;
  pointer-events: none;
}

@media (max-width: 991px) {
.service-details-slider {
  max-width: 760px;
  padding: 0 50px;
}
}

@media (max-width: 991px) {
.service-slider-track {
  gap: 16px;
}
}

@media (max-width: 575px) {
.service-details-section {
  padding: 26px 0 72px;
}
}

@media (max-width: 575px) {
.service-details-slider {
  padding: 0 42px;
}
}

@media (max-width: 575px) {
.service-slider-btn {
  width: 34px;
  height: 38px;
  font-size: 12px;
}
}

.coupon-badge {
  width: 94px;
  min-width: 94px;
  height: 72px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 10px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  background: var(--deep);
}

.coupon-badge i {
  font-size: 24px;
  color: var(--orange);
}

.service-details-section {
  padding: 34px 0 86px;
  background: rgba(248, 249, 252, 0.96);
}

.service-slide-card {
  flex: 0 0 calc((100% - 36px) / 3);
  overflow: hidden;
  background: #ffffff;
  border: 0;
  box-shadow: 0 12px 28px rgba(33, 45, 71, 0.06);
  padding: 34px;
  height: 250px;
}

@media (max-width: 991px) {
.service-slide-card {
  flex-basis: calc((100% - 16px) / 2);
  height: 235px;
  padding: 28px;
}
}

@media (max-width: 575px) {
.coupon-copy h2 {
  justify-content: center;
}
}

@media (max-width: 575px) {
.coupon-copy h2 strong {
  font-size: 46px;
}
}

@media (max-width: 575px) {
.service-slide-card {
  flex-basis: 100%;
  height: 255px;
  padding: 26px;
}
}


.about-box h2 {
  margin: 12px 0 22px;
  color: var(--deep);
  font-size: 27px;
  line-height: 1.22;
  font-family: var(--font-heading) !important;
}

.blog-card h3 {
  margin: 0 0 18px;
  color: var(--deep);
  font-size: 18px;
  line-height: 1.45;
  font-family: var(--font-heading) !important;
}

.coupon-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  font-family: var(--font-heading) !important;
}

.coupon-copy h2 strong {
  display: inline-block;
  color: #ffffff;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 0.9;
  letter-spacing: -1px;
  text-shadow: 0 10px 24px rgba(33, 45, 71, 0.2);
  font-family: var(--font-heading) !important;
}

.cta-section h2 {
  font-weight: 700;
  line-height: 1.04;
  font-size: 46px;
  color: #ffffff;
  font-family: var(--font-heading) !important;
}

.feature-content h2 {
  margin: 12px 0 20px;
  color: var(--deep);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  font-family: var(--font-heading) !important;
}

.hero-title {
  font-weight: 700;
  line-height: 1.06;
  max-width: 770px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: clamp(42px, 5.3vw, 68px);
  letter-spacing: 0.8px;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  font-family: 'Libre Baskerville', var(--font-heading) !important;
}
.hero-title span {
  font-size: clamp(25px, 4vw, 40px);
  
}
.maintenance-section h2 {
  margin: 12px 0 20px;
  color: var(--deep);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  font-family: var(--font-heading) !important;
}

.quote-section h2 {
  font-weight: 700;
  line-height: 1.04;
  font-size: 38px;
  color: #ffffff;
  font-family: var(--font-heading) !important;
}

.section-title h2 {
  color: var(--deep);
  font-weight: 700;
  line-height: 1.04;
  font-size: 42px;
  font-family: var(--font-heading) !important;
}

.solution-card h3 {
  color: var(--deep);
  font-size: 18px;
  font-family: var(--font-heading) !important;
}

.strip-title {
  color: var(--deep);
  font-weight: 700;
  line-height: 1.04;
  font-size: 34px;
  font-family: var(--font-heading) !important;
}

.tiny-title {
  margin-bottom: 18px;
  color: var(--burnt);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-heading) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading) !important;
}

.ask-pro-power {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 18px auto 20px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: .3px;
  text-decoration: none;
  transition: .35s ease;
  font-size: x-large;
}

.ask-power-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 3px solid var(--burnt);
  background: radial-gradient(circle at 50% 50%, var(--orange) 0 48%, var(--burnt) 49% 100%);
  color: #ffffff;
  font-size: 50px;
  box-shadow: 0 0 0 8px rgba(236,141,85,.10), 0 14px 34px rgba(33,45,71,.22);
  transition: .35s ease;
}

.ask-pro-power:hover {
  color: #ffffff;
  transform: translateY(-4px);
}

.ask-pro-power:hover .ask-power-icon {
  color: #ffffff;
  border-color: var(--deep);
  background: radial-gradient(circle at 50% 50%, var(--navy) 0 48%, var(--deep) 49% 100%);
  box-shadow: 0 0 0 10px rgba(33,45,71,.14), 0 18px 42px rgba(33,45,71,.26);
}

/* Our Gallery Section */
.latest-section .section-title {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 44px;
}

.gallery-lead {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.gallery-start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
  padding: 11px 18px;
  border: 1px solid rgba(236, 141, 85, 0.46);
  background: linear-gradient(135deg, var(--burnt), var(--orange));
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(212, 100, 34, 0.20);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.gallery-start-btn i{font-size: 25px;}
.gallery-start-btn:hover {
  background: var(--deep);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(33, 45, 71, 0.22);
}

.water-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 30px;
}

.water-gallery-card {
  position: relative;
  margin-left: 0;
  overflow: hidden;
  border: 1px solid rgba(60, 71, 103, 0.18);
  background: var(--deep);
  box-shadow: 0 18px 45px rgba(33, 45, 71, 0.12);
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.55s cubic-bezier(.22, 1, .36, 1), box-shadow 0.55s cubic-bezier(.22, 1, .36, 1), border-color 0.55s ease;
}

.water-gallery-card-lg {
  grid-column: span 2;
  grid-row: span 2;
}

.water-gallery-card-wide {
  grid-column: span 2;
}

.water-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.85s cubic-bezier(.22, 1, .36, 1), filter 0.85s ease;
}

.water-gallery-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.38);
  opacity: 0;
  transform: scale(0.94);
  transition: 0.45s ease;
  pointer-events: none;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: 58px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(33, 45, 71, 0.92));
  color: #ffffff;
  transform: translateY(12px);
  transition: 0.45s cubic-bezier(.22, 1, .36, 1);
}

.gallery-overlay span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 11px;
  font-weight: 900;
}

.gallery-overlay h3 {
  margin: 0;
  color: #ffffff;
  font-size: 21px;
  line-height: 1.2;
}

.water-gallery-card:hover {
  border-color: rgba(236, 141, 85, 0.62);
  box-shadow: 0 28px 70px rgba(33, 45, 71, 0.2);
  transform: translateY(-8px);
}

.water-gallery-card:hover img {
  transform: scale(1.09);
  filter: saturate(1.08) contrast(1.06);
}

.water-gallery-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.water-gallery-card:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 80px 80px 54px;
  background: rgba(18, 25, 40, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox figure {
  width: min(980px, 100%);
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1);
}

.gallery-lightbox.is-open figure {
  transform: translateY(0) scale(1);
}

.gallery-lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
}

.gallery-lightbox figcaption {
  padding: 16px 22px;
  color: var(--deep);
  font-weight: 800;
  text-align: center;
}

.gallery-close,
.gallery-nav {
  position: absolute;
  z-index: 10;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, var(--burnt), var(--orange));
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: 0.3s ease;
}

.gallery-close {
  top: 26px;
  right: 28px;
  width: 44px;
  height: 44px;
}

.gallery-nav {
  top: 50%;
  width: 46px;
  height: 58px;
  transform: translateY(-50%);
}

.gallery-prev { left: 24px; }
.gallery-next { right: 24px; }

.gallery-close:hover,
.gallery-nav:hover {
  background: var(--deep);
  transform: translateY(-50%) scale(1.04);
}

.gallery-close:hover {
  transform: scale(1.04);
}

[data-aos-ready] .reveal,
[data-aos-ready] .reveal-card,
[data-aos-ready] .reveal-img,
[data-aos-ready] .reveal-icon {
  will-change: opacity, transform;
}

@media (max-width: 991px) {
  .water-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
    gap: 22px;
  }

  .water-gallery-card-lg,
  .water-gallery-card-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 575px) {
  .gallery-lead {
    font-size: 14px;
  }

  .water-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 18px;
  }

  .water-gallery-card-lg,
  .water-gallery-card-wide {
    grid-column: span 1;
  }

  .gallery-overlay {
    padding: 46px 18px 20px;
  }

  .gallery-overlay h3 {
    font-size: 18px;
  }

  .gallery-lightbox {
    padding: 76px 18px 38px;
  }

  .gallery-nav {
    top: auto;
    bottom: 18px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .gallery-prev { left: calc(50% - 52px); }
  .gallery-next { right: calc(50% - 52px); }
}

.latest-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 88%, rgba(236, 141, 85, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(85, 97, 135, 0.18), transparent 30%),
    rgba(135, 135, 143, 0.14);
}

.latest-section::before,
.latest-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.latest-section::before {
  width: 260px;
  height: 260px;
  left: -120px;
  top: auto;
  bottom: 90px;
  border: 38px solid rgba(236, 141, 85, 0.09);
  animation: galleryFloat 8s ease-in-out infinite;
}
.latest-section::after {
  width: 360px;
  height: 360px;
  right: -160px;
  top: 30px;
  bottom: auto;
  border: 52px solid rgba(33, 45, 71, 0.07);
}
.latest-section .container {
  position: relative;
  z-index: 2;
}

@keyframes galleryFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -22px, 0) scale(1.04);
  }
}
.gallery-lightbox.is-open {
  z-index: 999999 !important;
}

body.gallery-lightbox-open .site-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.gallery-lightbox-open .gallery-lightbox.is-open {
  z-index: 2147483000 !important;
}

body.gallery-lightbox-open .gallery-close {
  z-index: 2147483001 !important;
}

body.gallery-lightbox-open .power-cursor {
  z-index: 2147483002 !important;
}
.footer img{max-width: 50%;}

.power-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
  background: rgba(85, 97, 135, 0.08);
  display: grid;
  place-items: center;
  contain: layout paint style;
  transition: background-color .18s ease;
}

.power-cursor::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(135, 135, 143, 0.36);
  transition: background-color .18s ease;
}

.power-cursor__icon {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  border: 2px solid rgba(255,255,255,.7);
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}

@media (min-width: 992px) {
  html,
  body,
  body *,
  body *::before,
  body *::after {
    cursor: none !important;
  }
}

.power-cursor.is-clicked {
  background: rgba(236, 141, 85, 0.22);
}

.power-cursor.is-clicked::before {
  background: #ec8d55;
}

.power-cursor.is-clicked .power-cursor__icon {
  color: #fff;
  border-color: #fff;
  transform: scale(.88);
}
