@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2')
}

:root {
    --primary: #073B63;
    --secondary: #08A9D6;
    --accent: #7EEAFF;
    --dark: #061F3D;
    --light: #F3FBFF;
    --white: #ffffff;
    --yellow: #FFD66B;
    --text: #526C7C;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.pr-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--white);
}

/* NAV */
.pr-navbar {
    position: relative;
    z-index: 30;
    padding: 26px 0;
}

.pr-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-size: 28px;
    font-weight: 900;
}

.logo-mark {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: var(--light);
    color: var(--secondary);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(8, 169, 214, .14);
}

.pr-navbar .nav-link {
    color: var(--white);
    font-weight: 700;
    padding: 10px 15px !important;
    transition: .3s;
}

.pr-navbar .nav-link:hover,
.pr-navbar .nav-link.active {
color: #08A9D6;
  background-color: #fff;
  border-radius: 23px;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.dropdown-caret {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .25s ease;
}

.nav-dropdown.is-open .dropdown-caret {
    transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    min-width: 240px;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(6, 31, 61, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 50;
}

.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: block;
    padding: 11px 20px;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
}

.nav-dropdown-link:hover {
    background: var(--light);
    color: var(--secondary);
}

.nav-phone {
    margin-left: 20px;
    background: var(--yellow);
    color: var(--dark);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    transition: .35s;
}

.nav-phone:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-4px);
}

/* RIGHT CURVE */
.right-curve {
    position: absolute;
    top: -260px;
    right: -250px;
    width: 1050px;
    height: 1050px;
    background: var(--dark);
    border-radius: 50%;
    z-index: 1;
}

.right-curve::after {
    content: "";
    position: absolute;
    inset: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    animation: rotateSoft 18s linear infinite;
}

/* LEFT MODERN BACKGROUND */
.water-svg {
    position: absolute;
    left: -110px;
    top: 110px;
    width: 620px;
    height: 620px;
    opacity: .07;
    z-index: 1;
}

.water-svg path {
    fill: none;
    stroke: var(--secondary);
    stroke-width: 7;
    stroke-linecap: round;
    animation: waveSlide 5s ease-in-out infinite;
}

.water-svg path:nth-child(2) {
    animation-delay: .7s;
}

.water-svg path:nth-child(3) {
    animation-delay: 1.3s;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(8, 169, 214, .08);
    z-index: 1;
}

.ripple::after {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: 50%;
    border: 2px solid rgba(8, 169, 214, .05);
}

.ripple-1 {
    width: 310px;
    height: 310px;
    left: -95px;
    top: 185px;
    animation: rotateSoft 12s linear infinite;
}

.ripple-2 {
    width: 180px;
    height: 180px;
    left: 260px;
    top: 130px;
    animation: rotateSoft 9s linear infinite reverse;
}

.ripple-3 {
    width: 430px;
    height: 430px;
    left: 110px;
    bottom: -190px;
    animation: rotateSoft 16s linear infinite;
}

.bg-icon {
    position: absolute;
    z-index: 1;
    opacity: .045;
    font-size: 170px;
    filter: grayscale(1);
    animation: toolMove 8s ease-in-out infinite;
}

.wrench {
    left: 25px;
    top: 185px;
}

.faucet {
    left: 619px;
    top: 123px;
    animation-delay: 1s;
}

.drop {
    left: 160px;
    bottom: 55px;
    animation-delay: 2s;
}

.glass-card {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, .64);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(8, 169, 214, .12);
    box-shadow: 0 18px 40px rgba(6, 31, 61, .08);
    border-radius: 22px;
    padding: 13px 20px;
    color: var(--primary);
    font-weight: 900;
    animation: floatY 6s ease-in-out infinite;
}

.glass-1 {
    left: 48px;
    top: 225px;
}

.glass-2 {
    left: 359px;
    bottom: 55px;
    animation-delay: 1.4s;
}

/* DECORATION */
.soft-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
}

.circle-one {
    width: 150px;
    height: 150px;
    top: 120px;
    right: 510px;
    background: rgba(126, 234, 255, .12);
    animation: floatY 5s ease-in-out infinite;
}

.circle-two {
    width: 230px;
    height: 230px;
    bottom: -80px;
    right: 35px;
    background: rgba(255, 214, 107, .9);
    animation: floatX 6s ease-in-out infinite;
}

/* CONTENT */
.pr-hero-container {
    position: relative;
    z-index: 10;
    padding: 85px 0 90px;
}

.pr-hero-content {
    max-width: 620px;
    position: relative;
    z-index: 5;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light);
    color: var(--secondary);
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 28px;
    box-shadow: 0 15px 35px rgba(8, 169, 214, .12);
}

.pr-hero-content h1 {
    font-size: clamp(48px, 6.5vw, 88px);
    line-height: 1.06;
    color: var(--dark);
    font-weight: 900;
    margin-bottom: 38px;
}

.pr-hero-content h1 span {
    color: var(--secondary);
}

.hero-info {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 42px;
}

.info-icon {
    width: 72px;
    height: 72px;
    color: var(--secondary);
    border: 2px solid rgba(8, 169, 214, .35);
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 30px;
    animation: pulseIcon 2s infinite;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(8px);
}

.hero-info h5 {
    color: var(--dark);
    font-weight: 900;
    margin-bottom: 6px;
}

.hero-info p {
    margin: 0;
    color: var(--primary);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    min-width: 165px;
    padding: 16px 30px;  font-size: 20px;
    border-radius: 50px;
    text-align: center;
    font-weight: 900;
    text-decoration: none;
    transition: .35s;
}

.primary-btn {
    background: var(--yellow);
    color: var(--dark);
}

.outline-btn {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: rgba(255, 255, 255, .8);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(6, 31, 61, .18);
}

.outline-btn:hover {
    background: var(--secondary);
    color: var(--white);
}

/* IMAGE */
.pr-hero-image {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-orbit {
    position: absolute;
    width: 610px;
    height: 610px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, .16);
    animation: rotateSoft 18s linear infinite;
}

.main-photo {
    position: relative;
    width: 545px;
    height: 545px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 5;
    box-shadow: 0 35px 85px rgba(0, 0, 0, .22);
    animation: floatY 4s ease-in-out infinite;
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-bubble {
    position: absolute;
    left: 35px;
    bottom: 130px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: bounceSoft 3s ease-in-out infinite;
}

.price-bubble span {
    font-size: 21px;
    font-weight: 900;
}

.price-bubble strong {
    color: var(--yellow);
    font-size: 22px;
}

.service-bubble {
    position: absolute;
    right: 0;
    bottom: 95px;
    z-index: 8;
    background: var(--white);
    color: var(--dark);
    padding: 18px 24px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatY 5s ease-in-out infinite;
}

.service-bubble span {
    font-size: 24px;
}

.service-bubble p {
    margin: 0;
    font-weight: 900;
}

.scroll-down {
    position: absolute;
    right: -10px;
    bottom: 0;
    z-index: 9;
    color: var(--white);
    text-align: center;
    font-weight: 800;
}

.scroll-down a {
    margin: 14px auto 0;
    width: 64px;
    height: 64px;
    background: var(--white);
    color: var(--secondary);
    display: grid;
    place-items: center;
    border-radius: 50%;
    text-decoration: none;
    animation: scrollDown 1.6s infinite;
}

/* TOGGLER */
.pr-toggler {
    border: 0;
    box-shadow: none !important;
    background: var(--yellow);
    padding: 10px;
    border-radius: 12px;
}

.pr-toggler span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--dark);
    margin: 4px 0;
    border-radius: 5px;
}

/* ANIMATION */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes floatX {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(24px);
    }
}

@keyframes bounceSoft {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.04);
    }
}

@keyframes rotateSoft {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes waveSlide {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(35px);
    }
}

@keyframes toolMove {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(6deg);
    }
}

@keyframes pulseIcon {
    0% {
        box-shadow: 0 0 0 0 rgba(8, 169, 214, .35);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(8, 169, 214, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(8, 169, 214, 0);
    }
}

@keyframes scrollDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .right-curve {
        right: -390px;
    }

    .main-photo {
        width: 470px;
        height: 470px;
    }

    .image-orbit {
        width: 520px;
        height: 520px;
    }
}

@media (max-width: 991px) {
    .pr-hero {
        background: linear-gradient(180deg, var(--white) 0%, var(--white) 55%, var(--dark) 55%, var(--dark) 100%);
    }

    .right-curve {
        top: auto;
        bottom: -330px;
        right: -220px;
        width: 760px;
        height: 760px;
    }

    .pr-navbar {
        background: var(--dark);
        padding: 16px 0;
    }

    .pr-logo {
        color: var(--white);
        font-size: 22px;
    }

    .navbar-collapse {
        background: rgba(6, 31, 61, .98);
        padding: 22px;
        border-radius: 24px;
        margin-top: 18px;
    }

    .pr-navbar .nav-link {
        padding: 10px 0 !important;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        min-width: 100%;
        position: static;
        margin-top: 8px;
        box-shadow: none;
        border-radius: 16px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        max-height: 320px;
        padding: 8px 0;
    }

    .nav-phone {
        margin: 14px 0 0;
    }

    .pr-hero-container {
        padding: 65px 0 70px;
    }

    .pr-hero-content {
        text-align: center;
        margin: auto;
    }

    .hero-info,
    .hero-actions {
        justify-content: center;
    }

    .pr-hero-image {
        margin-top: 45px;
        min-height: 560px;
    }

    .main-photo {
        width: 430px;
        height: 430px;
    }

    .image-orbit {
        width: 480px;
        height: 480px;
    }

    .scroll-down,
    .glass-card,
    .faucet {
        display: none;
    }
}

@media (max-width: 575px) {
    .pr-logo {
        font-size: 18px;
    }

    .logo-mark {
        width: 46px;
        height: 46px;
    }

    .pr-hero-content h1 {
        font-size: 42px;
    }

    .hero-info {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }

    .pr-hero-image {
        min-height: 440px;
    }

    .main-photo {
        width: 310px;
        height: 310px;
    }

    .image-orbit {
        width: 350px;
        height: 350px;
    }

    .price-bubble {
        width: 105px;
        height: 105px;
        left: 0;
        bottom: 105px;
    }

    .price-bubble span,
    .price-bubble strong {
        font-size: 16px;
    }

    .service-bubble {
        right: 0;
        bottom: 30px;
        padding: 13px 15px;
        font-size: 13px;
    }

    .circle-one,
    .circle-two,
    .bg-icon,
    .ripple-2 {
        display: none;
    }
}

.why-pro-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--white);
}

.why-pro-bg {
  position: absolute;
  right: -260px;
  top: 50%;
  transform: translateY(-50%);
  width: 760px;
  height: 760px;
  background: var(--dark);
  border-radius: 50%;
  z-index: 1;
}

.why-pro-section::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 2px solid rgba(8,169,214,.12);
  animation: whyRotate 14s linear infinite;
}

.why-pro-section::after {
  content: "💧";
  position: absolute;
  left: 10%;
  bottom: 8%;
  font-size: 150px;
  opacity: .045;
  animation: whyFloat 6s ease-in-out infinite;
}

.why-pro-section .container {
  position: relative;
  z-index: 5;
}

.why-pro-left {
  position: relative;
  padding: 45px;
  border-radius: 36px;
  background: linear-gradient(145deg, var(--dark), var(--primary));
  color: var(--white);
  box-shadow: 0 30px 80px rgba(6,31,61,.22);
  overflow: hidden;
}

.why-pro-left::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: rgba(8,169,214,.28);
}

.why-pro-left::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,214,107,.18);
}

.why-pro-tag {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: rgba(255,255,255,.1);
  color: var(--yellow);
  padding: 10px 18px;
  border-radius: 40px;
  font-weight: 900;
  margin-bottom: 22px;
}

.why-pro-left h2 {
  position: relative;
  z-index: 2;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 900;
  margin-bottom: 22px;
}

.why-pro-left p {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 30px;
}

.why-pro-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
}

.why-pro-btn:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-5px);
}

.why-pro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 4;
}

.why-pro-card {
  min-height: 245px;
  padding: 32px;
  border-radius: 34px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(8,169,214,.12);
  box-shadow: 0 22px 55px rgba(6,31,61,.12);
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.why-pro-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(8,169,214,.08);
  transition: .4s;
}

.why-pro-card:hover,
.why-pro-card.active {
  transform: translateY(-12px);
  background: var(--secondary);
  color: var(--white);
}

.why-pro-card:hover::before,
.why-pro-card.active::before {
  background: rgba(255,255,255,.16);
  transform: scale(1.3);
}

.why-pro-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: var(--light);
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 22px;
  transition: .35s;
}

.why-pro-card h4 {
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 12px;
  transition: .35s;
}

.why-pro-card p {
  color: var(--text);
  line-height: 1.75;
  margin: 0;
  transition: .35s;
}

.why-pro-card:hover h4,
.why-pro-card:hover p,
.why-pro-card.active h4,
.why-pro-card.active p {
  color: var(--white);
}

.why-pro-card:hover .why-pro-icon,
.why-pro-card.active .why-pro-icon {
  background: var(--yellow);
  transform: rotate(8deg) scale(1.08);
}

.why-pro-card:nth-child(2),
.why-pro-card:nth-child(4) {
  transform: translateY(35px);
}

.why-pro-card:nth-child(2):hover,
.why-pro-card:nth-child(4):hover {
  transform: translateY(22px);
}

@keyframes whyRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes whyFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 991px) {
  .why-pro-section {
    padding: 90px 0;
  }

  .why-pro-bg {
    width: 620px;
    height: 620px;
    right: -360px;
  }

  .why-pro-left {
    text-align: center;
  }

  .why-pro-card:nth-child(2),
  .why-pro-card:nth-child(4) {
    transform: translateY(0);
  }
}

@media (max-width: 575px) {
  .why-pro-left {
    padding: 34px 24px;
  }

  .why-pro-grid {
    grid-template-columns: 1fr;
  }

  .why-pro-card {
    min-height: auto;
    padding: 28px;
  }
}

.premium-heater-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark);
}

.heater-bg-image {
  position: absolute;
  inset: 0;
  background-image: url("../water-heater/water-heater-repair.webp");
  background-size: cover;
  background-position: center right;
  transform: scale(1.05);
  animation: heaterZoom 14s ease-in-out infinite alternate;
}
.heater-bg-image1 {
  position: absolute;
  inset: 0;
  background-image: url("../water-heater/tankless-water-heater-bg.webp");
  background-size: cover;
  background-position: center right;
  transform: scale(1.05);
  animation: heaterZoom 14s ease-in-out infinite alternate;
}

.heater-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,31,61,.96) 0%, rgba(6,31,61,.86) 42%, rgba(6,31,61,.38) 100%),
    radial-gradient(circle at 75% 40%, rgba(8,169,214,.28), transparent 34%);
}

.premium-heater-section::before {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(8,169,214,.22);
  filter: blur(3px);
  animation: heaterFloat 6s ease-in-out infinite;
}

.premium-heater-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255,214,107,.24);
  animation: heaterFloat 7s ease-in-out infinite reverse;
}

.premium-heater-section .container {
  position: relative;
  z-index: 5;
}

.premium-heater-content {
  padding: 90px 0;
  max-width: 650px;
}

.premium-tag {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: var(--yellow);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
}

.premium-heater-content h2 {
  color: var(--white);
  font-size: 60px;
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 26px;
}

.premium-heater-content h2 span {
  color: var(--accent);
}

.premium-heater-content p {
  color: rgba(255,255,255,.82);
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 18px;
}

.premium-heater-btn {
  display: inline-block;
  margin-top: 25px;
  background: var(--yellow);
  color: var(--dark);
  padding: 17px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
}

.premium-heater-btn:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(8,169,214,.35);
}

.heater-glass-wrap {
  position: relative;
  min-height: 620px;
}

.heater-glass-card {
  position: absolute;
  width: 310px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 65px rgba(0,0,0,.22);
  color: var(--white);
  transition: .4s;
}

.heater-glass-card:hover {
  transform: translateY(-12px) scale(1.03);
  background: rgba(8,169,214,.36);
}

.heater-glass-card h4 {
  font-weight: 900;
  margin: 14px 0 10px;
}

.heater-glass-card p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.glass-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--yellow);
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 28px;
}

.main-card {
  top: 70px;
  left: 40px;
  animation: heaterFloat 5s ease-in-out infinite;
}

.heater-glass-card:nth-child(2) {
top: 151px;
  right: -33px;
  animation: heaterFloat 6s ease-in-out infinite reverse;
}

.heater-glass-card:nth-child(3) {
  bottom: 55px;
  left: 90px;
  animation: heaterFloat 7s ease-in-out infinite;
}

.heater-mini-stat {
  position: absolute;
  right: 30px;
  bottom: 40px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 22px 55px rgba(8,169,214,.35);
  animation: heaterPulse 3s ease-in-out infinite;
}

.heater-mini-stat strong {
  color: var(--yellow);
  font-size: 38px;
  line-height: 1;
}

.heater-mini-stat span {
  font-weight: 900;
  text-align: center;
  font-size: 13px;
  max-width: 110px;
}

@keyframes heaterZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.14); }
}

@keyframes heaterFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes heaterPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@media (max-width: 991px) {
  .premium-heater-content {
    text-align: center;
    margin: auto;
    padding: 80px 0 30px;
  }

  .heater-overlay {
    background: rgba(6,31,61,.86);
  }

  .heater-glass-wrap {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-bottom: 80px;
  }

  .heater-glass-card,
  .main-card,
  .heater-glass-card:nth-child(2),
  .heater-glass-card:nth-child(3),
  .heater-mini-stat {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .heater-mini-stat {
    border-radius: 28px;
    height: auto;
    padding: 28px;
  }
}

@media (max-width: 575px) {
  .premium-heater-content h2 {
    font-size: 36px;
  }

  .heater-glass-card {
    padding: 24px;
  }
}


.bright-offer-section {
  position: relative;
  padding: 110px 0 130px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(8,169,214,.14), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(255,214,107,.38), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #F3FBFF 100%);
}

.offer-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape-1 {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 80px;
  border: 28px solid rgba(8,169,214,.08);
  animation: offerRotate 12s linear infinite;
}

.shape-2 {
  width: 180px;
  height: 180px;
  right: 7%;
  top: 70px;
  background: rgba(255,214,107,.38);
  animation: offerFloat 6s ease-in-out infinite;
}

.shape-3 {
  width: 120px;
  height: 120px;
  left: 45%;
  bottom: 40px;
  background: rgba(8,169,214,.13);
  animation: offerFloat 7s ease-in-out infinite reverse;
}

.bright-offer-section .container {
  position: relative;
  z-index: 5;
}

.bright-offer-box {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 40px;
  padding: 70px;
  border-radius: 46px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(8,169,214,.16);
  box-shadow: 0 35px 90px rgba(6,31,61,.12);
  overflow: hidden;
}

.bright-offer-box::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(8,169,214,.08);
}

.bright-offer-box::after {
  content: "💧";
  position: absolute;
  left: 35px;
  bottom: 15px;
  font-size: 130px;
  opacity: .045;
  animation: offerFloat 5s ease-in-out infinite;
}

.offer-text,
.offer-discount-area {
  position: relative;
  z-index: 3;
}

.offer-label {
  display: inline-block;
  background: var(--dark);
  color: var(--yellow);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 24px;
}

.offer-text h2 {
  color: var(--dark);
font-size: 62px;
  /* line-height: 69px; */
  font-weight: 900;
  margin-bottom: 24px;
}

.offer-text h2 span {
  color: var(--secondary);
  text-shadow: 0 10px 30px rgba(8,169,214,.18);
}

.offer-text p {
  color: var(--text);
  line-height: 1.85;
  font-size: 17px;
  max-width: 660px;
  margin-bottom: 28px;
}

.offer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.offer-list span {
  background: var(--light);
  color: var(--primary);
  border: 1px solid rgba(8,169,214,.15);
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 900;
  transition: .35s;
}

.offer-list span:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-5px);
}

.bright-offer-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 17px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
  box-shadow: 0 18px 40px rgba(255,214,107,.35);
}

.bright-offer-btn:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-5px);
}

.offer-discount-area {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discount-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 3px dashed rgba(8,169,214,.28);
  animation: offerRotate 16s linear infinite;
}

.discount-main {
  position: relative;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow:
    0 28px 70px rgba(8,169,214,.38),
    inset 0 0 0 14px rgba(255,255,255,.18);
  animation: offerPulse 3s ease-in-out infinite;
}

.discount-main small {
  color: var(--yellow);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.discount-main strong {
  color: var(--yellow);
  font-size: 92px;
  font-weight: 900;
  line-height: .78;
}

.discount-main span {
  font-size: 36px;
  font-weight: 900;
}

.offer-coupon-strip {
  position: relative;
  z-index: 10;
  max-width: 920px;
  margin: -48px auto 0;
  background: var(--white);
  border-radius: 30px;
  padding: 25px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: 0 25px 60px rgba(6,31,61,.15);
  border: 1px solid rgba(8,169,214,.14);
}

.strip-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.strip-icon {
  min-width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.strip-left h4 {
  margin: 0 0 5px;
  color: var(--dark);
  font-weight: 900;
}

.strip-left p {
  margin: 0;
  color: var(--text);
}

.strip-code {
  min-width: 220px;
  text-align: center;
  padding: 16px 25px;
  border-radius: 18px;
  background: var(--light);
  border: 2px dashed rgba(8,169,214,.35);
  color: var(--primary);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3px;
  animation: codePulse 2.5s infinite;
}

.offer-coupon-strip a,
.offer-coupon-strip a:hover,
.offer-coupon-strip a:focus {
  text-decoration: none;
}

@keyframes offerPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@keyframes offerFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes offerRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes codePulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@media (max-width: 991px) {
  .bright-offer-box {
    grid-template-columns: 1fr;
    padding: 48px 30px 75px;
    text-align: center;
  }

  .offer-list {
    justify-content: center;
  }

  .offer-discount-area {
    min-height: 360px;
  }

  .offer-coupon-strip {
    flex-direction: column;
    text-align: center;
    margin-top: -45px;
  }

  .strip-left {
    flex-direction: column;
  }

  .strip-code {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .bright-offer-section {
    padding: 80px 0 105px;
  }

  .bright-offer-box {
    padding: 38px 22px 70px;
    border-radius: 34px;
  }

  .discount-ring {
    width: 300px;
    height: 300px;
  }

  .discount-main {
    width: 220px;
    height: 220px;
  }

  .discount-main strong {
    font-size: 74px;
  }

  .offer-coupon-strip {
    padding: 22px;
  }
}

.heater-split-section{
    display:flex;
    min-height:850px;
    position:relative;
    overflow:hidden;
    background:#fff;
}

/* LEFT */

.split-text{
    width:50%;
    padding:100px 90px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    position:relative;
    background:
    radial-gradient(circle at top left,
    rgba(8,169,214,.10),
    transparent 40%);
}

.split-text::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(255,214,107,.15);
    left:-150px;
    bottom:-150px;
}

.split-tag{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:#F3FBFF;
    color:#08A9D6;
    font-weight:900;
    margin-bottom:25px;
}

.split-text h2{
    font-size:50px;
    font-weight:900;
    line-height:1.05;
    color:#061F3D;
    margin-bottom:25px;
}

.split-text h2 span{
    display:block;
    color:#08A9D6;
}

.split-text p{
    color:#526C7C;
    line-height:1.9;
    margin-bottom:18px;
}

.split-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:35px 0;
}

.split-features div{
    background:#F3FBFF;
    padding:18px;
    border-radius:18px;
    font-weight:800;
    color:#073B63;
    transition:.35s;
}

.split-features div:hover{
    background:#073B63;
    color:#fff;
    transform:translateY(-5px);
}

.split-btn{
    width:max-content;
    padding:18px 35px;
    border-radius:50px;
    background:#FFD66B;
    color:#061F3D;
    text-decoration:none;
    font-weight:900;
    transition:.35s;
}

.split-btn:hover{
    background:#08A9D6;
    color:#fff;
}

/* RIGHT */

.split-image{
    width:50%;
    position:relative;
    overflow:hidden;
}

.split-image::before{
    content:"";
    position:absolute;
    left:-120px;
    top:0;
    width:250px;
    height:100%;
    background:#fff;
    transform:skewX(-10deg);
    z-index:3;
}

.split-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.split-image:hover img{
    transform:scale(1.08);
}

.texture{
    position:absolute;
    inset:0;
    z-index:2;
    background:
    repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.05) 0,
    rgba(255,255,255,.05) 2px,
    transparent 2px,
    transparent 18px
    );
}

.floating-box{
    position:absolute;
    right:40px;
    bottom:40px;
    z-index:4;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(15px);
    padding:25px 35px;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.floating-box strong{
    display:block;
    font-size:40px;
    color:#08A9D6;
    font-weight:900;
}

.floating-box span{
    color:#073B63;
    font-weight:800;
}

/* Responsive */

@media(max-width:991px){

    .heater-split-section{
        flex-direction:column;
    }

    .split-text,
    .split-image{
        width:100%;
    }

    .split-text{
        padding:70px 30px;
    }

    .split-image{
        min-height:500px;
    }

    .split-image::before{
        display:none;
    }

    .split-features{
        grid-template-columns:1fr;
    }
}

.ba-timeline-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #061F3D;
}

.ba-timeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.timeline-bg-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape-left {
  width: 420px;
  height: 420px;
  left: -160px;
  top: 90px;
  background: rgba(8,169,214,.13);
  animation: timelineFloat 8s ease-in-out infinite;
}

.shape-right {
  width: 300px;
  height: 300px;
  right: -110px;
  bottom: -90px;
  background: rgba(255,214,107,.12);
  animation: timelineFloat 9s ease-in-out infinite reverse;
}

.ba-timeline-section .container {
  position: relative;
  z-index: 5;
}

.timeline-head {
  max-width: 850px;
  margin: 0 auto 75px;
}

.timeline-head span {
  display: inline-block;
  color: #FFD66B;
  background: rgba(255,255,255,.08);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 20px;
}

.timeline-head h2 {
  color: #fff;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
}

.timeline-head p {
  color: rgba(255,255,255,.75);
  font-size: 17px;
}

.timeline-wrap {
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  align-items: center;
  gap: 35px;
}

.timeline-photo {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: 0 30px 85px rgba(0,0,0,.32);
}

.timeline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

.timeline-photo:hover img {
  transform: scale(1.08);
}

.before-timeline {
  transform: translateY(40px);
}

.before-timeline img {
  filter: grayscale(100%) contrast(.9);
}

.after-timeline {
  transform: translateY(-40px);
  border: 8px solid rgba(255,255,255,.9);
}

.photo-label {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #fff;
  color: #061F3D;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 900;
  text-transform: uppercase;
}

.after-timeline .photo-label {
  background: #08A9D6;
  color: #fff;
}

.timeline-center {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline-step {
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 25px;
  text-align: center;
  color: #fff;
  transition: .35s;
}

.timeline-step:hover,
.timeline-step.active {
  background: #08A9D6;
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(8,169,214,.28);
}

.timeline-step strong {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: #FFD66B;
  color: #061F3D;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.timeline-step h4 {
  font-weight: 900;
  margin-bottom: 10px;
}

.timeline-step p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.timeline-step.active p,
.timeline-step:hover p {
  color: #fff;
}

.timeline-line {
  width: 4px;
  height: 55px;
  margin: auto;
  border-radius: 50px;
  background: linear-gradient(to bottom, transparent, #08A9D6, transparent);
  position: relative;
  overflow: hidden;
}

.timeline-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -60px;
  width: 100%;
  height: 55px;
  background: #FFD66B;
  animation: lineMove 2.5s linear infinite;
}

@keyframes lineMove {
  from { top: -60px; }
  to { top: 70px; }
}

@keyframes timelineFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

@media (max-width: 991px) {
  .timeline-wrap {
    grid-template-columns: 1fr;
  }

  .before-timeline,
  .after-timeline {
    transform: none;
  }

  .timeline-photo {
    height: 420px;
  }
}

@media (max-width: 575px) {
  .ba-timeline-section {
    padding: 80px 0;
  }

  .timeline-photo {
    height: 320px;
    border-radius: 30px;
  }

  .timeline-step {
    padding: 22px;
  }
}

.no-photo-compare-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(8,169,214,.13), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(255,214,107,.34), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #F3FBFF 100%);
}

.compare-bg {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.bg-1 {
  width: 280px;
  height: 280px;
  left: -90px;
  top: 80px;
  border: 26px solid rgba(8,169,214,.08);
  animation: compareRotate 16s linear infinite;
}

.bg-2 {
  width: 170px;
  height: 170px;
  right: 8%;
  top: 90px;
  background: rgba(255,214,107,.38);
  animation: compareFloat 7s ease-in-out infinite;
}

.bg-3 {
  width: 110px;
  height: 110px;
  left: 48%;
  bottom: 65px;
  background: rgba(8,169,214,.13);
  animation: compareFloat 6s ease-in-out infinite reverse;
}

.no-photo-compare-section .container {
  position: relative;
  z-index: 5;
}

.no-photo-head {
  max-width: 950px;
  margin: 0 auto 70px;
}

.no-photo-head span {
  display: inline-block;
  background: var(--dark);
  color: var(--yellow);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 22px;
}

.no-photo-head h2 {
  color: var(--dark);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 20px;
}

.no-photo-head p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}

.compare-table-wrap {
  position: relative;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(8,169,214,.15);
  border-radius: 42px;
  padding: 34px;
  box-shadow: 0 32px 90px rgba(6,31,61,.11);
  overflow: hidden;
}

.compare-table-wrap::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px dashed rgba(8,169,214,.18);
  pointer-events: none;
}

.compare-top {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.compare-title {
  padding: 28px;
  border-radius: 30px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 18px;
}

.tank-title {
  background: var(--primary);
}

.tankless-title {
  background: var(--secondary);
}

.compare-title span {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  font-size: 30px;
}

.compare-title h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
}

.compare-vs {
  width: 86px;
  height: 86px;
  margin: auto;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 25px;
  box-shadow: 0 18px 45px rgba(255,214,107,.35);
  animation: comparePulse 3s ease-in-out infinite;
}

.compare-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(8,169,214,.12);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row div {
  background: var(--light);
  color: var(--primary);
  padding: 20px 22px;
  border-radius: 22px;
  font-weight: 800;
  line-height: 1.7;
  transition: .35s;
}

.compare-row strong {
  text-align: center;
  color: var(--dark);
  font-weight: 900;
}

.compare-row:hover div {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-5px);
}

.compare-info-box {
  margin-top: 55px;
  padding: 42px;
  border-radius: 36px;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  box-shadow: 0 28px 75px rgba(6,31,61,.22);
}

.compare-info-box h4 {
  color: var(--yellow);
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 18px;
}

.compare-info-box p {
  max-width: 980px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.82);
  line-height: 1.9;
}

.compare-info-box a {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 17px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
}

.compare-info-box a:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-5px);
}

@keyframes compareFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

@keyframes compareRotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

@keyframes comparePulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@media (max-width: 991px) {
  .no-photo-compare-section {
    padding: 90px 0;
  }

  .compare-table-wrap {
    padding: 24px;
  }

  .compare-top,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-vs {
    width: 72px;
    height: 72px;
  }

  .compare-row strong {
    order: -1;
    padding: 12px 0;
    background: var(--white);
    border-radius: 18px;
  }
}

@media (max-width: 575px) {
  .compare-title {
    flex-direction: column;
    text-align: center;
  }

  .compare-title h3 {
    font-size: 24px;
  }

  .compare-info-box {
    padding: 32px 22px;
  }
}
.maintenance-hover-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #061F3D;
}

.steam{
    position:absolute;
    border-radius:50%;
    filter:blur(35px);
    z-index:1;
    opacity:.12;
}

.steam1{
    width:180px;
    height:180px;
    left:10%;
    bottom:-50px;
    background:#7EEAFF;
    animation:steamRise 12s linear infinite;
}

.steam2{
    width:120px;
    height:120px;
    left:18%;
    bottom:-80px;
    background:#ffffff;
    animation:steamRise 10s linear infinite;
    animation-delay:2s;
}

.steam3{
    width:220px;
    height:220px;
    right:12%;
    bottom:-60px;
    background:#7EEAFF;
    animation:steamRise 14s linear infinite;
}

.steam4{
    width:150px;
    height:150px;
    right:22%;
    bottom:-90px;
    background:#ffffff;
    animation:steamRise 11s linear infinite;
    animation-delay:3s;
}

.steam5{
    width:260px;
    height:260px;
    left:50%;
    bottom:-120px;
    background:#08A9D6;
    animation:steamRise 16s linear infinite;
    animation-delay:1s;
}

.steam6{
    width:100px;
    height:100px;
    left:60%;
    bottom:-70px;
    background:#ffffff;
    animation:steamRise 9s linear infinite;
    animation-delay:4s;
}

@keyframes steamRise{

    0%{
        transform:
        translateY(0)
        translateX(0)
        scale(.6);

        opacity:0;
    }

    20%{
        opacity:.15;
    }

    50%{
        transform:
        translateY(-250px)
        translateX(30px)
        scale(1);
    }

    100%{
        transform:
        translateY(-600px)
        translateX(-30px)
        scale(1.5);

        opacity:0;
    }
}
.mh-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.mh-shape-1 {
  width: 420px;
  height: 420px;
  left: -160px;
  top: -140px;
  background: rgba(8,169,214,.1);
  animation: mhFloat 7s ease-in-out infinite;
}

.mh-shape-2 {
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -80px;
  background: rgba(255,214,107,.12);
  animation: mhFloat 8s ease-in-out infinite reverse;
}

.maintenance-hover-section .container {
  position: relative;
  z-index: 5;
}
.maintenance-hover-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;

    background:
    linear-gradient(
        rgba(6,31,61,.82),
        rgba(6,31,61,.90)
    ),
    url(../water-heater/bg.webp);

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}
.maintenance-hover-section::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at center,
        rgba(8,169,214,.15),
        rgba(6,31,61,.45)
    );

    z-index:1;
}

.maintenance-hover-section .container{
    position:relative;
    z-index:5;
}
.mh-photo {
  position: relative;
  height: 650px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0,0,0,.32);
}

.mh-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}

.mh-photo:hover img {
  transform: scale(1.08);
}

.mh-photo-card {
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: rgba(255,255,255,.92);
  color: #061F3D;
  padding: 24px 28px;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.mh-photo-card strong {
  display: block;
  color: #08A9D6;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.mh-photo-card span {
  font-weight: 900;
}

.mh-tag {
  display: inline-block;
  background: rgba(255,255,255,.08);
  color: #FFD66B;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 22px;
}

.mh-content h2 {
  color: #fff;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 40px;
}

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

.mh-point {
  position: relative;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 18px 22px;
  border-radius: 60px;
  font-weight: 900;
  cursor: pointer;
  transition: .35s;
}

.mh-point span {
  color: #FFD66B;
  margin-right: 8px;
  display: inline-block;
  transition: .35s;
}

.mh-point:hover {
  background: #08A9D6;
  transform: translateY(-6px);
}

.mh-point:hover span {
  color: #fff;
  transform: rotate(360deg);
}

.mh-point::after {
  content: attr(data-info);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 16px);
  transform: translateX(-50%) translateY(12px);
  width: 310px;
  background: rgba(255,255,255,.96);
  color: #526C7C;
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
  font-weight: 700;
  line-height: 1.65;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .35s;
  z-index: 20;
}

.mh-point::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 7px);
  transform: translateX(-50%) translateY(12px) rotate(45deg);
  width: 18px;
  height: 18px;
  background: rgba(255,255,255,.96);
  opacity: 0;
  visibility: hidden;
  transition: .35s;
  z-index: 19;
}

.mh-point:hover::after,
.mh-point:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mh-point:hover::before {
  transform: translateX(-50%) translateY(0) rotate(45deg);
}

@keyframes mhFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

@media (max-width: 991px) {
  .maintenance-hover-section {
    padding: 90px 0;
  }

  .mh-photo {
    height: 480px;
  }

  .mh-content {
    text-align: center;
  }

  .mh-point::after {
    width: 270px;
  }
}

@media (max-width: 575px) {
  .maintenance-hover-section {
    padding: 80px 0;
  }

  .mh-grid {
    grid-template-columns: 1fr;
  }

  .mh-photo {
    height: 390px;
    border-radius: 32px;
  }

  .mh-point {
    text-align: center;
  }

  .mh-point::after {
    left: 0;
    right: 0;
    width: auto;
    transform: translateY(12px);
  }

  .mh-point::before {
    left: 50%;
  }

  .mh-point:hover::after {
    transform: translateY(0);
  }
}


.balanced-gallery-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(8,169,214,.12), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(255,214,107,.30), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #F3FBFF 100%);
}

.bal-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.bal-shape-1 {
  width: 300px;
  height: 300px;
  left: -110px;
  top: 80px;
  background: rgba(8,169,214,.10);
  animation: balFloat 7s ease-in-out infinite;
}

.bal-shape-2 {
  width: 190px;
  height: 190px;
  right: 8%;
  top: 110px;
  background: rgba(255,214,107,.35);
  animation: balFloat 9s ease-in-out infinite reverse;
}

.bal-shape-3 {
  width: 130px;
  height: 130px;
  left: 46%;
  bottom: 55px;
  background: rgba(8,169,214,.12);
  animation: balFloat 8s ease-in-out infinite;
}

.balanced-gallery-section .container {
  position: relative;
  z-index: 5;
}

.balanced-gallery-head {
  max-width: 850px;
  margin: 0 auto 70px;
}

.balanced-gallery-head span {
  display: inline-block;
  background: #061F3D;
  color: #FFD66B;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 20px;
}

.balanced-gallery-head h2 {
  color: #061F3D;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 900;
  margin-bottom: 15px;
}

.balanced-gallery-head p {
  color: #526C7C;
  line-height: 1.8;
}

.balanced-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.balanced-card {
  position: relative;
  height: 300px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(6,31,61,.13);
  transition: .4s;
  background: #fff;
}

.balanced-card.featured {
  grid-column: 1 / span 3;
  max-width: 760px;
  width: 100%;
  height: 360px;
  margin: 10px auto;
}

.balanced-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .9s;
}

.balanced-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,31,61,.60), transparent 60%);
  z-index: 2;
  transition: .35s;
}

.balanced-card:hover {
  transform: translateY(-8px);
}

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

.balanced-card:hover::before {
  background: linear-gradient(to top, rgba(8,169,214,.72), transparent 62%);
}

.balanced-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  background: rgba(255,255,255,.92);
  color: #061F3D;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 900;
  box-shadow: 0 12px 35px rgba(0,0,0,.16);
}

@keyframes balFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

@media (max-width: 991px) {
  .balanced-gallery-section {
    padding: 90px 0;
  }

  .balanced-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .balanced-card.featured {
    grid-column: 1 / span 2;
  }
}

@media (max-width: 575px) {
  .balanced-gallery-section {
    padding: 80px 0;
  }

  .balanced-gallery-grid {
    grid-template-columns: 1fr;
  }

  .balanced-card,
  .balanced-card.featured {
    grid-column: auto;
    height: 280px;
  }
}
.gallery-wave{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:120px;
}

.gallery-wave svg{
    width:100%;
    height:100%;
    animation:waveMove 12s linear infinite;
}

@keyframes waveMove{
    0%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(-30px);
    }

    100%{
        transform:translateX(0);
    }
}
.real-wave{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:180px;
    overflow:hidden;
    z-index:1;
}

.real-wave svg{
    width:100%;
    height:100%;
}

.wave-one{
    fill:rgba(8,169,214,.15);
}

.wave-two{
    fill:rgba(126,234,255,.12);
}

.plano-faq-section {
  position: relative;
  padding: 120px 0 180px;
  overflow: hidden;
  background: #061F3D;
}

.plano-faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(8,169,214,.18), transparent 28%),
    radial-gradient(circle at 90% 75%, rgba(255,214,107,.12), transparent 24%);
}

.faq-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.faq-shape-1 {
  width: 340px;
  height: 340px;
  left: -130px;
  top: 80px;
  background: rgba(8,169,214,.12);
  animation: faqFloat 7s ease-in-out infinite;
}

.faq-shape-2 {
  width: 220px;
  height: 220px;
  right: -80px;
  top: 120px;
  background: rgba(255,214,107,.12);
  animation: faqFloat 9s ease-in-out infinite reverse;
}

.plano-faq-section .container {
  position: relative;
  z-index: 5;
}

.faq-head {
  max-width: 850px;
  margin: 0 auto 70px;
}

.faq-head span {
  display: inline-block;
  background: rgba(255,255,255,.08);
  color: #FFD66B;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 20px;
}

.faq-head h2 {
  color: #fff;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  margin-bottom: 16px;
}

.faq-head p {
  color: rgba(255,255,255,.76);
  line-height: 1.8;
}

.faq-side-card {
  position: relative;
  padding: 42px;
  border-radius: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  box-shadow: 0 28px 75px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}

.faq-side-card h3 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 18px;
}

.faq-side-card p {
  color: rgba(255,255,255,.76);
  line-height: 1.8;
  margin-bottom: 28px;
}

.faq-side-card a {
  display: inline-block;
  background: #FFD66B;
  color: #061F3D;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
}

.faq-side-card a:hover {
  background: #08A9D6;
  color: #fff;
  transform: translateY(-5px);
}

.faq-accordion {
  display: grid;
  gap: 18px;
}

.faq-item {
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  overflow: hidden;
  transition: .35s;
}

.faq-item:hover,
.faq-item.active {
  background: rgba(8,169,214,.22);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 24px 26px;
  text-align: left;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}

.faq-question span {
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFD66B;
  color: #061F3D;
  display: grid;
  place-items: center;
  font-size: 24px;
  transition: .35s;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  background: #08A9D6;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.faq-item.active .faq-answer {
  max-height: 360px;
}

.faq-answer p {
  padding: 0 26px 26px;
  color: rgba(255,255,255,.78);
  line-height: 1.85;
  margin: 0;
}

.real-wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.real-wave svg {
  width: 100%;
  height: 100%;
}

.wave-one {
  fill: rgba(8,169,214,.16);
}

.wave-two {
  fill: rgba(126,234,255,.10);
}

@keyframes faqFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

@media (max-width: 991px) {
  .plano-faq-section {
    padding: 90px 0 150px;
  }
}

@media (max-width: 575px) {
  .plano-faq-section {
    padding: 80px 0 130px;
  }

  .faq-side-card {
    padding: 30px 24px;
  }

  .faq-question {
    font-size: 16px;
    padding: 22px;
  }
}

.contact-float-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(8,169,214,.12), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(255,214,107,.25), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #F3FBFF 100%);
}

.contact-float-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  left: -150px;
  top: 50px;
  background: rgba(8,169,214,.08);
  animation: contactFloatTwo 8s infinite ease-in-out;
}

.contact-float-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  right: -80px;
  bottom: 80px;
  background: rgba(255,214,107,.18);
  animation: contactFloatTwo 10s infinite ease-in-out;
}

.float-bg-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape-a {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 90px;
  border: 28px solid rgba(8,169,214,.08);
  animation: contactFloatTwo 8s ease-in-out infinite;
}

.shape-b {
  width: 230px;
  height: 230px;
  right: -70px;
  bottom: 80px;
  background: rgba(255,214,107,.18);
  animation: contactFloatTwo 9s ease-in-out infinite reverse;
}

.water-bubble {
  position: absolute;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  background: rgba(126,234,255,.25);
  z-index: 1;
}

.bubble1 {
  width: 70px;
  height: 70px;
  left: 8%;
  bottom: 15%;
  animation: bubbleFloat 7s infinite;
}

.bubble2 {
  width: 45px;
  height: 45px;
  right: 12%;
  top: 25%;
  animation: bubbleFloat 9s infinite;
}

.bubble3 {
  width: 90px;
  height: 90px;
  left: 75%;
  bottom: 25%;
  animation: bubbleFloat 11s infinite;
}

.contact-float-section .container {
  position: relative;
  z-index: 5;
}

.contact-float-head {
  max-width: 820px;
  margin: 0 auto 70px;
}

.contact-float-head span {
  display: inline-block;
  background: #061F3D;
  color: #FFD66B;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 20px;
}

.contact-float-head h2 {
  color: #061F3D;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  margin-bottom: 15px;
}

.contact-float-head p {
  color: #526C7C;
  line-height: 1.8;
}

.contact-float-layout {
  position: relative;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 32px;
  align-items: start;
}

.service-info-cards {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 25px;
}

.info-mini-card {
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(8,169,214,.12);
  box-shadow: 0 20px 50px rgba(6,31,61,.08);
  color: #061F3D;
  transition: .35s;
}

.info-mini-card:hover,
.info-mini-card.active {
  background: #08A9D6;
  color: #fff;
  transform: translateY(-8px);
}

.info-mini-card strong {
  display: block;
  color: #08A9D6;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 12px;
  transition: .35s;
}

.info-mini-card:hover strong,
.info-mini-card.active strong {
  color: #FFD66B;
}

.info-mini-card h4 {
  font-weight: 900;
  margin-bottom: 8px;
}

.info-mini-card p {
  margin: 0;
  color: #526C7C;
  line-height: 1.7;
  transition: .35s;
}

.info-mini-card:hover p,
.info-mini-card.active p {
  color: #fff;
}

.floating-form-card {
  background: #fff;
  border-radius: 40px;
  padding: 50px;
  border: 1px solid rgba(8,169,214,.10);
  box-shadow: 0 35px 90px rgba(6,31,61,.08);
}

.contact-call-strip {
  grid-column: 1 / span 2;
  margin-top: 10px;
  background: #ffffff;
  border: 1px solid rgba(8,169,214,.12);
  box-shadow: 0 20px 50px rgba(6,31,61,.06);
  border-radius: 28px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #061F3D;
}

.contact-call-strip span {
  color: #526C7C;
  font-weight: 800;
}

.contact-call-strip a {
  background: #FFD66B;
  color: #061F3D;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
}

.contact-call-strip a:hover {
  background: #08A9D6;
  color: #fff;
  transform: translateY(-5px);
}

.cc-fcf-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.cc-fcf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cc-fcf-form input,
.cc-fcf-form textarea,
.cc-fcf-form select {
  width: 100%;
  border: 1px solid rgba(8,169,214,.18);
  background: #F3FBFF;
  color: #061F3D;
  padding: 17px 18px;
  border-radius: 18px;
  outline: none;
  font-weight: 700;
  transition: .3s;
}

.cc-fcf-form textarea {
  min-height: 135px;
  resize: none;
  margin-top: 18px;
}

.cc-fcf-form input:focus,
.cc-fcf-form textarea:focus,
.cc-fcf-form select:focus {
  background: #fff;
  border-color: #08A9D6;
  box-shadow: 0 12px 30px rgba(8,169,214,.12);
}

.cc-fcf-label {
  display: block;
  color: #061F3D;
  font-weight: 900;
  margin: 22px 0 12px;
}

.cc-fcf-date {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.cc-fcf-form input[type="submit"] {
  margin-top: 24px;
  background: #FFD66B;
  color: #061F3D;
  border: 0;
  border-radius: 50px;
  padding: 18px 38px;
  font-weight: 900;
  cursor: pointer;
  transition: .35s;
}

.cc-fcf-form input[type="submit"]:hover {
  background: #08A9D6;
  color: #fff;
  transform: translateY(-5px);
}

@keyframes contactFloatTwo {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }
}

@keyframes bubbleFloat {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 991px) {
  .contact-float-section {
    padding: 90px 0;
  }

  .contact-float-layout {
    grid-template-columns: 1fr;
  }

  .service-info-cards {
    position: relative;
    top: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-call-strip {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .service-info-cards {
    grid-template-columns: 1fr;
  }

  .contact-call-strip {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .floating-form-card {
    padding: 30px 22px;
    border-radius: 30px;
  }

  .cc-fcf-grid,
  .cc-fcf-date {
    grid-template-columns: 1fr;
  }

  .contact-call-strip a {
    width: 100%;
    text-align: center;
  }
}

.plano-footer {
  position: relative;
  background: #061F3D;
  color: #fff;
  padding: 70px 0 35px;
  overflow: hidden;
}

.plano-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(8,169,214,.16), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(255,214,107,.10), transparent 24%);
}

.plano-footer .container {
  position: relative;
  z-index: 5;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-brand-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: #08A9D6;
  display: grid;
  place-items: center;
  font-size: 30px;
}

.footer-brand-box h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
}

.footer-top-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-top-links a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  transition: .35s;
}

.footer-top-links a:hover {
  background: #FFD66B;
  color: #061F3D;
  transform: translateY(-4px);
}

.footer-content-grid {
  display: grid;
  grid-template-columns: minmax(360px, 620px) minmax(280px, 420px);
  justify-content: center;
  gap: 40px;
  padding: 55px 0;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-widget h4 {
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 24px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget li {
  margin-bottom: 14px;
}

.footer-widget a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 800;
  transition: .3s;
}

.footer-widget a:hover {
  color: #FFD66B;
  padding-left: 6px;
}

.two-col-links {
  columns: 2;
  column-gap: 28px;
}

.footer-location-list {
  columns: 2;
  column-gap: 24px;
}

.footer-location-list li {
  break-inside: avoid;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.footer-data {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}

.data-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.data-item > span:not(.obfuscatedEmail) {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 14px;
  background: rgba(8,169,214,.22);
  display: grid;
  place-items: center;
}

.data-item p,
.data-item a {
  margin: 0;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

.obfuscatedEmail {
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

.footer-map-btn {
  display: inline-block;
  margin-top: 8px;
  background: #FFD66B;
  color: #061F3D !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 900 !important;
}

.footer-map-btn:hover {
  background: #08A9D6;
  color: #fff !important;
  padding-left: 28px !important;
  transform: translateY(-4px);
}

.footer-map-box {
  display: flex;
  flex-direction: column;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 25px 70px rgba(0,0,0,.22);
  background: rgba(255,255,255,.07);
}

.footer-map-box .data-item {
  margin: 0;
  padding: 20px 22px 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-map-box .data-item p {
  color: rgba(255,255,255,.88);
}

.footer-map-box iframe {
  width: 100%;
  height: 260px;
  border: 0;
  filter: grayscale(30%) contrast(1.05);
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #061F3D;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 900;
  transition: .35s;
}

.footer-social a:hover {
  background: #08A9D6;
  color: #fff;
  transform: translateY(-5px);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

@media (max-width: 991px) {
  .footer-brand-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact-row {
    grid-template-columns: 1fr;
  }

  .footer-content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .plano-footer {
    padding-top: 55px;
  }

  .footer-content-grid {
    grid-template-columns: 1fr;
  }

  .two-col-links {
    columns: 1;
  }

  .footer-location-list {
    columns: 1;
  }

  .footer-brand-box {
    flex-direction: column;
  }

  .footer-top-links {
    justify-content: center;
  }
}

.service-faq-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(8,169,214,.12), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(255,214,107,.28), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #F3FBFF 100%);
}

.service-faq-head {
  max-width: 900px;
  margin: 0 auto 70px;
}

.service-faq-head span {
  display: inline-block;
  background: #061F3D;
  color: #FFD66B;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 900;
  margin-bottom: 20px;
}

.service-faq-head h2 {
  color: #061F3D;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  margin-bottom: 15px;
}

.service-faq-head p {
  color: #526C7C;
  line-height: 1.8;
}

.faq-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.faq-service-card {
  background: #fff;
  border: 1px solid rgba(8,169,214,.14);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 25px 70px rgba(6,31,61,.09);
  transition: .35s;
}

.faq-service-card:hover {
  transform: translateY(-10px);
}

.faq-service-card h3 {
  color: #061F3D;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.faq-service-card details {
  background: #F3FBFF;
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-service-card summary {
  cursor: pointer;
  padding: 16px 18px;
  color: #073B63;
  font-weight: 900;
  list-style: none;
}

.faq-service-card summary::-webkit-details-marker {
  display: none;
}

.faq-service-card summary::after {
  content: "+";
  float: right;
  color: #08A9D6;
  font-size: 22px;
  line-height: 1;
}

.faq-service-card details[open] summary::after {
  content: "×";
}

.faq-service-card p {
  padding: 0 18px 18px;
  color: #526C7C;
  line-height: 1.7;
  margin: 0;
}

.faq-service-card details[open] {
  background: #061F3D;
}

.faq-service-card details[open] summary,
.faq-service-card details[open] p {
  color: #fff;
}

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

@media (max-width: 575px) {
  .service-faq-section {
    padding: 80px 0;
  }

  .faq-services-grid {
    grid-template-columns: 1fr;
  }
}