@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;
    --text: #526C7C;
}

why * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
    width: 100%;
}

.col-lg-6 {
    width: 50%;
}

/* HEADER */

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 22px 0;
    overflow: visible;
}

.nav-wrap,
.nav-inner,
.nav-menu {
    overflow: visible;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    line-height: 1;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
}

.logo small {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-menu a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    transition: .3s;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 14px;
}

.nav-dropdown-toggle {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--primary);
    font-weight: 800;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.nav-dropdown-toggle::after {
    content: "+";
    font-size: 14px;
    line-height: 1;
    transition: .3s;
}

.nav-dropdown.is-open .nav-dropdown-toggle::after {
    transform: rotate(45deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 14px 0;
    margin: 14px 0 0;
    list-style: none;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(7, 59, 99, .12);
    display: none;
    transform: translateY(12px);
    transition: .3s;
    z-index: 200;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
}

.dropdown-menu a:hover {
    background: rgba(8, 169, 214, .08);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
    display: block;
    transform: translateY(0);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
}

.nav-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid var(--primary);
    border-radius: 10px;
}

.nav-btn:hover {
    background: var(--primary);
    color: var(--white) !important;
}

.nav-check {
    display: none;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary);
}

/* HERO */

.plumbing-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(126, 234, 255, .35), transparent 25%),
        radial-gradient(circle at 90% 75%, rgba(8, 169, 214, .18), transparent 30%),
        linear-gradient(135deg, var(--white), var(--light));
}

.hero-row {
    min-height: 100vh;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-size: 16px;
}

.hero-content h1 {
    color: var(--primary);
    font-size: 72px;
    line-height: .95;
    font-weight: 900;
    margin-bottom: 25px;
}

.hero-content p {
    max-width: 620px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* FORM */

.hero-form {
    display: flex;
    max-width: 520px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 18px 35px rgba(7, 59, 99, .12);
    margin-bottom: 20px;
}

.hero-form input {
    flex: 1;
    height: 62px;
    border: none;
    outline: none;
    padding: 0 22px;
    color: var(--dark);
    font-size: 15px;
}

.hero-form button {
    width: 170px;
    border: none;
    background: var(--secondary);
    color: var(--white);
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .3s;
}

.hero-form button:hover {
    background: var(--primary);
}

/* BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-main,
.btn-outline {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    transition: .3s;
    font-size: 26px;
}

.btn-main {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: var(--white);
}

.btn-main:hover,
.btn-outline:hover {
    transform: translateY(-4px);
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

/* IMAGE */

.hero-img-col {
    position: relative;
    min-height: 100vh;
}

.hero-img-box {
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 100%;
    max-width: 560px;
    z-index: 7;
}

.hero-img-box img {
    width: 100%;
    height: 690px;
    object-fit: cover;
    display: block;
    border-radius: 45px 45px 0 0;
    filter: saturate(1.08);
    box-shadow: 0 30px 80px rgba(7, 59, 99, .25);
}

.image-glow {
    position: absolute;
    inset: -18px;
    border-radius: 55px 55px 0 0;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    z-index: -1;
    animation: glowMove 5s ease-in-out infinite;
}

/* SIMPLE CONNECTED WATER LINES */

.hero-water-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-water-lines span {
    position: absolute;
    width: 160%;
    height: 120px;
    border-top: 2px solid rgba(8, 169, 214, .14);
    border-radius: 50%;
}

.hero-water-lines span:nth-child(1) {
    top: 18%;
    left: -20%;
    animation: waveMove 18s linear infinite;
}

.hero-water-lines span:nth-child(2) {
    top: 42%;
    left: -15%;
    border-top-color: rgba(126, 234, 255, .25);
    animation: waveMove 24s linear infinite reverse;
}

.hero-water-lines span:nth-child(3) {
    top: 68%;
    left: -10%;
    border-top-color: rgba(8, 169, 214, .11);
    animation: waveMove 20s linear infinite;
}

/* WATER DROPS */
.water-drop {
    position: absolute;
    top: -90px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    z-index: 4;
    animation: waterDropFall 6s linear infinite;
    box-shadow:
        inset 3px 3px 5px rgba(255, 255, 255, .65),
        inset -4px -4px 7px rgba(7, 59, 99, .18),
        0 8px 18px rgba(8, 169, 214, .25);
}

.water-drop::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, .85);
    border-radius: 50%;
    top: 4px;
    left: 5px;
}

.water-drop::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -22px;
    width: 36px;
    height: 9px;
    border: 2px solid rgba(8, 169, 214, .35);
    border-radius: 50%;
    transform: translateX(-50%) rotate(45deg) scale(0);
    opacity: 0;
    animation: waterSplash 6s linear infinite;
}

.drop-1 {
    left: 15%;
    animation-delay: 0s;
}

.drop-2 {
    left: 38%;
    animation-delay: 1.4s;
    width: 14px;
    height: 14px;
}

.drop-3 {
    left: 62%;
    animation-delay: 2.8s;
    width: 20px;
    height: 20px;
}

.drop-4 {
    left: 84%;
    animation-delay: .8s;
    width: 16px;
    height: 16px;
}

@keyframes waterDropFall {
    0% {
        top: -90px;
        opacity: 0;
    }

    10% {
        opacity: .9;
    }

    85% {
        opacity: .9;
    }

    100% {
        top: 105%;
        opacity: 0;
    }
}

@keyframes waterSplash {

    0%,
    82% {
        transform: translateX(-50%) rotate(45deg) scale(0);
        opacity: 0;
    }

    88% {
        transform: translateX(-50%) rotate(45deg) scale(1);
        opacity: .75;
    }

    100% {
        transform: translateX(-50%) rotate(45deg) scale(1.8);
        opacity: 0;
    }
}

/* FLOAT ICONS */

.plumbing-icon {
    position: absolute;
    width: 62px;
    height: 62px;
    border: 3px solid var(--primary);
    border-radius: 18px;
    background: var(--white);
    color: var(--secondary);
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    animation: shapeFloat 4s ease-in-out infinite;
    box-shadow: 0 14px 35px rgba(7, 59, 99, .12);
}

.icon-1 {
    left: 11%;
    top: 24%;
}

.icon-2 {
    right: 7%;
    top: 25%;
    animation-delay: .8s;
}

.icon-3 {
    right: 10%;
    bottom: 27%;
    animation-delay: 1.5s;
}

/* SOCIAL */

.social-bar {
    position: absolute;
    left: 42px;
    bottom: 78px;
    width: 70px;
    padding: 18px 0;
    border: 2px solid var(--primary);
    border-radius: 18px;
    background: var(--white);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: 0 20px 45px rgba(7, 59, 99, .12);
}

.social-bar a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    transition: .3s;
}

.social-bar a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* ANIMATION */

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

    to {
        transform: translateX(-150px);
    }
}

@keyframes dropFall {
    0% {
        top: -80px;
        opacity: 0;
    }

    12% {
        opacity: .9;
    }

    82% {
        opacity: .9;
    }

    100% {
        top: 105%;
        opacity: 0;
    }
}

@keyframes dropSplash {

    0%,
    82% {
        transform: translateX(-50%) scale(0);
        opacity: 0;
    }

    88% {
        transform: translateX(-50%) scale(1);
        opacity: .75;
    }

    100% {
        transform: translateX(-50%) scale(1.8);
        opacity: 0;
    }
}

@keyframes shapeFloat {

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

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

@keyframes glowMove {

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

    50% {
        transform: translate(-14px, -14px);
    }
}

/* RESPONSIVE */

@media(max-width:991px) {

    .col-lg-6 {
        width: 100%;
    }

    .main-header {
        position: relative;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(7, 59, 99, .08);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: 15px;
        right: 15px;
        top: 78px;
        background: var(--white);
        border-radius: 18px;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        box-shadow: 0 20px 45px rgba(7, 59, 99, .12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: .3s;
    }

    .nav-dropdown {
        width: 100%;
        padding-bottom: 0;
    }

    .nav-dropdown::after {
        display: none;
    }

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

    .dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 12px;
        padding: 10px 0 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        transform: none;
        display: none;
    }

    .nav-dropdown.is-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 0 10px 18px;
    }

    .nav-check:checked~.nav-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .plumbing-hero {
        padding: 70px 0 0;
        text-align: center;
    }

    .hero-row {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-form {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img-col {
        min-height: auto;
        margin-top: 32px;
    }

    .hero-img-box {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin: 0 auto;
        max-width: 520px;
    }

    .hero-img-box img {
        height: auto;
    }

    .social-bar,
    .plumbing-icon {
        display: none;
    }
}

@media(max-width:575px) {

    .logo strong {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 35px  !important;
    }

    .hero-form {
        flex-direction: column;
        border-radius: 16px;
    }

    .hero-form input,
    .hero-form button {
        width: 100%;
        height: 56px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hero-img-col {
        min-height: auto;
        margin-top: 24px;
    }

    .hero-img-box img {
        height: auto;
        border-radius: 35px 35px 0 0;
    }

    .hero-water-lines span {
        width: 190%;
    }
}

.creative-services {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, var(--light), var(--white));
    overflow: hidden;
}

.creative-services::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    top: -140px;
    border: 40px solid rgba(8, 169, 214, .08);
    border-radius: 50%;
}

.services-head {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-head span {
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.services-head h2 {
    color: var(--primary);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.05;
    margin: 15px 0 18px;
}

.services-head p {
    color: var(--text);
    line-height: 1.8;
    font-size: 16px;
}

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

.services-flow::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 70px;
    height: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 30px;
    opacity: .18;
    z-index: -1;
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 35px 25px;
    border-radius: 28px;
    border: 1px solid rgba(8, 169, 214, .15);
    box-shadow: 0 20px 45px rgba(7, 59, 99, .08);
    transition: .4s;
    overflow: hidden;
}

.service-card:nth-child(even) {
    margin-top: 45px;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -55px;
    top: -55px;
    background: var(--accent);
    opacity: .18;
    border-radius: 50%;
    transition: .4s;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(7, 59, 99, .14);
}

.service-card:hover::before {
    transform: scale(1.4);
    opacity: .28;
}

.service-card.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.service-card.active h3,
.service-card.active p,
.service-card.active a,
.service-card.active .service-number {
    color: var(--white);
}

.service-number {
    color: var(--secondary);
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 15px;
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 24px;
    box-shadow: inset 0 0 0 2px rgba(8, 169, 214, .12);
}

.service-card.active .service-icon {
    background: rgba(255, 255, 255, .18);
}

.service-card h3 {
    color: var(--primary);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 22px;
}

.service-card a {
    color: var(--secondary);
    font-weight: 900;
    text-decoration: none;
}

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

    .services-flow::before {
        display: none;
    }

    .service-card:nth-child(even) {
        margin-top: 0;
    }
}

@media(max-width:575px) {
    .creative-services {
        padding: 80px 0;
    }

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

.repair-split-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--dark);
}

.repair-split-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(126, 234, 255, .06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(126, 234, 255, .05) 1px, transparent 1px);
    background-size: 70px 70px;
    animation: gridSlide 16s linear infinite;
}

.pipe-bg {
    position: absolute;
    border: 18px solid rgba(8, 169, 214, .13);
    border-left: none;
    border-bottom: none;
    border-radius: 0 80px 0 0;
}

.pipe-one {
    width: 300px;
    height: 220px;
    right: -40px;
    top: 60px;
    animation: pipeFloat 5s ease-in-out infinite;
}

.pipe-two {
    width: 230px;
    height: 170px;
    left: -30px;
    bottom: 70px;
    transform: rotate(180deg);
    animation: pipeFloat 6s ease-in-out infinite reverse;
}

.repair-split-box {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 520px;
    border-radius: 35px;
    overflow: hidden;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(126, 234, 255, .18);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .25);
}

.repair-side-title {
    position: relative;
    padding: 55px;
    background:
        radial-gradient(circle at 20% 20%, rgba(126, 234, 255, .28), transparent 35%),
        linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.repair-side-image {
    padding: 0;
}

.repair-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.repair-side-title::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -110px;
    bottom: -110px;
    border: 28px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.repair-side-title span {
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.repair-side-title h2 {
    color: var(--white);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 900;
    position: relative;
    z-index: 2;
    font-size: 32px;
}

.repair-side-content {
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.repair-side-content p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 16px;
}

.repair-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 25px;
}

.repair-mini-grid div {
    padding: 20px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(126, 234, 255, .14);
    transition: .3s;
}

.repair-mini-grid div:hover {
    transform: translateY(-8px);
    background: rgba(8, 169, 214, .18);
}

.repair-mini-grid strong {
    display: block;
    color: var(--accent);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.repair-mini-grid span {
    color: var(--white);
    font-weight: 800;
    line-height: 1.4;
}

.tools-used-box {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

.tools-used-box h2 {
    color: #08A9D6;
    margin-bottom: 18px;
    font-weight: 900;
}

.tools-used-box p {
    color: #fff;
    line-height: 1.9;
    margin: 0;
}

@keyframes gridSlide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 140px 140px;
    }
}

@keyframes pipeFloat {

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

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

@keyframes ringPulse {

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

    50% {
        transform: scale(1.15);
        opacity: .6;
    }
}

@media(max-width:991px) {
    .repair-split-section {
        padding: 85px 0;
    }

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

    .repair-side-title,
    .repair-side-content {
        padding: 40px;
        text-align: center;
    }

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

@media(max-width:575px) {

    .repair-side-title,
    .repair-side-content {
        padding: 28px;
    }

    .repair-side-title h2 {
        font-size: 34px;
    }
}

.repair-dark-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: var(--dark);
}

/* Background Image Layer */
.repair-dark-section .section-bg-img {
    position: absolute;
    inset: 0;
    background-image: url("../plumbing/");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .28;
    z-index: 0;
}

/* Dark Overlay */
.repair-dark-section .section-bg-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(6, 31, 61, .88),
            rgba(7, 59, 99, .82));
}

/* Grid Layer */
.repair-dark-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(126, 234, 255, .04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(126, 234, 255, .04) 1px, transparent 1px);
    background-size: 70px 70px;
    animation: gridMove 18s linear infinite;
    z-index: 1;
}

/* All Content Above Background */
.repair-dark-section .container,
.repair-water-lines,
.pipe-animation {
    position: relative;
    z-index: 3;
}

.comfort-why-section {
    padding: 100px 0;
    background: #fff;
}

.comfort-why-box {
    position: relative;
    overflow: hidden;
    padding: 110px 70px 85px;
    border-radius: 44px;
    background: var(--light);
}

.comfort-img {
    position: absolute;
    right: 35px;
    /* top: 35px;
    width: 28%; */
    height: 88%;
    border-radius: 34px;
    overflow: hidden;
}

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

.comfort-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(243, 251, 255, .35), transparent);
}

.comfort-logo {
    position: absolute;
    top: 45px;
    left: 45px;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    background: #fff;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    box-shadow: 0 20px 55px rgba(7, 59, 99, .12);
    z-index: 3;
    animation: comfortFloat 5s ease-in-out infinite;
}

.comfort-top {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
    max-width: 970px;
    margin-bottom: 35px;
}

.comfort-title span {
    color: var(--secondary);
    font-weight: 900;
    font-size: 16px;
}

.comfort-title h2 {
    color: #000;
    font-size: 43px;
    line-height: 1.08;
    font-weight: 900;
    margin-top: 15px;
}

.comfort-desc {
    border-left: 4px solid var(--secondary);
    padding-left: 30px;
}

.comfort-desc p {
    color: #6b6b6b;
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
}

.comfort-cards {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 980px;
}

.comfort-card {
    background: #fff;
    padding: 34px 28px;
    border-radius: 20px;
    min-height: 210px;
    box-shadow: 0 18px 45px rgba(7, 59, 99, .06);
    border-bottom: 2px solid var(--secondary);
    transition: .35s;
}

.comfort-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 65px rgba(7, 59, 99, .12);
}

.comfort-icon {
    color: var(--secondary);
    font-size: 36px;
    margin-bottom: 22px;
}

.comfort-card h3 {
    color: #000;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 14px;
}

.comfort-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@keyframes comfortFloat {

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

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

@media(max-width:1199px) {
    .comfort-img {
        width: 32%;
    }

    .comfort-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 680px;
    }
}

@media(max-width:991px) {
    .comfort-why-box {
        padding: 70px 25px;
    }

    .comfort-img {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: 420px;
        margin-bottom: 35px;
    }

    .comfort-top {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .comfort-desc {
        border-left: 0;
        border-top: 4px solid var(--secondary);
        padding-left: 0;
        padding-top: 25px;
    }

    .comfort-cards {
        max-width: 100%;
    }
}

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

    .comfort-title h2 {
        font-size: 38px;
    }

    .comfort-img {
        height: 320px;
    }

    .comfort-logo {
        width: 85px;
        height: 85px;
        font-size: 38px;
    }
}

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

/* Floating Water Circles */

.water-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(8, 169, 214, .12);
}

.circle-1 {
    width: 350px;
    height: 350px;
    top: -120px;
    left: -120px;
    animation: floatCircle 10s ease-in-out infinite;
}

.circle-2 {
    width: 220px;
    height: 220px;
    right: -80px;
    top: 120px;
    animation: floatCircle 8s ease-in-out infinite reverse;
}

.circle-3 {
    width: 420px;
    height: 420px;
    bottom: -220px;
    left: 40%;
    animation: pulseCircle 8s ease-in-out infinite;
}

/* Water Lines */

.water-line {
    position: absolute;
    width: 160%;
    height: 120px;
    top: 25%;
    left: -20%;
    border-top: 2px solid rgba(8, 169, 214, .10);
    border-radius: 50%;
    animation: waveMove 18s linear infinite;
}

.line-2 {
    top: 65%;
    animation: waveMove 24s linear infinite reverse;
}

/* Title */

.why-water-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
    position: relative;
    z-index: 5;
}

.why-water-title span {
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: 3px;
}

.why-water-title h2 {
    color: var(--primary);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    margin: 15px 0;
}

.why-water-title p {
    color: var(--text);
    line-height: 1.8;
}

/* Cards */

.water-card {
    position: relative;
    background: var(--white);
    padding: 35px 25px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(7, 59, 99, .08);
    transition: .4s;
    z-index: 5;
    height: 100%;
    overflow: hidden;
}

.water-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(126, 234, 255, .15);
    top: -50px;
    right: -50px;
    transition: .4s;
}

.water-card:hover {
    transform: translateY(-12px);
}

.water-card:hover::before {
    transform: scale(1.5);
}

.water-card.active {
    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
}

.water-card.active h3,
.water-card.active p {
    color: #fff;
}

.water-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--secondary),
            var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 15px 35px rgba(8, 169, 214, .25);
}

.water-card h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 900;
}

.water-card p {
    color: var(--text);
    line-height: 1.7;
}

/* Animations */

@keyframes floatCircle {

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

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

@keyframes pulseCircle {

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

    50% {
        transform: scale(1.08);
    }
}

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

    to {
        transform: translateX(-180px);
    }
}

@media(max-width:991px) {

    .why-water-section {
        padding: 90px 0;
    }
}

.coupon-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light), var(--white));
}

.coupon-box {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
    padding: 55px;
    border-radius: 40px;
    background:
        linear-gradient(135deg, rgba(7, 59, 99, .96), rgba(8, 169, 214, .9));
    box-shadow: 0 35px 90px rgba(7, 59, 99, .22);
    overflow: hidden;
}

.coupon-box::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -150px;
    top: -150px;
    border-radius: 50%;
    border: 35px solid rgba(255, 255, 255, .09);
}

.coupon-left {
    position: relative;
    z-index: 3;
}

.coupon-left span {
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.coupon-left h2 {
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 900;
    margin: 15px 0 20px;
}

.coupon-left p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    font-size: 17px;
    max-width: 520px;
}

.coupon-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 15px 34px;
    border-radius: 14px;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    font-weight: 900;
    transition: .3s;
}

.coupon-btn:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.coupon-right {
    position: relative;
    z-index: 3;
    min-height: 360px;
}

.coupon-card {
    position: relative;
    max-width: 430px;
    margin-left: auto;
    padding: 42px 35px;
    border-radius: 30px;
    background: #fff;
    border: 3px dashed var(--secondary);
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
    animation: couponFloat 5s ease-in-out infinite;
}

.coupon-card::before,
.coupon-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--secondary);
    transform: translateY(-50%);
}

.coupon-card::before {
    left: -22px;
}

.coupon-card::after {
    right: -22px;
}

.coupon-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 18px;
}

.coupon-card h3 {
    color: var(--secondary);
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
}

.coupon-card p {
    color: var(--primary);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 22px;
}

.coupon-code {
    padding: 14px;
    border-radius: 14px;
    background: var(--light);
    color: var(--primary);
    font-weight: 900;
    text-align: end;
}

.small-coupon {
    position: absolute;
    left: -7px;
    bottom: -12px;
    max-width: 240px;
    padding: 25px;
    border-radius: 24px;
    animation: couponFloat 6s ease-in-out infinite reverse;
}

.small-coupon h4 {
    color: var(--primary);
    font-size: 42px;
    font-weight: 900;
}

.small-coupon p {
    font-size: 15px;
    margin: 0;
}

.coupon-wave {
    position: absolute;
    width: 160%;
    height: 120px;
    border-top: 2px solid rgba(8, 169, 214, .14);
    border-radius: 50%;
    pointer-events: none;
}

.wave-one {
    top: 18%;
    left: -20%;
    animation: couponWave 18s linear infinite;
}

.wave-two {
    bottom: 15%;
    left: -10%;
    animation: couponWave 24s linear infinite reverse;
}

@keyframes couponFloat {

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

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

@keyframes couponWave {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-180px);
    }
}

@media(max-width:991px) {
    .coupon-box {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        text-align: center;
    }

    .coupon-left p {
        margin: auto;
    }

    .coupon-card {
        margin: auto;
    }

    .small-coupon {
        position: relative;
        margin: 25px auto 0;
    }
}

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

    .coupon-card h3 {
        font-size: 52px;
    }



    .coupon-card {
        padding: 35px 22px;
    }
}


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

.leak-before-after-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white), var(--light));
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.leak-bg-line {
    position: absolute;
    width: 160%;
    height: 120px;
    border-top: 2px solid rgba(8, 169, 214, .12);
    border-radius: 50%;
    left: -20%;
    pointer-events: none;
}

.line-1 {
    top: 20%;
    animation: bgWave 18s linear infinite;
}

.line-2 {
    bottom: 15%;
    border-color: rgba(126, 234, 255, .28);
    animation: bgWave 24s linear infinite reverse;
}

.leak-ba-wrapper {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.leak-ba-content span {
    display: inline-block;
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.leak-ba-content h2 {
    color: var(--primary);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 25px;
}

.leak-ba-content p {
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 16px;
}

.leak-btn {
    display: inline-block;
    margin-top: 22px;
    padding: 15px 32px;
    border-radius: 14px;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 15px 35px rgba(8, 169, 214, .25);
    transition: .3s;
}

.leak-btn:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.before-after-scan {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    border-radius: 36px;
    background: var(--dark);
    box-shadow: 0 30px 85px rgba(7, 59, 99, .18);
}

.before-img,
.after-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-img {
    z-index: 1;
}

.after-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0%;
    overflow: hidden;
    z-index: 2;
    animation: revealAfter 6s ease-in-out infinite alternate;
}

.after-img {
    bottom: 0;
    top: auto;
}

.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 25px var(--accent);
    z-index: 5;
    animation: scanMove 6s ease-in-out infinite alternate;
}

.scan-line::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -26px;
    height: 58px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(126, 234, 255, .30),
            transparent);
}

.before-label,
.after-label {
    position: absolute;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    background: rgba(7, 59, 99, .92);
}

.before-label {
    left: 22px;
    top: -50px;
}

.after-label {
    right: 22px;
    top: 18px;
    background: var(--secondary);
}

.before-after-scan::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px solid rgba(255, 255, 255, .18);
    border-radius: 26px;
    z-index: 6;
    pointer-events: none;
}

@keyframes revealAfter {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

@keyframes scanMove {
    0% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}

@keyframes bgWave {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-180px);
    }
}

@media(max-width:991px) {
    .leak-before-after-section {
        padding: 85px 0;
    }

    .leak-ba-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .before-after-scan {
        height: 460px;
    }
}

@media(max-width:575px) {
    .leak-ba-content h2 {
        font-size: 34px;
    }

    .before-after-scan {
        height: 350px;
        border-radius: 26px;
    }
}


.plumbing-gallery-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            var(--dark),
            var(--primary));
}

.gallery-bg-line {
    position: absolute;
    width: 160%;
    height: 120px;
    border-top: 2px solid rgba(8, 169, 214, .12);
    border-radius: 50%;
    left: -20%;
    pointer-events: none;
}

.gallery-bg-line.line-one {
    top: 20%;
    animation: galleryWave 18s linear infinite;
}

.gallery-bg-line.line-two {
    bottom: 15%;
    border-color: rgba(126, 234, 255, .28);
    animation: galleryWave 24s linear infinite reverse;
}

.gallery-title {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.gallery-title span {
    display: inline-block;
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.gallery-title h2 {
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 18px;
}

.gallery-title p {
    color: #fff;
    line-height: 1.8;
    font-size: 16px;
}

.gallery-slider {
    position: relative;
    z-index: 5;
    overflow: hidden;
    padding: 20px 0 45px;
}

.gallery-slider::before,
.gallery-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 10;
    pointer-events: none;
}

.gallery-slider::before {
    left: 0;
    background: linear-gradient(90deg,
            var(--dark),
            transparent);
}

.gallery-slider::after {
    right: 0;
    background: linear-gradient(270deg,
            var(--dark),
            transparent);
}

.gallery-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: gallerySlide 35s linear infinite;
}

.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}

.gallery-card {
    position: relative;
    width: 340px;
    height: 430px;
    flex: 0 0 auto;
    border-radius: 32px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 25px 65px rgba(7, 59, 99, .12);
}

.gallery-card:nth-child(even) {
    transform: translateY(35px);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .6s;
}

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

.gallery-card::after {
    content: "Plumbers Richardson TX";
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 3;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: .5px;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card:hover::before {
    opacity: .9;
}

.gallery-card {
    position: relative;
    overflow: hidden;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(6, 31, 61, 0),
            transparent 60%);

    z-index: 2;
}

.gallery-card {
    box-shadow:
        0 25px 70px rgba(0, 0, 0, .35),
        0 0 40px rgba(8, 169, 214, .08);
}

@keyframes gallerySlide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes galleryWave {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-180px);
    }
}

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

    .gallery-card {
        width: 300px;
        height: 380px;
    }

    .gallery-slider::before,
    .gallery-slider::after {
        width: 70px;
    }
}

@media(max-width:575px) {
    .gallery-card {
        width: 250px;
        height: 320px;
        border-radius: 24px;
    }

    .gallery-card:nth-child(even) {
        transform: translateY(20px);
    }
}

.gallery-water {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gallery-water span {
    position: absolute;
    width: 180%;
    height: 160px;
    border-top: 2px solid rgba(126, 234, 255, .10);
    border-radius: 50%;
}

.gallery-water span:nth-child(1) {
    top: 15%;
    left: -30%;
    animation: waterMove 20s linear infinite;
}

.gallery-water span:nth-child(2) {
    top: 45%;
    left: -20%;
    border-color: rgba(8, 169, 214, .14);
    animation: waterMove 30s linear infinite reverse;
}

.gallery-water span:nth-child(3) {
    top: 75%;
    left: -25%;
    animation: waterMove 24s linear infinite;
}

@keyframes waterMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-250px);
    }
}

.system-care-zigzag {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        linear-gradient(90deg, var(--dark) 0 34%, var(--light) 34% 100%);
}

.zig-water-line {
    position: absolute;
    width: 160%;
    height: 120px;
    border-top: 2px solid rgba(8, 169, 214, .14);
    border-radius: 50%;
    pointer-events: none;
}

.line-a {
    top: 18%;
    left: -20%;
    animation: zigWave 18s linear infinite;
}

.line-b {
    bottom: 15%;
    left: -10%;
    border-color: rgba(126, 234, 255, .25);
    animation: zigWave 24s linear infinite reverse;
}

.zig-title {
    position: relative;
    z-index: 5;
    max-width: 780px;
    margin: 0 auto 70px;
    text-align: center;
}

.zig-title span {
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: 3px;
}

.zig-title h2 {
    color: var(--primary);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    margin: 15px 0;
}

.zig-title p {
    color: var(--text);
    line-height: 1.8;
}

.zigzag-wrapper {
    position: relative;
    z-index: 5;
    display: grid;
    gap: 35px;
}

.zig-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 25px;
    max-width: 880px;
}

.zig-card.reverse {
    grid-template-columns: 1fr 120px;
    margin-left: auto;
}

.zig-card.reverse .zig-number {
    order: 2;
}

.zig-number {
    width: 120px;
    height: 120px;
    border-radius: 35px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    box-shadow: 0 20px 50px rgba(8, 169, 214, .25);
    animation: zigFloat 5s ease-in-out infinite;
}

.zig-content {
    position: relative;
    padding: 32px 35px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(7, 59, 99, .10);
    border: 1px solid rgba(8, 169, 214, .12);
    overflow: hidden;
    transition: .4s;
}

.zig-content::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -60px;
    top: -60px;
    border-radius: 50%;
    background: rgba(126, 234, 255, .18);
}

.zig-content:hover {
    transform: translateY(-8px);
}

.zig-content h3 {
    color: var(--primary);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 14px;
}

.zig-content p {
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

@keyframes zigWave {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-180px);
    }
}

@keyframes zigFloat {

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

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

@media(max-width:991px) {
    .system-care-zigzag {
        padding: 85px 0;
        background: var(--light);
    }

    .zig-card,
    .zig-card.reverse {
        grid-template-columns: 1fr;
        max-width: 100%;
        text-align: center;
        margin: 0;
    }

    .zig-card.reverse .zig-number {
        order: 0;
    }

    .zig-number {
        margin: auto;
    }
}

.right-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;

    background-image: url("../plumbing/bg-plumbing.webp");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    opacity: .12;

    z-index: 1;
    pointer-events: none;
}


.counter-shapes-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white), var(--light));
}

.counter-shapes-title {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.counter-shapes-title span {
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.counter-shapes-title h2 {
    color: var(--primary);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    margin: 15px 0;
    line-height: 1.05;
}

.counter-shapes-title p {
    color: var(--text);
    line-height: 1.8;
}

.counter-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.shape-one {
    width: 280px;
    height: 280px;
    border: 35px solid rgba(8, 169, 214, .08);
    border-radius: 50%;
    left: -120px;
    top: -90px;
    animation: shapeFloatOne 8s ease-in-out infinite;
}

.shape-two {
    width: 160px;
    height: 160px;
    border: 25px solid rgba(126, 234, 255, .22);
    border-radius: 45px;
    right: 8%;
    top: 18%;
    transform: rotate(20deg);
    animation: shapeRotate 14s linear infinite;
}

.shape-three {
    width: 110px;
    height: 110px;
    border-radius: 50% 50% 50% 0;
    background: linear-gradient(135deg, rgba(126, 234, 255, .35), rgba(8, 169, 214, .12));
    right: 18%;
    bottom: 12%;
    transform: rotate(45deg);
    animation: dropShape 7s ease-in-out infinite;
}

.shape-four {
    width: 320px;
    height: 140px;
    border: 22px solid rgba(7, 59, 99, .06);
    border-left: none;
    border-bottom: none;
    border-radius: 0 90px 0 0;
    left: 6%;
    bottom: 8%;
    animation: pipeShape 9s ease-in-out infinite;
}

.counter-water-line {
    position: absolute;
    width: 165%;
    height: 130px;
    left: -25%;
    border-top: 2px solid rgba(8, 169, 214, .12);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.water-a {
    top: 32%;
    animation: counterWave 18s linear infinite;
}

.water-b {
    bottom: 22%;
    border-color: rgba(126, 234, 255, .25);
    animation: counterWave 24s linear infinite reverse;
}

.counter-orbit-box {
    position: relative;
    z-index: 5;
    min-height: 520px;
    max-width: 980px;
    margin: auto;
}

.counter-orbit-box::before {
    content: "";
    position: absolute;
    inset: 20px 140px;
    border: 2px dashed rgba(8, 169, 214, .25);
    border-radius: 50%;
    animation: orbitRotate 30s linear infinite;
}

.main-stat {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 80px rgba(8, 169, 214, .28);
    z-index: 4;
}

.main-stat::before {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 2px solid rgba(8, 169, 214, .20);
    animation: pulseRing 3s ease-in-out infinite;
}

.main-stat h3 {
    font-size: 76px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
}

.main-stat span {
    font-size: 18px;
    font-weight: 800;
    max-width: 200px;
}

.orbit-stat {
    position: absolute;
    width: 220px;
    padding: 26px 22px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(7, 59, 99, .10);
    border: 1px solid rgba(8, 169, 214, .12);
    text-align: center;
    transition: .4s;
}

.orbit-stat:hover {
    transform: translateY(-10px);
}

.orbit-stat strong {
    display: block;
    color: var(--primary);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.orbit-stat span {
    color: var(--text);
    font-weight: 800;
}

.stat-1 {
    left: 5%;
    top: 8%;
    animation: smallFloat 5s ease-in-out infinite;
}

.stat-2 {
    right: 5%;
    top: 10%;
    animation: smallFloat 6s ease-in-out infinite reverse;
}

.stat-3 {
    left: 8%;
    bottom: 8%;
    animation: smallFloat 7s ease-in-out infinite;
}

.stat-4 {
    right: 8%;
    bottom: 8%;
    animation: smallFloat 5.5s ease-in-out infinite reverse;
}

@keyframes shapeFloatOne {

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

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

@keyframes shapeRotate {
    from {
        transform: rotate(20deg);
    }

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

@keyframes dropShape {

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

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

@keyframes pipeShape {

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

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

@keyframes counterWave {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-180px);
    }
}

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

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

@keyframes pulseRing {

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

    50% {
        transform: scale(1.08);
        opacity: .55;
    }
}

@keyframes smallFloat {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -18px;
    }
}

@media(max-width:991px) {
    .counter-shapes-section {
        padding: 85px 0;
    }

    .counter-orbit-box {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .counter-orbit-box::before {
        display: none;
    }

    .main-stat,
    .orbit-stat {
        position: relative;
        inset: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: 100%;
    }

    .main-stat {
        grid-column: 1 / -1;
        height: auto;
        border-radius: 30px;
        padding: 45px 25px;
    }
}

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

    .main-stat h3 {
        font-size: 58px;
    }

    .shape-two,
    .shape-three,
    .shape-four {
        display: none;
    }
}


.faq-tabs-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--light);
}

.faq-wave-bg {
    position: absolute;
    width: 160%;
    height: 120px;
    border-top: 2px solid rgba(8, 169, 214, .12);
    border-radius: 50%;
    left: -20%;
}

.wave-1 {
    top: 22%;
    animation: faqWaveMove 18s linear infinite;
}

.wave-2 {
    bottom: 16%;
    border-color: rgba(126, 234, 255, .28);
    animation: faqWaveMove 24s linear infinite reverse;
}

.faq-tabs-title {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 65px;
}

.faq-tabs-title span {
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: 3px;
}

.faq-tabs-title h2 {
    color: var(--primary);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.08;
    margin: 15px 0;
}

.faq-tabs-title p {
    color: var(--text);
    line-height: 1.8;
}

.faq-tabs-box {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    max-width: 1050px;
    margin: auto;
}

.faq-tabs-box input {
    display: none;
}

.faq-tab-buttons {
    display: grid;
    gap: 14px;
}

.faq-tab-buttons label {
    position: relative;
    padding: 22px 24px;
    border-radius: 22px;
    background: #fff;
    color: var(--primary);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(7, 59, 99, .08);
    transition: .35s;
    overflow: hidden;
}

.faq-tab-buttons label::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: .35s;
    z-index: -1;
}

.faq-tab-buttons label:hover {
    transform: translateX(8px);
}

.faq-tab-content {
    position: relative;
    min-height: 546px;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(7, 59, 99, .10);
    overflow: hidden;
}

.faq-tab-content::before {
    content: "?";
    position: absolute;
    right: 35px;
    bottom: -55px;
    font-size: 230px;
    color: rgba(8, 169, 214, .07);
    font-weight: 900;
    line-height: 1;
}

.faq-panel {
    position: absolute;
    inset: 0;
    padding: 55px;
    opacity: 0;
    transform: translateY(25px);
    pointer-events: none;
    transition: .45s;
}

.faq-panel span {
    color: var(--secondary);
    font-weight: 900;
    letter-spacing: 3px;
}

.faq-panel h3 {
    color: var(--primary);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    margin: 18px 0;
}

.faq-panel p {
    color: var(--text);
    line-height: 1.9;
    font-size: 17px;
    max-width: 650px;
}

#tab1:checked~.faq-tab-buttons label[for="tab1"],
#tab2:checked~.faq-tab-buttons label[for="tab2"],
#tab3:checked~.faq-tab-buttons label[for="tab3"],
#tab4:checked~.faq-tab-buttons label[for="tab4"] {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: translateX(8px);
}

#tab1:checked~.faq-tab-content .panel-1,
#tab2:checked~.faq-tab-content .panel-2,
#tab3:checked~.faq-tab-content .panel-3,
#tab4:checked~.faq-tab-content .panel-4 {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@keyframes faqWaveMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-180px);
    }
}

@media(max-width:991px) {
    .faq-tabs-section {
        padding: 85px 0;
    }

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

    .faq-tab-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .faq-panel {
        padding: 35px 24px;
    }

    .faq-panel h3 {
        font-size: 26px;
    }

    .faq-tab-content {
        min-height: 420px;
    }
}

.creative-contact-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(126, 234, 255, .25), transparent 28%),
        linear-gradient(135deg, var(--light), var(--white));
}

.creative-contact-box {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    align-items: stretch;
    padding: 28px;
    border-radius: 42px;
    background: rgba(255, 255, 255, .75);
    box-shadow: 0 35px 90px rgba(7, 59, 99, .12);
    border: 1px solid rgba(8, 169, 214, .14);
}

.creative-map-side {
    position: relative;
    min-height: 760px;
    border-radius: 34px;
    overflow: hidden;
    background: var(--primary);
}

.creative-map-side iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(1.1) contrast(1.02);
}

.map-floating-card {
    position: absolute;
    left: 28px;
    bottom: 28px;
    padding: 20px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 20px 50px rgba(7, 59, 99, .18);
}

.map-floating-card strong {
    display: block;
    color: var(--primary);
    font-size: 20px;
    font-weight: 900;
}

.map-floating-card span {
    color: var(--secondary);
    font-weight: 800;
}

.creative-form-side {
    position: relative;
    padding: 35px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(7, 59, 99, .96), rgba(8, 169, 214, .88));
    overflow: hidden;
}

.creative-form-side::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -130px;
    top: -130px;
    border-radius: 50%;
    border: 35px solid rgba(255, 255, 255, .08);
}

.contact-mini-title {
    position: relative;
    z-index: 2;
    display: inline-block;
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.creative-form-side h2 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 15px;
}

.creative-form-side p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    margin-bottom: 26px;
}

.cc-fcf-form {
    position: relative;
    z-index: 2;
}

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

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

.cc-fcf-form input,
.cc-fcf-form select,
.cc-fcf-form textarea {
    width: 100%;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, .18);
    outline: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    padding: 0 16px;
    font-size: 15px;
}

.cc-fcf-form input::placeholder,
.cc-fcf-form textarea::placeholder {
    color: rgba(255, 255, 255, .75);
}

.cc-fcf-form select option {
    color: var(--dark);
}

.cc-fcf-form textarea {
    height: 130px;
    padding: 16px;
    resize: none;
    margin-top: 14px;
}

.cc-fcf-form input:focus,
.cc-fcf-form select:focus,
.cc-fcf-form textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, .18);
}

.cc-fcf-label {
    display: block;
    margin: 18px 0 10px;
    color: #fff;
    font-weight: 900;
}

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

.cc-fcf-form input[type="submit"] {
    margin-top: 22px;
    height: 62px;
    border: 0;
    background: #fff;
    color: var(--primary);
    font-weight: 900;
    cursor: pointer;
    transition: .3s;
}

.cc-fcf-form input[type="submit"]:hover {
    background: var(--accent);
    transform: translateY(-4px);
}

.contact-bg-wave {
    position: absolute;
    width: 170%;
    height: 130px;
    border-top: 2px solid rgba(8, 169, 214, .13);
    border-radius: 50%;
    left: -25%;
}

.wave-a {
    top: 18%;
    animation: contactWaveMove 18s linear infinite;
}

.wave-b {
    bottom: 15%;
    border-color: rgba(126, 234, 255, .32);
    animation: contactWaveMove 25s linear infinite reverse;
}

.contact-pipe {
    position: absolute;
    border: 18px solid rgba(8, 169, 214, .08);
    border-radius: 0 80px 0 0;
    pointer-events: none;
}

.pipe-a {
    width: 260px;
    height: 190px;
    left: -50px;
    bottom: 80px;
    border-left: none;
    border-bottom: none;
    animation: pipeFloat 8s ease-in-out infinite;
}

.pipe-b {
    width: 320px;
    height: 230px;
    right: -90px;
    top: 70px;
    border-left: none;
    border-bottom: none;
    animation: pipeFloat 10s ease-in-out infinite reverse;
}

@keyframes contactWaveMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-190px);
    }
}

@keyframes pipeFloat {

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

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

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

    .creative-contact-box {
        grid-template-columns: 1fr;
    }

    .creative-map-side {
        min-height: 420px;
    }
}

@media(max-width:575px) {
    .creative-contact-box {
        padding: 15px;
        border-radius: 28px;
    }

    .creative-form-side {
        padding: 25px 18px;
    }

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

.emergency-cta-section {
    padding: 100px 0;
    background: var(--light);
}

.emergency-cta-box {
    position: relative;
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 460px;
    border-radius: 50px;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--dark));

    box-shadow:
        0 30px 80px rgba(7, 59, 99, .18);
}

/* IMAGE */

.emergency-image {
    position: relative;
    padding: 30px;
}

.emergency-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    display: block;
}

/* CONTENT */

.emergency-content {
    position: relative;
    z-index: 3;

    padding: 70px 70px 70px 110px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.emergency-content::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .05),
            transparent);

    pointer-events: none;
}

.mini-title {
    color: var(--accent);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.emergency-content h2 {
    color: #fff;
    font-size: 65px;
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 35px;
}

/* PHONE AREA */

.emergency-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 12px 30px 12px 12px;

    background:
        linear-gradient(135deg,
            var(--secondary),
            var(--accent));

    border-radius: 60px;

    text-decoration: none;
    color: #fff;

    font-size: 20px;
    font-weight: 900;
}

.phone-icon {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #fff;

    color: var(--dark);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
}

.arrival-text {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    line-height: 1.6;
}

/* CENTER ICON */

.center-badge {
    position: absolute;

    left: 42%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 58px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .15);

    z-index: 10;
}

/* WATER SHAPES */

.emergency-cta-box::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, .05);

    right: -250px;
    top: -180px;

    animation: waterRotate 25s linear infinite;
}

.emergency-cta-box::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    border: 2px solid rgba(126, 234, 255, .08);

    right: 50px;
    bottom: -220px;

    animation: waterRotate 18s linear infinite reverse;
}

@keyframes waterRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/* RESPONSIVE */

@media(max-width:991px) {

    .emergency-cta-box {
        grid-template-columns: 1fr;
    }

    .center-badge {
        display: none;
    }

    .emergency-content {
        padding: 40px 25px;
        text-align: center;
    }

    .emergency-bottom {
        justify-content: center;
    }

    .emergency-image {
        padding: 20px;
        height: 320px;
    }

}


.plumbing-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            var(--dark),
            var(--primary));

    padding-top: 90px;
}

.footer-top {
    position: relative;
    z-index: 5;
    display: flex;
    gap: 0;
    padding-bottom: 60px;
}

.footer-top>.col {
    padding: 0 20px;
}

.footer-about {
    width: 35%;
}

.footer-about.col-12 {
    width: 100%;
    text-align: center;
}

.footer-links {
    width: 20%;
}

.footer-contact {
    width: 25%;
}

.footer-about h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
}

.footer-about.col-12 p {
    max-width: 720px;
    margin: 0 auto;
}

.footer-about.col-12 .footer-social {
    justify-content: center;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 800;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 16px;
    line-height: 1.7;
}

.obfuscatedEmail {
    display: inline-block;
}

.obfuscatedEmail a {
    white-space: nowrap;
}

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

.footer-social a {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);

    color: #fff;
    text-decoration: none;
    font-weight: 900;

    transition: .3s;
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);

    padding: 25px 0;

    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .65);
    margin: 0;
}

/* WATER WAVES */

.footer-wave {
    position: absolute;

    width: 180%;
    height: 140px;

    border-top:
        2px solid rgba(126, 234, 255, .08);

    border-radius: 50%;

    left: -30%;
}

.wave-1 {
    top: 20px;
    animation: footerWave 18s linear infinite;
}

.wave-2 {
    top: 140px;
    animation: footerWave 28s linear infinite reverse;
}

@keyframes footerWave {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-220px);
    }

}

@media(max-width:991px) {

    .footer-top>.col {
        width: 50%;
        margin-bottom: 32px;
    }

}

@media(max-width:575px) {

    .footer-top>.col {
        width: 100%;
    }

    .plumbing-footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

}


.service-faq-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:linear-gradient(135deg,var(--white),var(--light));
}

.faq-bg-line{
    position:absolute;
    width:170%;
    height:130px;
    border-top:2px solid rgba(8,169,214,.12);
    border-radius:50%;
    left:-25%;
    pointer-events:none;
}

.line-one{
    top:18%;
    animation:faqWave 18s linear infinite;
}

.line-two{
    bottom:12%;
    border-color:rgba(126,234,255,.28);
    animation:faqWave 24s linear infinite reverse;
}

.service-faq-title{
    position:relative;
    z-index:5;
    max-width:820px;
    margin:0 auto 65px;
    text-align:center;
}

.service-faq-title span{
    color:var(--secondary);
    font-weight:900;
    letter-spacing:3px;
    text-transform:uppercase;
}

.service-faq-title h2{
    color:var(--primary);
    font-size:clamp(34px,5vw,58px);
    font-weight:900;
    line-height:1.08;
    margin:15px 0;
}

.service-faq-title p{
    color:var(--text);
    line-height:1.8;
}

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

.service-faq-card{
    background:#fff;
    border-radius:28px;
    padding:30px;
    box-shadow:0 20px 55px rgba(7,59,99,.08);
    border:1px solid rgba(8,169,214,.12);
    transition:.35s;
}

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

.service-faq-card h3{
    color:var(--primary);
    font-size:25px;
    font-weight:900;
    margin-bottom:18px;
}

.service-faq-card details{
    border-top:1px solid rgba(8,169,214,.14);
    padding:16px 0;
}

.service-faq-card summary{
    cursor:pointer;
    color:var(--primary);
    font-weight:900;
    list-style:none;
    position:relative;
    padding-right:35px;
}

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

.service-faq-card summary::after{
    content:"+";
    position:absolute;
    right:0;
    top:-4px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--light);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.service-faq-card details[open] summary::after{
    content:"−";
    background:var(--secondary);
    color:#fff;
}

.service-faq-card p{
    color:var(--text);
    line-height:1.8;
    margin:12px 0 0;
}

@keyframes faqWave{
    from{transform:translateX(0);}
    to{transform:translateX(-180px);}
}

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

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