    :root {
            --pl-navy: #082b4c;
            --pl-blue: #246fbd;
            --pl-blue-dark: #0d4d91;
            --pl-cyan: #2ec7ea;
            --pl-light: #f3f8fc;
            --pl-white: #ffffff;
            --pl-text: #102338;
            --pl-muted: #657486;
            --pl-shadow: 0 25px 60px rgba(7, 43, 78, .16);
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            color: var(--pl-text);
            background: #ffffff;
        }

        a {
            text-decoration: none;
        }

        /* =========================
           TOP BAR
        ========================= */

        .pl-topbar {
            background: var(--pl-navy);
            color: #fff;
            min-height: 38px;
            display: flex;
            align-items: center;
        }

        .pl-topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
            min-height: 38px;
            font-size: 13px;
        }

        .pl-topbar-left {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .pl-topbar-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, .95);
        }

        .pl-topbar-item i {
            color: var(--pl-cyan);
        }

        .pl-top-phone {
            color: #fff;
            font-weight: 900;
            font-size: 14px;
        }

        /* =========================
           NAVBAR
        ========================= */

        .pl-navbar {
            background: #ffffff;
            padding: 13px 0;
            position: relative;
            z-index: 100;
        }

        .pl-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--pl-navy);
            font-size: 21px;
            font-weight: 900;
        }

        .pl-logo:hover {
            color: var(--pl-navy);
        }

        .pl-logo-icon {
            width: 39px;
            height: 39px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: var(--pl-cyan);
            color: var(--pl-navy);
            font-size: 17px;
        }

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

        .pl-navbar .nav-link {
            position: relative;
            color: #111827;
            font-size: 13px;
            font-weight: 700;
            margin: 0 9px;
            padding: 10px 0 !important;
        }

        .pl-navbar .nav-link:hover,
        .pl-navbar .nav-link.active {
            color: var(--pl-blue);
        }

        .pl-navbar .nav-link::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 1px;
            width: 0;
            height: 2px;
            transform: translateX(-50%);
            background: var(--pl-cyan);
            transition: .3s ease;
        }

        .pl-navbar .nav-link:hover::after,
        .pl-navbar .nav-link.active::after {
            width: 22px;
        }

        .pl-header-call {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 18px 10px 10px;
            background: var(--pl-cyan);
            color: #fff;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 900;
            white-space: nowrap;
            box-shadow: 0 12px 30px rgba(46, 199, 234, .26);
            transition: .3s ease;
        }

        .pl-header-call:hover {
            color: #fff;
            background: var(--pl-blue);
            transform: translateY(-2px);
        }

        .pl-header-call-icon {
            width: 37px;
            height: 37px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: #fff;
            color: var(--pl-blue);
        }

        /* =========================
           HERO
        ========================= */

        .pl-hero {
            padding: 6px 18px 85px;
        }

        .pl-hero-shell {
            max-width: 1800px;
            margin: 0 auto;
            position: relative;
        }

       .pl-hero-box {
    position: relative;
    border-radius: 26px;
    overflow: visible;
    box-shadow: var(--pl-shadow);
}
.pl-hero-row {
    overflow: hidden;
    border-radius: 26px;
}

        /*
        IMPORTANT FIX:
        row must stretch children to same height.
        */
        .pl-hero-row {
            display: flex;
            align-items: stretch;
            min-height: 675px;
        }

        .pl-hero-row > [class*="col-"] {
            display: flex;
        }

        /* =========================
           LEFT HERO
        ========================= */

        .pl-hero-left {
            width: 100%;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 84% 32%, rgba(46, 199, 234, .55) 0 5px, transparent 6px),
                linear-gradient(135deg, #1c63ac 0%, #2876c6 55%, #1c69b5 100%);
            color: #fff;
            padding: 70px 65px 115px;
        }

        .pl-hero-left::before {
            content: "";
            position: absolute;
            width: 430px;
            height: 430px;
            border-radius: 50%;
            border: 80px solid rgba(255, 255, 255, .025);
            top: -195px;
            left: -165px;
        }

        .pl-hero-left::after {
            content: "";
            position: absolute;
            width: 200px;
            height: 200px;
            right: -70px;
            bottom: -80px;
            transform: rotate(38deg);
            border-radius: 35px;
            background: rgba(255, 255, 255, .035);
        }

        .pl-hero-content {
            position: relative;
            z-index: 3;
            max-width: 625px;
        }

        .pl-rating {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 30px;
        }

        .pl-rating-google {
            width: 37px;
            height: 37px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: #fff;
            color: #4285f4;
            font-size: 17px;
            font-weight: 900;
        }

        .pl-rating-top {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .pl-rating-top strong {
            font-size: 18px;
        }

        .pl-stars {
            color: #ffc328;
            font-size: 11px;
            letter-spacing: 1px;
        }

        .pl-rating small {
            display: block;
            margin-top: 3px;
            font-size: 12px;
            color: #fff;
        }

        .pl-eyebrow {
            margin-bottom: 14px;
            color: #bdf4ff;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 2.5px;
            text-transform: uppercase;
        }

        .pl-hero-title {
            margin: 0 0 22px;
            color: #fff;
            font-size: clamp(48px, 4.3vw, 74px);
            line-height: .99;
            font-weight: 900;
            letter-spacing: -2.5px;
        }

        .pl-hero-description {
            max-width: 600px;
            margin-bottom: 28px;
            color: rgba(255, 255, 255, .94);
            font-size: 16px;
            line-height: 1.8;
        }

        .pl-hero-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .pl-main-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 12px 12px 12px 22px;
            border-radius: 50px;
            background: var(--pl-cyan);
            color: #fff;
            font-size: 14px;
            font-weight: 900;
            transition: .3s ease;
        }

        .pl-main-btn:hover {
            color: #fff;
            background: var(--pl-navy);
            transform: translateY(-2px);
        }

        .pl-main-btn-circle {
            width: 35px;
            height: 35px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: #fff;
            color: var(--pl-blue);
        }

        .pl-hero-phone {
            display: inline-flex;
            align-items: center;
            gap: 11px;
            color: #fff;
            font-size: 20px;
            font-weight: 900;
        }

        .pl-hero-phone:hover {
            color: #fff;
        }

        .pl-hero-phone-icon {
            width: 43px;
            height: 43px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: #fff;
            color: var(--pl-blue);
        }

        /* =========================
           RIGHT HERO IMAGE
        ========================= */

        .pl-hero-right {
            width: 100%;
            position: relative;
            overflow: hidden;
            display: flex;

            /*
            No fixed height here.
            It automatically follows left section.
            */
        }

        .pl-hero-right img {
            width: 100%;
            height: 100%;

            /*
            THIS IS THE IMPORTANT FIX
            */
            object-fit: cover;

            /*
            Adjust photo focus if needed
            */
            object-position: center center;

            display: block;
            flex: 1 1 auto;
        }

     .pl-image-card {
    position: absolute;
    right: 25px;
    left: auto;
    bottom: 25px;
    top: auto;
    transform: none;

    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;

    min-width: 225px;
    padding: 10px 10px 10px 20px;

    background: #fff;
    border-radius: 50px;
    box-shadow: 0 17px 40px rgba(5, 45, 85, .18);
}
        .pl-image-card small {
            display: block;
            color: var(--pl-muted);
            font-size: 10px;
        }

        .pl-image-card strong {
            color: var(--pl-navy);
            font-size: 13px;
        }

        .pl-image-card-icon {
            margin-left: auto;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: var(--pl-cyan);
            color: #fff;
        }

        /* =========================
           INFO STRIP
        ========================= */

      .pl-hero-info {
    position: absolute;
    z-index: 20;

    left: 4%;
    bottom: -38px;

    width: 54%;
    min-height: 88px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    background: #fff;
    border-radius: 18px;

    box-shadow: 0 18px 45px rgba(5, 45, 85, .18);
}

        .pl-info-item {
            position: relative;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
        }

        .pl-info-item:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 22%;
            right: 0;
            width: 1px;
            height: 56%;
            background: #e3edf5;
        }

        .pl-info-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: #eff9fd;
            color: var(--pl-cyan);
        }

        .pl-info-item small {
            display: block;
            margin-bottom: 3px;
            color: var(--pl-muted);
            font-size: 10px;
        }

        .pl-info-item strong,
        .pl-info-item a {
            color: var(--pl-navy);
            font-size: 12px;
            font-weight: 900;
        }

        .pl-info-item:first-child a {
            color: var(--pl-blue);
            font-size: 15px;
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 1199px) {

            .pl-hero-row {
                min-height: 620px;
            }

            .pl-hero-left {
                padding: 55px 40px 110px;
            }

            .pl-hero-title {
                font-size: 57px;
            }

            .pl-hero-info {
                left: 3%;
                width: 58%;
            }

            .pl-info-item {
                padding: 14px 12px;
            }
        }

        @media (max-width: 991px) {

            .pl-topbar-inner {
                justify-content: center;
            }

            .pl-topbar-left {
                justify-content: center;
                flex-wrap: wrap;
                gap: 14px;
            }

            .pl-navbar .navbar-collapse {
                margin-top: 12px;
                padding: 15px;
                border-radius: 14px;
                background: #fff;
                box-shadow: var(--pl-shadow);
            }

            .pl-navbar .nav-link {
                margin: 0;
                padding: 9px 0 !important;
            }

            .pl-navbar .nav-link::after {
                display: none;
            }

            .pl-header-call {
                width: 100%;
                justify-content: center;
                margin-top: 10px;
            }

            /*
            Switch hero into stacked layout
            */
            .pl-hero-row {
                display: block;
                min-height: 0;
            }

            .pl-hero-row > [class*="col-"] {
                display: block;
            }

            .pl-hero-left {
                min-height: 560px;
                padding: 60px 35px 65px;
            }

            .pl-hero-right {
                height: 470px;
            }

            .pl-hero-right img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .pl-image-card {
                left: 20px;
                top: auto;
                bottom: 20px;
                transform: none;
            }

            .pl-hero-info {
                position: relative;
                left: auto;
                bottom: auto;
                width: calc(100% - 30px);
                margin: -35px auto 0;
            }
        }

      @media (max-width: 767px) {

    /* =========================
       TOP BAR
    ========================= */

    .pl-topbar {
        padding: 6px 0;
    }

    .pl-topbar-inner {
        font-size: 12px;
    }

    .pl-topbar-left {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .pl-topbar-inner > .pl-topbar-item {
        display: none;
    }

    .pl-topbar-item {
        justify-content: center;
    }

    .pl-top-phone {
        width: 100%;
        justify-content: center;
        padding: 6px 10px;

        color: #ffffff;

        font-size: 20px;
        font-weight: 900;
        letter-spacing: .4px;
    }

    .pl-top-phone i {
        color: var(--pl-cyan);
        font-size: 17px;
    }


    /* =========================
       LOGO
    ========================= */

    .pl-logo {
        font-size: 18px;
    }

    .pl-logo-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }


    /* =========================
       HERO
    ========================= */

    .pl-hero {
        padding: 0 10px 55px;
    }

    .pl-hero-box {
        border-radius: 20px;
    }

    .pl-hero-left {
        min-height: auto;
        padding: 48px 24px 48px;
    }

    .pl-hero-title {
        font-size: 46px;
        line-height: 1.02;
        letter-spacing: -1.6px;
    }

    .pl-hero-description {
        font-size: 14px;
        line-height: 1.75;
    }


    /* =========================
       HERO ACTIONS
    ========================= */

    .pl-hero-actions {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 14px;
    }


    /* First CTA button */

    .pl-main-btn {
        width: 100%;
        min-height: 58px;

        justify-content: space-between;

        padding: 10px 11px 10px 20px;

        font-size: 14px;
    }


    /* =========================
       BIG MOBILE PHONE BUTTON
    ========================= */

    .pl-hero-phone {
        width: 100%;
        min-height: 68px;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 13px;

        padding: 9px 17px;

        background: #ffffff;
        color: var(--pl-navy);

        border: 3px solid var(--pl-cyan);
        border-radius: 50px;

        font-size: 26px;
        font-weight: 900;
        letter-spacing: .5px;

        box-shadow: 0 12px 30px rgba(0, 0, 0, .16);

        transition: .3s ease;
    }

    .pl-hero-phone:hover,
    .pl-hero-phone:focus {
        background: var(--pl-cyan);
        color: #ffffff;
    }

    .pl-hero-phone-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;

        display: grid;
        place-items: center;

        background: var(--pl-cyan);
        color: #ffffff;

        border-radius: 50%;

        font-size: 19px;
    }

    .pl-hero-phone:hover .pl-hero-phone-icon,
    .pl-hero-phone:focus .pl-hero-phone-icon {
        background: #ffffff;
        color: var(--pl-blue);
    }


    /* =========================
       HERO IMAGE
    ========================= */

    .pl-hero-right {
        height: 390px;
    }

    .pl-hero-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }


    /* =========================
       IMAGE SMALL CARD
    ========================= */

    .pl-image-card {
        min-width: 215px;

        right: 15px;
        left: auto;

        bottom: 15px;
        top: auto;

        transform: none;
    }


    /* =========================
       INFO STRIP
    ========================= */

    .pl-hero-info {
        width: 100%;

        margin-top: 14px;

        grid-template-columns: 1fr;

        border: 1px solid #e6eef5;
    }

    .pl-info-item {
        padding: 15px 18px;
    }

    .pl-info-item:not(:last-child)::after {
        top: auto;
        left: 18px;
        right: 18px;
        bottom: 0;

        width: auto;
        height: 1px;
    }

    .pl-info-item:first-child a {
        color: var(--pl-blue);

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


/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .pl-hero-title {
        font-size: 39px;
    }

    .pl-hero-left {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pl-hero-phone {
        min-height: 64px;

        padding: 8px 12px;

        font-size: 23px;
    }

    .pl-hero-phone-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;

        font-size: 17px;
    }

    .pl-top-phone {
        font-size: 18px;
    }

    .pl-hero-right {
        height: 350px;
    }

    .pl-info-item:first-child a {
        font-size: 19px;
    }
}

        @media (max-width: 480px) {

            .pl-hero-title {
                font-size: 39px;
            }

            .pl-hero-left {
                padding-left: 20px;
                padding-right: 20px;
            }

            .pl-hero-phone {
                font-size: 20px;
            }

            .pl-hero-right {
                height: 350px;
            }
        }




/* =========================================
   SECOND SECTION
========================================= */

.pl-about-section {
    position: relative;
    padding: 115px 0;
    background:
        radial-gradient(circle at 8% 18%,
            rgba(46, 199, 234, .07) 0 2px,
            transparent 3px),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7fbfe 100%
        );

    overflow: hidden;
}


/* BACKGROUND DECORATION */

.pl-about-section::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    border: 75px solid rgba(36, 111, 189, .035);
    border-radius: 50%;

    right: -210px;
    top: -170px;

    pointer-events: none;
}


.pl-about-section::after {
    content: "";
    position: absolute;

    width: 150px;
    height: 150px;

    border: 28px solid rgba(46, 199, 234, .055);
    border-radius: 50%;

    left: -65px;
    bottom: 20px;

    pointer-events: none;
}


/* =========================================
   IMAGE VISUAL
========================================= */

.pl-about-visual {
    position: relative;

    max-width: 590px;

    padding:
        25px
        45px
        50px
        15px;
}


/* BLUE BACK SHAPE */

.pl-about-shape {
    position: absolute;

    top: 0;
    right: 15px;

    width: 76%;
    height: 90%;

    background: var(--pl-blue);

    border-radius:
        28px
        100px
        28px
        100px;

    transform: rotate(3deg);

    opacity: .10;
}


/* MAIN IMAGE */

.pl-about-image {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 570px;

    border-radius:
        28px
        105px
        28px
        105px;

    overflow: hidden;

    background: #e9f2f8;

    box-shadow:
        0 28px 65px
        rgba(8, 43, 76, .17);
}


.pl-about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* CYAN CORNER */

.pl-about-corner {
    position: absolute;

    right: 0;
    top: 0;

    width: 88px;
    height: 88px;

    display: grid;
    place-items: center;

    background: var(--pl-cyan);
    color: #ffffff;

    border-radius:
        0
        0
        0
        55px;

    font-size: 25px;
}


/* =========================================
   FLOATING BOX
========================================= */

.pl-about-float {
    position: absolute;

    z-index: 5;

    left: -18px;
    bottom: 8px;

    display: flex;
    align-items: center;

    gap: 13px;

    min-width: 250px;

    padding: 13px 22px 13px 13px;

    background: #ffffff;

    border-radius: 50px;

    box-shadow:
        0 18px 45px
        rgba(8, 43, 76, .16);
}


.pl-about-float-icon {
    width: 51px;
    height: 51px;

    min-width: 51px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pl-cyan);

    color: #ffffff;

    font-size: 19px;
}


.pl-about-float small {
    display: block;

    margin-bottom: 2px;

    color: var(--pl-muted);

    font-size: 10px;
}


.pl-about-float strong {
    display: block;

    color: var(--pl-navy);

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


/* =========================================
   SMALL FLOATING TAG
========================================= */

.pl-about-tag {
    position: absolute;

    z-index: 6;

    right: 5px;
    bottom: 95px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    background: var(--pl-navy);
    color: #ffffff;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 800;

    box-shadow:
        0 12px 30px
        rgba(8, 43, 76, .22);
}


.pl-about-tag i {
    color: var(--pl-cyan);
}


/* =========================================
   DOT DECORATION
========================================= */

.pl-about-dots {
    position: absolute;

    left: -10px;
    top: -10px;

    width: 95px;
    height: 95px;

    opacity: .4;

    background-image:
        radial-gradient(
            var(--pl-cyan) 2px,
            transparent 2px
        );

    background-size: 13px 13px;
}


/* =========================================
   CONTENT
========================================= */

.pl-about-content {
    position: relative;

    z-index: 3;

    padding-left: 20px;
}


/* SMALL LABEL */

.pl-section-label {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 19px;

    color: var(--pl-blue);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.pl-label-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(46, 199, 234, .13);

    color: var(--pl-cyan);

    font-size: 13px;
}


/* MAIN H1 */

.pl-about-main-title {
    margin:
        0
        0
        18px;

    max-width: 680px;

    color: var(--pl-navy);

    font-size:
        clamp(
            38px,
            4vw,
            59px
        );

    line-height: 1.06;

    letter-spacing: -2px;

    font-weight: 900;
}


/* H2 */

.pl-about-title {
    position: relative;

    margin:
        0
        0
        25px;

    padding-left: 19px;

    color: var(--pl-blue);

    font-size: 21px;

    line-height: 1.35;

    font-weight: 800;
}


.pl-about-title::before {
    content: "";

    position: absolute;

    left: 0;
    top: 4px;
    bottom: 4px;

    width: 4px;

    border-radius: 5px;

    background: var(--pl-cyan);
}


/* PARAGRAPHS */

.pl-about-text {
    margin-bottom: 18px;

    max-width: 670px;

    color: var(--pl-muted);

    font-size: 15px;

    line-height: 1.9;
}


.pl-about-text strong {
    color: var(--pl-navy);
    font-weight: 900;
}


/* =========================================
   BOTTOM SERVICE BAR
========================================= */

.pl-about-services {
    margin-top: 30px;

    display: flex;
    align-items: center;

    width: 100%;

    padding: 17px 20px;

    background: #ffffff;

    border:
        1px solid
        rgba(8, 43, 76, .08);

    border-radius: 18px;

    box-shadow:
        0 15px 40px
        rgba(8, 43, 76, .07);
}


.pl-about-service-item {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 10px;
}


.pl-about-service-item > span {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(46, 199, 234, .11);

    color: var(--pl-cyan);

    font-size: 13px;
}


.pl-about-service-item small {
    display: block;

    color: var(--pl-muted);

    font-size: 9px;

    margin-bottom: 2px;
}


.pl-about-service-item strong {
    display: block;

    color: var(--pl-navy);

    font-size: 12px;

    font-weight: 900;
}


.pl-about-service-divider {
    width: 1px;
    height: 35px;

    margin: 0 15px;

    background:
        rgba(8, 43, 76, .10);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pl-about-section {
        padding: 90px 0;
    }

    .pl-about-visual {
        margin:
            0 auto
            30px;
    }

    .pl-about-content {
        padding-left: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pl-about-section {
        padding: 70px 0;
    }

    .pl-about-visual {
        padding:
            15px
            18px
            45px
            8px;
    }

    .pl-about-image {
        height: 460px;

        border-radius:
            20px
            70px
            20px
            70px;
    }

    .pl-about-shape {
        right: 0;

        border-radius:
            20px
            70px
            20px
            70px;
    }

    .pl-about-float {
        left: 0;
        bottom: 4px;

        min-width: 225px;
    }

    .pl-about-tag {
        right: 0;
        bottom: 85px;
    }

    .pl-about-main-title {
        font-size: 40px;

        line-height: 1.08;

        letter-spacing: -1.3px;
    }

    .pl-about-title {
        font-size: 19px;
    }

    .pl-about-text {
        font-size: 14px;

        line-height: 1.85;
    }

    .pl-about-services {
        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        padding: 17px;
    }

    .pl-about-service-divider {
        width: 100%;
        height: 1px;

        margin: 0;

        background:
            rgba(8, 43, 76, .08);
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pl-about-image {
        height: 390px;
    }

    .pl-about-main-title {
        font-size: 35px;
    }

    .pl-about-float {
        min-width: 210px;

        padding:
            10px
            15px
            10px
            10px;
    }

    .pl-about-float-icon {
        width: 45px;
        height: 45px;

        min-width: 45px;
    }

    .pl-about-tag {
        font-size: 10px;
    }

}




/* =========================================
   WHY CHOOSE US
========================================= */

.pl-why-section {
    padding: 105px 0;
    background: #ffffff;
}


.pl-why-wrap {
    position: relative;
    overflow: hidden;

    padding: 75px 70px;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(46, 199, 234, .13),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #082b4c 0%,
            #0b3761 55%,
            #0d4778 100%
        );

    border-radius: 30px;
}


/* LARGE DECORATIVE CIRCLE */

.pl-why-wrap::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -220px;
    bottom: -240px;

    border: 70px solid rgba(255,255,255,.025);

    border-radius: 50%;
}


.pl-why-wrap::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -100px;
    top: -100px;

    border: 35px solid rgba(46,199,234,.07);

    border-radius: 50%;
}


/* =========================================
   DOTS
========================================= */

.pl-why-dots {
    position: absolute;

    width: 90px;
    height: 90px;

    background-image:
        radial-gradient(
            rgba(46,199,234,.65) 2px,
            transparent 2px
        );

    background-size: 13px 13px;
}


.pl-why-dots-one {
    right: 35px;
    top: 35px;
}


.pl-why-dots-two {
    left: 35px;
    bottom: 30px;

    opacity: .35;
}


/* =========================================
   LEFT CONTENT
========================================= */

.pl-why-intro {
    position: relative;
    z-index: 3;
}


.pl-why-label {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: #aeefff;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.pl-why-label span {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    background: rgba(46,199,234,.15);

    border: 1px solid rgba(46,199,234,.25);

    border-radius: 50%;

    color: var(--pl-cyan);
}


.pl-why-intro h2 {
    margin: 0 0 22px;

    max-width: 520px;

    color: #ffffff;

    font-size: clamp(39px, 4vw, 57px);

    line-height: 1.04;

    letter-spacing: -2px;

    font-weight: 900;
}


.pl-why-intro h2 span {
    color: var(--pl-cyan);
}


.pl-why-intro > p {
    max-width: 500px;

    margin-bottom: 32px;

    color: rgba(255,255,255,.72);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================
   PHONE
========================================= */

.pl-why-call {
    max-width: 390px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 11px 12px;

    background: #ffffff;

    border-radius: 60px;

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.18);
}


.pl-why-call-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: grid;
    place-items: center;

    background: var(--pl-cyan);

    color: #ffffff;

    border-radius: 50%;

    font-size: 18px;
}


.pl-why-call small {
    display: block;

    margin-bottom: 2px;

    color: var(--pl-muted);

    font-size: 10px;
}


.pl-why-call a {
    color: var(--pl-navy);

    font-size: 20px;

    font-weight: 900;
}


.pl-why-call-arrow {
    width: 35px;
    height: 35px;

    min-width: 35px;

    margin-left: auto;

    display: grid;
    place-items: center;

    background: #eff9fd;

    color: var(--pl-blue);

    border-radius: 50%;

    font-size: 12px;
}


/* =========================================
   RIGHT LIST
========================================= */

.pl-why-list {
    position: relative;
    z-index: 3;

    padding-left: 35px;
}


.pl-why-item {
    position: relative;

    display: grid;

    grid-template-columns:
        48px
        65px
        1fr;

    align-items: center;

    gap: 18px;

    padding: 24px 0;
}


/* SEPARATOR */

.pl-why-item:not(:last-child)::after {
    content: "";

    position: absolute;

    left: 131px;
    right: 0;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.18),
            transparent
        );
}


/* NUMBER */

.pl-why-number {
    color: rgba(255,255,255,.22);

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;
}


/* ICON */

.pl-why-icon {
    position: relative;

    width: 61px;
    height: 61px;

    display: grid;
    place-items: center;

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

    border: 1px solid rgba(255,255,255,.11);

    border-radius: 18px;

    color: var(--pl-cyan);

    font-size: 21px;

    transition: .3s ease;
}


.pl-why-item:hover .pl-why-icon {
    background: var(--pl-cyan);

    color: #ffffff;

    transform: translateY(-3px);
}


/* TEXT */

.pl-why-item-content h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 900;
}


.pl-why-item-content p {
    max-width: 510px;

    margin: 0;

    color: rgba(255,255,255,.62);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pl-why-section {
        padding: 80px 0;
    }

    .pl-why-wrap {
        padding: 60px 45px;
    }

    .pl-why-list {
        padding-left: 0;

        margin-top: 10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pl-why-section {
        padding: 65px 0;
    }

    .pl-why-wrap {
        padding: 50px 23px;

        border-radius: 22px;
    }

    .pl-why-intro h2 {
        font-size: 38px;

        letter-spacing: -1.3px;
    }

    .pl-why-call {
        width: 100%;
    }

    .pl-why-call a {
        font-size: 20px;
    }


    /* LIST */

    .pl-why-item {
        grid-template-columns: 55px 1fr;

        gap: 15px;

        padding: 22px 0;
    }

    .pl-why-number {
        display: none;
    }

    .pl-why-icon {
        width: 55px;
        height: 55px;

        border-radius: 16px;
    }

    .pl-why-item:not(:last-child)::after {
        left: 70px;
    }

    .pl-why-item-content h3 {
        font-size: 17px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pl-why-wrap {
        padding:
            45px
            18px;
    }

    .pl-why-intro h2 {
        font-size: 34px;
    }

    .pl-why-call {
        padding: 9px;
    }

    .pl-why-call-icon {
        width: 47px;
        height: 47px;

        min-width: 47px;
    }

    .pl-why-call a {
        font-size: 18px;
    }

    .pl-why-call-arrow {
        display: none;
    }

}




/* =========================================
   COMPLETE PLUMBING SERVICES
========================================= */

.pl-complete-services {
    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #f5f9fd 0%,
            #ffffff 100%
        );

    overflow: hidden;
}


/* BACKGROUND DECORATION */

.pl-complete-services::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    left: -240px;
    top: 60px;

    border: 70px solid rgba(46, 199, 234, .045);

    border-radius: 50%;
}


/* =========================================
   CONTENT
========================================= */

.pl-complete-content {
    position: relative;

    z-index: 2;

    max-width: 760px;
}


/* SMALL LABEL */

.pl-complete-label {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--pl-blue);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.pl-complete-label-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    background: rgba(46, 199, 234, .12);

    color: var(--pl-cyan);

    border-radius: 50%;

    font-size: 13px;
}


/* TITLE */

.pl-complete-title {
    max-width: 650px;

    margin: 0 0 22px;

    color: var(--pl-navy);

    font-size: clamp(40px, 4vw, 60px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -2px;
}


/* PARAGRAPHS */

.pl-complete-text,
.pl-complete-bottom-text {
    max-width: 720px;

    margin-bottom: 20px;

    color: var(--pl-muted);

    font-size: 15px;

    line-height: 1.9;
}


.pl-complete-bottom-text {
    margin-top: 27px;
    margin-bottom: 0;
}


.pl-complete-bottom-text strong {
    color: var(--pl-navy);

    font-weight: 900;
}


.pl-complete-intro {
    margin: 27px 0 16px;

    color: var(--pl-navy);

    font-size: 16px;

    font-weight: 900;
}


/* =========================================
   SERVICES LIST
========================================= */

.pl-complete-list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 9px 15px;
}


.pl-complete-list-item {
    position: relative;

    min-height: 52px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 9px 14px 9px 9px;

    background: #ffffff;

    border: 1px solid rgba(8, 43, 76, .08);

    border-radius: 14px;

    color: var(--pl-text);

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 8px 25px
        rgba(8, 43, 76, .045);

    transition: .3s ease;
}


.pl-complete-list-item:hover {
    transform: translateX(4px);

    border-color:
        rgba(46, 199, 234, .40);

    box-shadow:
        0 13px 30px
        rgba(8, 43, 76, .08);
}


/* CHECK ICON */

.pl-service-check {
    width: 34px;
    height: 34px;

    min-width: 34px;

    display: grid;
    place-items: center;

    background: rgba(46, 199, 234, .12);

    color: var(--pl-cyan);

    border-radius: 10px;

    font-size: 11px;

    transition: .3s ease;
}


.pl-complete-list-item:hover
.pl-service-check {
    background: var(--pl-cyan);

    color: #ffffff;
}


/* =========================================
   IMAGE AREA
========================================= */

.pl-complete-visual {
    position: relative;

    max-width: 530px;

    margin-left: auto;

    padding:
        30px
        15px
        55px
        40px;
}


/* BLUE BACK SHAPE */

.pl-complete-blue-shape {
    position: absolute;

    z-index: 0;

    top: 0;
    right: 0;

    width: 88%;
    height: 92%;

    background:
        linear-gradient(
            145deg,
            var(--pl-blue),
            var(--pl-blue-dark)
        );

    border-radius:
        90px
        25px
        90px
        25px;

    transform: rotate(3deg);
}


/* IMAGE */

.pl-complete-image {
    position: relative;

    z-index: 2;

    width: 100%;

    height: 630px;

    overflow: hidden;

    background: #e9f2f8;

    border:
        6px solid
        #ffffff;

    border-radius:
        85px
        25px
        85px
        25px;

    box-shadow:
        0 28px 60px
        rgba(8, 43, 76, .18);
}


.pl-complete-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================================
   FLOATING IMAGE CARD
========================================= */

.pl-complete-image-card {
    position: absolute;

    z-index: 5;

    left: 0;
    bottom: 0;

    min-width: 285px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 12px 22px 12px 12px;

    background: #ffffff;

    border-radius: 55px;

    box-shadow:
        0 18px 45px
        rgba(8, 43, 76, .18);
}


.pl-complete-image-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: grid;
    place-items: center;

    background: var(--pl-cyan);

    color: #ffffff;

    border-radius: 50%;

    font-size: 19px;
}


.pl-complete-image-card small {
    display: block;

    margin-bottom: 3px;

    color: var(--pl-muted);

    font-size: 10px;
}


.pl-complete-image-card strong {
    display: block;

    color: var(--pl-navy);

    font-size: 14px;

    font-weight: 900;
}


/* =========================================
   SIDE BADGE
========================================= */

.pl-complete-side-badge {
    position: absolute;

    z-index: 6;

    top: 85px;
    right: -4px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    background: var(--pl-navy);

    color: #ffffff;

    border-radius: 40px;

    font-size: 11px;

    font-weight: 900;

    box-shadow:
        0 12px 30px
        rgba(8, 43, 76, .22);
}


.pl-complete-side-badge i {
    color: var(--pl-cyan);
}


/* =========================================
   DOTS
========================================= */

.pl-complete-dots {
    position: absolute;

    z-index: 1;

    width: 100px;
    height: 100px;

    left: 2px;
    top: 5px;

    background-image:
        radial-gradient(
            #2ec7ea 2px,
            transparent 2px
        );

    background-size: 13px 13px;

    opacity: .45;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pl-complete-services {
        padding: 85px 0;
    }

    .pl-complete-visual {
        margin:
            30px
            auto
            0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pl-complete-services {
        padding: 70px 0;
    }


    .pl-complete-title {
        font-size: 39px;

        line-height: 1.08;

        letter-spacing: -1.3px;
    }


    .pl-complete-text,
    .pl-complete-bottom-text {
        font-size: 14px;

        line-height: 1.85;
    }


    /* ONE COLUMN SERVICES */

    .pl-complete-list {
        grid-template-columns: 1fr;
    }


    .pl-complete-list-item {
        min-height: 54px;

        font-size: 13px;
    }


    /* IMAGE */

    .pl-complete-visual {
        padding:
            20px
            10px
            55px
            20px;
    }


    .pl-complete-image {
        height: 500px;

        border-radius:
            60px
            20px
            60px
            20px;
    }


    .pl-complete-blue-shape {
        border-radius:
            60px
            20px
            60px
            20px;
    }


    .pl-complete-image-card {
        min-width: 260px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pl-complete-title {
        font-size: 35px;
    }


    .pl-complete-image {
        height: 420px;
    }


    .pl-complete-image-card {
        min-width: 245px;

        padding:
            10px
            15px
            10px
            10px;
    }


    .pl-complete-image-icon {
        width: 46px;
        height: 46px;

        min-width: 46px;
    }


    .pl-complete-side-badge {
        top: 55px;
        right: 0;
    }

}


/* =========================================
   EMERGENCY SECTION
========================================= */

.pl-emergency-section {
    position: relative;

    padding: 100px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================
   MAIN WRAPPER
========================================= */

.pl-emergency-wrap {
    position: relative;

    overflow: hidden;

    border-radius: 32px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(46, 199, 234, .17),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #072945 0%,
            #0b3963 48%,
            #11588d 100%
        );

    box-shadow:
        0 30px 70px
        rgba(8, 43, 76, .18);
}


/* BIG BACKGROUND CIRCLE */

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

    position: absolute;

    width: 470px;
    height: 470px;

    left: -240px;
    top: -250px;

    border: 80px solid rgba(255, 255, 255, .025);

    border-radius: 50%;

    pointer-events: none;
}


/* WATER SHAPE */

.pl-emergency-wrap::after {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    left: 47%;
    bottom: -130px;

    border-radius:
        60% 40% 65% 35% /
        45% 60% 40% 55%;

    background:
        rgba(46, 199, 234, .06);

    transform: rotate(25deg);

    pointer-events: none;
}


/* =========================================
   CONTENT
========================================= */

.pl-emergency-content {
    position: relative;

    z-index: 3;

    min-height: 600px;

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

    padding:
        65px
        65px
        105px;
}


/* LABEL */

.pl-emergency-label {
    display: inline-flex;
    align-items: center;

    align-self: flex-start;

    gap: 10px;

    margin-bottom: 22px;

    color: #bcefff;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.pl-emergency-label-icon {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(46, 199, 234, .15);

    border:
        1px solid
        rgba(46, 199, 234, .25);

    color: var(--pl-cyan);

    font-size: 13px;
}


/* =========================================
   HEADING
========================================= */

.pl-emergency-content h2 {
    max-width: 680px;

    margin:
        0
        0
        23px;

    color: #ffffff;

    font-size:
        clamp(
            44px,
            4.4vw,
            67px
        );

    line-height: 1.01;

    letter-spacing: -2.5px;

    font-weight: 900;
}


.pl-emergency-content h2 span {
    display: block;

    color: var(--pl-cyan);
}


/* =========================================
   DESCRIPTION
========================================= */

.pl-emergency-description {
    max-width: 640px;

    margin-bottom: 28px;

    color:
        rgba(255, 255, 255, .72);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================
   FEATURE POINTS
========================================= */

.pl-emergency-points {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 31px;
}


.pl-emergency-point {
    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        9px
        14px
        9px
        9px;

    border:
        1px solid
        rgba(255, 255, 255, .10);

    border-radius: 50px;

    background:
        rgba(255, 255, 255, .055);
}


.pl-emergency-point > span {
    width: 36px;
    height: 36px;

    min-width: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(46, 199, 234, .16);

    color: var(--pl-cyan);

    font-size: 12px;
}


.pl-emergency-point small {
    display: block;

    margin-bottom: 1px;

    color:
        rgba(255, 255, 255, .48);

    font-size: 8px;
}


.pl-emergency-point strong {
    display: block;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;
}


/* =========================================
   BIG PHONE BUTTON
========================================= */

.pl-emergency-call-area {
    display: flex;
}


.pl-emergency-phone {
    width: 100%;
    max-width: 480px;

    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding:
        10px
        13px
        10px
        11px;

    background: #ffffff;

    border:
        3px solid
        rgba(255, 255, 255, .16);

    border-radius: 60px;

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, .20);

    transition: .3s ease;
}


.pl-emergency-phone:hover {
    transform: translateY(-3px);

    background: var(--pl-cyan);
}


/* PHONE ICON */

.pl-emergency-phone-icon {
    width: 60px;
    height: 60px;

    min-width: 60px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pl-cyan);

    color: #ffffff;

    font-size: 21px;

    transition: .3s ease;
}


.pl-emergency-phone:hover
.pl-emergency-phone-icon {
    background: #ffffff;

    color: var(--pl-blue);
}


/* PHONE TEXT */

.pl-emergency-phone-content {
    display: flex;
    flex-direction: column;
}


.pl-emergency-phone-content small {
    margin-bottom: 2px;

    color: var(--pl-muted);

    font-size: 10px;

    font-weight: 700;

    transition: .3s ease;
}


.pl-emergency-phone-content strong {
    color: var(--pl-navy);

    font-size: 28px;

    line-height: 1;

    letter-spacing: .3px;

    font-weight: 900;

    transition: .3s ease;
}


.pl-emergency-phone:hover
.pl-emergency-phone-content small,
.pl-emergency-phone:hover
.pl-emergency-phone-content strong {
    color: #ffffff;
}


/* ARROW */

.pl-emergency-arrow {
    width: 39px;
    height: 39px;

    min-width: 39px;

    margin-left: auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #eff8fd;

    color: var(--pl-blue);

    font-size: 12px;
}


/* =========================================
   IMAGE
========================================= */

.pl-emergency-image {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 600px;

    overflow: hidden;

    background: #dce9f2;
}


.pl-emergency-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* IMAGE OVERLAY */

.pl-emergency-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 41, 69, .24) 0%,
            transparent 40%
        );

    pointer-events: none;
}


/* =========================================
   LOCATION BADGE
========================================= */

.pl-emergency-location {
    position: absolute;

    z-index: 5;

    top: 30px;
    right: 25px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        9px
        15px
        9px
        9px;

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

    border-radius: 50px;

    box-shadow:
        0 15px 35px
        rgba(8, 43, 76, .17);
}


.pl-emergency-location > span {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pl-cyan);

    color: #ffffff;

    font-size: 13px;
}


.pl-emergency-location small {
    display: block;

    color: var(--pl-muted);

    font-size: 9px;
}


.pl-emergency-location strong {
    display: block;

    color: var(--pl-navy);

    font-size: 12px;

    font-weight: 900;
}


/* =========================================
   LARGE WATER ICON
========================================= */

.pl-emergency-water-icon {
    position: absolute;

    z-index: 5;

    left: 25px;
    bottom: 100px;

    width: 67px;
    height: 67px;

    display: grid;
    place-items: center;

    border-radius:
        50% 50% 50% 12px;

    transform: rotate(-45deg);

    background: var(--pl-cyan);

    color: #ffffff;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, .18);

    font-size: 21px;
}


.pl-emergency-water-icon i {
    transform: rotate(45deg);
}


/* =========================================
   BOTTOM STRIP
========================================= */

.pl-emergency-bottom {
    position: absolute;

    z-index: 15;

    left: 4%;
    right: 4%;
    bottom: 20px;

    min-height: 67px;

    display: flex;
    align-items: center;

    gap: 25px;

    padding:
        12px
        20px;

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

    border-radius: 16px;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, .13);
}


.pl-emergency-bottom-title {
    display: flex;
    align-items: center;

    gap: 10px;

    padding-right: 23px;

    border-right:
        1px solid
        #e3edf5;

    white-space: nowrap;
}


.pl-emergency-bottom-title > span {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(46, 199, 234, .12);

    color: var(--pl-cyan);

    font-size: 13px;
}


.pl-emergency-bottom-title strong {
    color: var(--pl-navy);

    font-size: 12px;

    font-weight: 900;
}


.pl-emergency-bottom-items {
    flex: 1;

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

    gap: 15px;
}


.pl-emergency-bottom-items span {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--pl-muted);

    font-size: 10px;

    font-weight: 700;

    white-space: nowrap;
}


.pl-emergency-bottom-items i {
    color: var(--pl-cyan);
}


/* =========================================
   DOTS
========================================= */

.pl-emergency-dots {
    position: absolute;

    z-index: 2;

    top: 35px;
    left: 48%;

    width: 90px;
    height: 90px;

    background-image:
        radial-gradient(
            rgba(46, 199, 234, .6) 2px,
            transparent 2px
        );

    background-size: 13px 13px;

    opacity: .35;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .pl-emergency-content {
        padding:
            55px
            40px
            105px;
    }

    .pl-emergency-content h2 {
        font-size: 52px;
    }

    .pl-emergency-points {
        gap: 8px;
    }

}


@media (max-width: 991px) {

    .pl-emergency-section {
        padding: 80px 0;
    }

    .pl-emergency-content {
        min-height: auto;

        padding:
            60px
            40px
            55px;
    }

    .pl-emergency-image {
        height: 480px;
        min-height: 480px;
    }

    .pl-emergency-bottom {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        margin:
            0
            20px
            20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pl-emergency-section {
        padding: 65px 0;
    }


    .pl-emergency-wrap {
        border-radius: 23px;
    }


    /* CONTENT */

    .pl-emergency-content {
        padding:
            48px
            22px
            42px;
    }


    .pl-emergency-content h2 {
        font-size: 40px;

        line-height: 1.05;

        letter-spacing: -1.5px;
    }


    .pl-emergency-description {
        font-size: 14px;

        line-height: 1.8;
    }


    /* POINTS */

    .pl-emergency-points {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;
    }


    .pl-emergency-point {
        width: 100%;
    }


    /* =====================================
       VERY CLEAR MOBILE PHONE
    ===================================== */

    .pl-emergency-call-area {
        width: 100%;

        margin-top: 5px;
    }


    .pl-emergency-phone {
        width: 100%;
        max-width: none;

        min-height: 83px;

        padding:
            10px
            13px;

        gap: 12px;

        border-radius: 18px;
    }


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

        min-width: 58px;
    }


    .pl-emergency-phone-content small {
        font-size: 10px;
    }


    .pl-emergency-phone-content strong {
        font-size: 27px;

        letter-spacing: 0;
    }


    .pl-emergency-arrow {
        display: none;
    }


    /* IMAGE */

    .pl-emergency-image {
        height: 400px;
        min-height: 400px;
    }


    .pl-emergency-water-icon {
        bottom: 25px;
    }


    /* BOTTOM */

    .pl-emergency-bottom {
        margin:
            0
            12px
            12px;

        padding: 16px;

        flex-direction: column;

        align-items: stretch;

        gap: 13px;
    }


    .pl-emergency-bottom-title {
        padding:
            0
            0
            12px;

        border-right: 0;

        border-bottom:
            1px solid
            #e3edf5;
    }


    .pl-emergency-bottom-items {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pl-emergency-content {
        padding:
            43px
            18px
            38px;
    }


    .pl-emergency-content h2 {
        font-size: 35px;
    }


    /* PHONE NUMBER */

    .pl-emergency-phone {
        min-height: 78px;

        padding: 9px 11px;
    }


    .pl-emergency-phone-icon {
        width: 53px;
        height: 53px;

        min-width: 53px;

        font-size: 19px;
    }


    .pl-emergency-phone-content strong {
        font-size: 24px;
    }


    .pl-emergency-image {
        height: 350px;
        min-height: 350px;
    }


    .pl-emergency-location {
        top: 18px;
        right: 15px;
    }


    .pl-emergency-bottom-items {
        grid-template-columns: 1fr;
    }

}



/* =========================================
   LOCAL CONTENT SECTION
========================================= */

.pl-local-content-section {
    position: relative;

    padding: 110px 0;

    background:
        radial-gradient(
            circle at 4% 12%,
            rgba(46, 199, 234, .08),
            transparent 18%
        ),
        radial-gradient(
            circle at 96% 82%,
            rgba(36, 111, 189, .06),
            transparent 20%
        ),
        #f7fbfe;

    overflow: hidden;
}


/* LARGE DECORATION */

.pl-local-content-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -280px;
    top: -200px;

    border:
        75px solid
        rgba(36, 111, 189, .035);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   TOP LABEL
========================================= */

.pl-local-top {
    position: relative;

    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 55px;

    padding-bottom: 20px;

    border-bottom:
        1px solid
        rgba(8, 43, 76, .09);
}


.pl-local-top-mark {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pl-cyan);

    color: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(46, 199, 234, .25);
}


.pl-local-eyebrow {
    display: block;

    margin-bottom: 3px;

    color: var(--pl-blue);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.pl-local-top p {
    margin: 0;

    color: var(--pl-muted);

    font-size: 12px;
}


/* =========================================
   BLOCK
========================================= */

.pl-local-block {
    position: relative;

    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================
   NUMBER AREA
========================================= */

.pl-local-number-wrap {
    position: relative;

    min-height: 130px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 9px;

    padding-top: 3px;
}


.pl-local-number {
    color:
        rgba(8, 43, 76, .10);

    font-size: 72px;

    line-height: .9;

    letter-spacing: -5px;

    font-weight: 900;
}


.pl-local-number-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    margin-left: 9px;

    border-radius: 14px;

    background: var(--pl-navy);

    color: var(--pl-cyan);

    font-size: 15px;

    box-shadow:
        0 10px 25px
        rgba(8, 43, 76, .13);
}


/* =========================================
   TEXT
========================================= */

.pl-local-copy {
    position: relative;

    max-width: 950px;
}


.pl-local-copy h2 {
    max-width: 850px;

    margin:
        0
        0
        15px;

    color: var(--pl-navy);

    font-size:
        clamp(
            32px,
            3vw,
            46px
        );

    line-height: 1.08;

    letter-spacing: -1.6px;

    font-weight: 900;
}


/* CYAN LINE */

.pl-local-title-line {
    width: 58px;
    height: 4px;

    margin-bottom: 24px;

    border-radius: 10px;

    background: var(--pl-cyan);
}


.pl-local-copy p {
    max-width: 930px;

    margin:
        0
        0
        17px;

    color: var(--pl-muted);

    font-size: 15px;

    line-height: 1.9;
}


.pl-local-copy p:last-child {
    margin-bottom: 0;
}


.pl-local-copy strong {
    color: var(--pl-navy);

    font-weight: 900;
}


/* =========================================
   SECOND BLOCK SPECIAL
========================================= */

.pl-local-block-middle {
    position: relative;

    padding:
        45px
        45px;

    background: #ffffff;

    border:
        1px solid
        rgba(8, 43, 76, .07);

    border-radius: 25px;

    box-shadow:
        0 20px 55px
        rgba(8, 43, 76, .07);
}


.pl-local-block-middle::before {
    content: "";

    position: absolute;

    left: 0;
    top: 35px;
    bottom: 35px;

    width: 4px;

    border-radius:
        0 10px 10px 0;

    background: var(--pl-cyan);
}


/* =========================================
   DIVIDERS
========================================= */

.pl-local-divider {
    max-width: 1200px;

    margin:
        45px
        auto;

    display: flex;
    align-items: center;

    gap: 14px;
}


.pl-local-divider > span {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(8, 43, 76, .10),
            transparent
        );
}


.pl-local-divider > div {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #ffffff;

    border:
        1px solid
        rgba(8, 43, 76, .08);

    color: var(--pl-cyan);

    font-size: 12px;

    box-shadow:
        0 7px 20px
        rgba(8, 43, 76, .07);
}


/* =========================================
   BOTTOM LOCATION BAR
========================================= */

.pl-local-areas {
    max-width: 1200px;

    margin:
        60px
        auto
        0;

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

    gap: 30px;

    padding:
        20px
        25px;

    background:
        linear-gradient(
            135deg,
            var(--pl-navy),
            #0d4778
        );

    border-radius: 18px;

    box-shadow:
        0 18px 40px
        rgba(8, 43, 76, .14);
}


/* LOCATION HEADING */

.pl-local-areas-heading {
    display: flex;
    align-items: center;

    gap: 12px;

    min-width: 225px;
}


.pl-local-areas-heading > span {
    width: 44px;
    height: 44px;

    min-width: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pl-cyan);

    color: #ffffff;
}


.pl-local-areas-heading small {
    display: block;

    margin-bottom: 2px;

    color:
        rgba(255, 255, 255, .55);

    font-size: 9px;
}


.pl-local-areas-heading strong {
    display: block;

    color: #ffffff;

    font-size: 13px;

    font-weight: 900;
}


/* AREAS */

.pl-local-area-list {
    flex: 1;

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

    flex-wrap: wrap;

    gap: 10px;
}


.pl-local-area-list span {
    color:
        rgba(255, 255, 255, .86);

    font-size: 11px;

    font-weight: 700;
}


.pl-local-area-list i {
    color: var(--pl-cyan);

    font-size: 4px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pl-local-content-section {
        padding: 85px 0;
    }


    .pl-local-number-wrap {
        min-height: auto;

        flex-direction: row;
        align-items: center;

        margin-bottom: 5px;
    }


    .pl-local-number {
        font-size: 55px;
    }


    .pl-local-number-icon {
        margin-left: 0;
    }


    .pl-local-block-middle {
        padding:
            40px
            35px;
    }


    .pl-local-areas {
        flex-direction: column;

        align-items: flex-start;
    }


    .pl-local-area-list {
        justify-content: flex-start;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pl-local-content-section {
        padding: 70px 0;
    }


    .pl-local-top {
        margin-bottom: 40px;
    }


    /* NUMBER */

    .pl-local-number {
        font-size: 48px;

        letter-spacing: -3px;
    }


    .pl-local-number-icon {
        width: 40px;
        height: 40px;

        border-radius: 12px;
    }


    /* HEADING */

    .pl-local-copy h2 {
        font-size: 33px;

        line-height: 1.1;

        letter-spacing: -1px;
    }


    /* TEXT */

    .pl-local-copy p {
        font-size: 14px;

        line-height: 1.85;
    }


    /* MIDDLE */

    .pl-local-block-middle {
        padding:
            32px
            22px;

        border-radius: 20px;
    }


    .pl-local-block-middle::before {
        top: 25px;
        bottom: 25px;
    }


    /* DIVIDER */

    .pl-local-divider {
        margin:
            35px
            auto;
    }


    /* LOCATION */

    .pl-local-areas {
        margin-top: 45px;

        padding: 20px;

        border-radius: 17px;
    }


    .pl-local-area-list {
        gap: 9px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pl-local-copy h2 {
        font-size: 30px;
    }


    .pl-local-number {
        font-size: 43px;
    }


    .pl-local-block-middle {
        padding:
            28px
            18px;
    }


    .pl-local-area-list {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        width: 100%;

        gap: 9px;
    }


    .pl-local-area-list i {
        display: none;
    }


    .pl-local-area-list span {
        padding: 8px 10px;

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

        border-radius: 8px;
    }

}



/* =========================================
   CONTACT + COUPON SECTION
========================================= */

.pl-contact-offer {
    position: relative;
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(46,199,234,.07),
            transparent 20%
        ),
        #f5f9fc;

    overflow: hidden;
}


.pl-contact-offer::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    top: -220px;

    border: 75px solid rgba(36,111,189,.035);
    border-radius: 50%;
}


/* =========================================
   MAIN WRAPPER
========================================= */

.pl-contact-wrap {
    position: relative;
    z-index: 2;

    overflow: hidden;

    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 30px 75px
        rgba(8,43,76,.13);
}


/* =========================================
   COUPON SIDE
========================================= */

.pl-coupon-side {
    position: relative;

    height: 100%;
    min-height: 720px;

    padding: 65px 48px;

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

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(46,199,234,.18),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #072945 0%,
            #0b3963 55%,
            #10558a 100%
        );

    overflow: hidden;
}


.pl-coupon-side::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -180px;
    bottom: -170px;

    border: 60px solid rgba(255,255,255,.035);

    border-radius: 50%;
}


/* =========================================
   COUPON HEADING
========================================= */

.pl-coupon-label {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    align-self: flex-start;

    gap: 9px;

    margin-bottom: 17px;

    color: #bdefff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.pl-coupon-label i {
    color: var(--pl-cyan);
}


.pl-coupon-side > h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 16px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 53px);

    line-height: 1.03;

    letter-spacing: -2px;

    font-weight: 900;
}


.pl-coupon-side > h2 span {
    display: block;
    color: var(--pl-cyan);
}


.pl-coupon-intro {
    position: relative;
    z-index: 2;

    max-width: 430px;

    margin: 0 0 28px;

    color: rgba(255,255,255,.68);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================
   COUPON
========================================= */

.pl-coupon {
    position: relative;
    z-index: 3;

    max-width: 440px;

    padding: 25px 27px;

    background: #ffffff;

    border-radius: 19px;

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.20);
}


/* CUT OUT EFFECT */

.pl-coupon-cut {
    position: absolute;

    width: 28px;
    height: 28px;

    right: -14px;

    border-radius: 50%;

    background: #0d4778;
}


.pl-coupon-cut-top {
    top: -14px;
}


.pl-coupon-cut-bottom {
    bottom: -14px;
}


/* COUPON TOP */

.pl-coupon-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;
}


.pl-coupon-small {
    color: var(--pl-blue);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}


.pl-coupon-icon {
    color: var(--pl-cyan);

    font-size: 15px;
}


/* =========================================
   $25
========================================= */

.pl-coupon-value {
    display: flex;
    align-items: center;

    margin: 3px 0 14px;
}


.pl-dollar {
    align-self: flex-start;

    margin-top: 14px;

    color: var(--pl-cyan);

    font-size: 29px;

    font-weight: 900;
}


.pl-coupon-value > strong {
    color: var(--pl-navy);

    font-size: 91px;

    line-height: .95;

    letter-spacing: -6px;

    font-weight: 900;
}


.pl-coupon-value > div {
    margin-left: 13px;

    display: flex;
    flex-direction: column;
}


.pl-coupon-value > div > span {
    color: var(--pl-cyan);

    font-size: 30px;

    line-height: 1;

    font-weight: 900;
}


.pl-coupon-value > div small {
    margin-top: 5px;

    color: var(--pl-muted);

    font-size: 8px;

    letter-spacing: 1px;

    font-weight: 800;
}


/* DOTTED LINE */

.pl-coupon-rule {
    width: 100%;
    height: 1px;

    margin: 17px 0;

    border-top:
        2px dashed
        #dbe8f0;
}


/* COUPON DESCRIPTION */

.pl-coupon-description {
    color: var(--pl-text);

    font-size: 14px;

    line-height: 1.6;
}


.pl-coupon-description strong {
    color: var(--pl-blue);

    font-weight: 900;
}


/* BRAND */

.pl-coupon-brand {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 18px;

    padding-top: 16px;

    border-top:
        1px solid
        #e9f0f5;
}


.pl-coupon-brand > span {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(46,199,234,.12);

    color: var(--pl-cyan);
}


.pl-coupon-brand small {
    display: block;

    color: var(--pl-muted);

    font-size: 8px;
}


.pl-coupon-brand strong {
    display: block;

    color: var(--pl-navy);

    font-size: 12px;

    font-weight: 900;
}


/* =========================================
   COUPON PHONE
========================================= */

.pl-coupon-phone {
    position: relative;
    z-index: 3;

    max-width: 440px;

    margin-top: 20px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 10px 13px;

    background: var(--pl-cyan);

    border-radius: 55px;

    transition: .3s ease;
}


.pl-coupon-phone:hover {
    background: #ffffff;

    transform: translateY(-2px);
}


.pl-coupon-phone > span {
    width: 45px;
    height: 45px;

    min-width: 45px;

    display: grid;
    place-items: center;

    background: #ffffff;

    color: var(--pl-blue);

    border-radius: 50%;
}


.pl-coupon-phone small {
    display: block;

    color: rgba(255,255,255,.75);

    font-size: 8px;
}


.pl-coupon-phone strong {
    display: block;

    color: #ffffff;

    font-size: 20px;

    line-height: 1.1;

    font-weight: 900;
}


.pl-coupon-phone:hover small {
    color: var(--pl-muted);
}


.pl-coupon-phone:hover strong {
    color: var(--pl-navy);
}


.pl-coupon-arrow {
    margin-left: auto;
    margin-right: 7px;

    color: #ffffff;
}


.pl-coupon-phone:hover .pl-coupon-arrow {
    color: var(--pl-blue);
}


/* LOCATION */

.pl-coupon-location {
    position: relative;
    z-index: 2;

    margin-top: 18px;

    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.60);

    font-size: 10px;
}


.pl-coupon-location i {
    color: var(--pl-cyan);
}


/* =========================================
   FORM SIDE
========================================= */

.pl-form-side {
    height: 100%;

    padding: 65px 60px;

    background: #ffffff;
}


/* FORM HEADING */

.pl-form-label {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 15px;

    color: var(--pl-blue);

    font-size: 10px;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    font-weight: 900;
}


.pl-form-label span {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    background: rgba(46,199,234,.12);

    color: var(--pl-cyan);

    border-radius: 50%;
}


.pl-form-heading h2 {
    max-width: 590px;

    margin: 0 0 15px;

    color: var(--pl-navy);

    font-size: clamp(37px, 3.5vw, 52px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 900;
}


.pl-form-heading h2 span {
    color: var(--pl-blue);
}


.pl-form-heading > p {
    max-width: 590px;

    margin: 0 0 31px;

    color: var(--pl-muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================
   FORM
========================================= */

.pl-service-form fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}


.pl-field label {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 8px;

    color: var(--pl-navy);

    font-size: 10px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .6px;
}


.pl-field label span {
    color: var(--pl-cyan);

    font-size: 9px;
}


/* INPUT WRAPPER */

.pl-input-wrap {
    position: relative;
}


.pl-input-wrap > i {
    position: absolute;

    z-index: 3;

    left: 17px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--pl-cyan);

    font-size: 13px;

    pointer-events: none;
}


.pl-input-wrap .form-control,
.pl-input-wrap .form-select {
    min-height: 57px;

    padding:
        10px
        15px
        10px
        44px;

    border:
        1px solid
        #dde8ef;

    border-radius: 12px;

    background: #f8fbfd;

    color: var(--pl-text);

    font-size: 12px;

    box-shadow: none;

    transition: .25s ease;
}


.pl-input-wrap .form-control:focus,
.pl-input-wrap .form-select:focus {
    background: #ffffff;

    border-color: var(--pl-cyan);

    box-shadow:
        0 0 0 4px
        rgba(46,199,234,.09);
}


/* TEXTAREA */

.pl-textarea-wrap > i {
    top: 20px;

    transform: none;
}


.pl-textarea-wrap textarea.form-control {
    min-height: 125px;

    padding-top: 17px;

    resize: vertical;
}


/* =========================================
   FORM BOTTOM
========================================= */

.pl-form-bottom {
    margin-top: 7px;

    display: flex;
    align-items: center;

    gap: 20px;
}


/* SUBMIT */

.pl-submit-btn {
    min-height: 59px;

    display: inline-flex;
    align-items: center;

    gap: 25px;

    padding:
        7px
        8px
        7px
        22px;

    border: 0;

    border-radius: 50px;

    background: var(--pl-cyan);

    color: #ffffff;

    font-size: 12px;

    font-weight: 900;

    cursor: pointer;

    transition: .3s ease;
}


.pl-submit-btn:hover {
    background: var(--pl-blue);

    transform: translateY(-2px);
}


.pl-submit-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #ffffff;

    color: var(--pl-blue);
}


/* CALL */

.pl-form-call span {
    display: block;

    color: var(--pl-muted);

    font-size: 9px;
}


.pl-form-call a {
    color: var(--pl-navy);

    font-size: 16px;

    font-weight: 900;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pl-contact-offer {
        padding: 85px 0;
    }

    .pl-coupon-side {
        min-height: auto;

        padding:
            60px
            45px;
    }

    .pl-form-side {
        padding:
            60px
            45px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pl-contact-offer {
        padding: 65px 0;
    }

    .pl-contact-wrap {
        border-radius: 22px;
    }


    /* COUPON */

    .pl-coupon-side {
        padding:
            48px
            22px;
    }

    .pl-coupon-side > h2 {
        font-size: 39px;

        letter-spacing: -1.3px;
    }

    .pl-coupon {
        max-width: none;

        width: 100%;
    }

    .pl-coupon-value > strong {
        font-size: 82px;
    }


    /* LARGE MOBILE PHONE */

    .pl-coupon-phone {
        width: 100%;
        max-width: none;

        min-height: 69px;
    }

    .pl-coupon-phone strong {
        font-size: 23px;
    }


    /* FORM */

    .pl-form-side {
        padding:
            50px
            22px;
    }

    .pl-form-heading h2 {
        font-size: 38px;

        letter-spacing: -1.3px;
    }

    .pl-form-bottom {
        flex-direction: column;

        align-items: stretch;
    }

    .pl-submit-btn {
        width: 100%;

        justify-content: space-between;
    }

    .pl-form-call {
        text-align: center;
    }

    .pl-form-call a {
        font-size: 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pl-coupon-side {
        padding:
            43px
            17px;
    }

    .pl-coupon-side > h2 {
        font-size: 35px;
    }

    .pl-coupon {
        padding:
            22px
            20px;
    }

    .pl-coupon-value > strong {
        font-size: 72px;
    }

    .pl-coupon-value > div > span {
        font-size: 26px;
    }

    .pl-coupon-phone strong {
        font-size: 21px;
    }

    .pl-form-side {
        padding:
            45px
            18px;
    }

    .pl-form-heading h2 {
        font-size: 34px;
    }

}



/* =========================================
   BEFORE & AFTER
========================================= */

.pl-before-after {
    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f9fc 100%
        );

    overflow: hidden;
}


/* BACKGROUND SHAPE */

.pl-before-after::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    top: -230px;

    border:
        75px solid
        rgba(46,199,234,.04);

    border-radius: 50%;
}


/* =========================================
   HEADING
========================================= */

.pl-ba-heading {
    max-width: 700px;

    margin:
        0 auto
        45px;

    text-align: center;
}


.pl-ba-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--pl-cyan);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.pl-ba-heading h2 {
    margin: 0 0 10px;

    color: var(--pl-navy);

    font-size:
        clamp(
            42px,
            4vw,
            60px
        );

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 900;
}


.pl-ba-heading p {
    margin: 0;

    color: var(--pl-muted);

    font-size: 14px;
}


/* =========================================
   IMAGE CARD
========================================= */

.pl-ba-card {
    position: relative;

    width: 100%;
    height: 560px;

    overflow: hidden;

    border-radius: 28px;

    background: #e9f2f8;

    box-shadow:
        0 25px 60px
        rgba(8,43,76,.13);
}


.pl-ba-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: .5s ease;
}


.pl-ba-card:hover img {
    transform: scale(1.035);
}


/* DARK GRADIENT FOR BADGE */

.pl-ba-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(4,28,50,.30) 100%
        );

    pointer-events: none;
}


/* =========================================
   BADGES
========================================= */

.pl-ba-badge {
    position: absolute;

    z-index: 3;

    left: 25px;
    bottom: 25px;

    min-width: 110px;

    padding:
        11px
        20px;

    border-radius: 50px;

    text-align: center;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.14);
}


/* BEFORE */

.pl-ba-before {
    background: #ffffff;

    color: var(--pl-navy);
}


/* AFTER */

.pl-ba-after {
    background: var(--pl-cyan);

    color: #ffffff;
}


/* =========================================
   BOTTOM
========================================= */

.pl-ba-bottom {
    margin:
        32px auto
        0;

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

    gap: 11px;
}


.pl-ba-bottom > span {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(46,199,234,.12);

    color: var(--pl-cyan);
}


.pl-ba-bottom strong {
    color: var(--pl-navy);

    font-size: 14px;

    font-weight: 900;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pl-before-after {
        padding: 85px 0;
    }

    .pl-ba-card {
        height: 470px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pl-before-after {
        padding: 70px 0;
    }

    .pl-ba-heading {
        margin-bottom: 32px;
    }

    .pl-ba-heading h2 {
        font-size: 39px;

        letter-spacing: -1.3px;
    }

    .pl-ba-card {
        height: 410px;

        border-radius: 20px;
    }

    .pl-ba-badge {
        left: 18px;
        bottom: 18px;

        min-width: 95px;

        padding:
            9px
            16px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pl-ba-heading h2 {
        font-size: 35px;
    }

    .pl-ba-card {
        height: 350px;
    }

}


/* =========================================
   SCHEDULE + FAQ SECTION
========================================= */

.pl-schedule-faq {
    position: relative;
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 95% 20%,
            rgba(46, 199, 234, .07),
            transparent 20%
        ),
        #f7fbfe;

    overflow: hidden;
}


/* =========================================
   SCHEDULE BOX
========================================= */

.pl-schedule-box {
    position: relative;
    overflow: hidden;

    margin-bottom: 95px;

    padding: 55px 55px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(46, 199, 234, .18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #072945 0%,
            #0b3963 55%,
            #10598f 100%
        );

    box-shadow:
        0 28px 65px
        rgba(8, 43, 76, .16);
}


/* BACK CIRCLE */

.pl-schedule-box::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -190px;
    top: -190px;

    border:
        55px solid
        rgba(255,255,255,.035);

    border-radius: 50%;
}


/* =========================================
   LARGE ICON
========================================= */

.pl-schedule-main-icon {
    position: relative;
    z-index: 2;

    width: 110px;
    height: 110px;

    display: grid;
    place-items: center;

    border-radius:
        35px
        35px
        35px
        8px;

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

    border:
        1px solid
        rgba(255,255,255,.10);

    color: var(--pl-cyan);

    font-size: 37px;

    box-shadow:
        inset 0 0 30px
        rgba(46,199,234,.06);
}


/* =========================================
   CONTENT
========================================= */

.pl-schedule-content {
    position: relative;
    z-index: 2;
}


.pl-schedule-label {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 12px;

    color: #b9effc;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.pl-schedule-label i {
    color: var(--pl-cyan);
}


.pl-schedule-content h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size:
        clamp(
            36px,
            3.5vw,
            52px
        );

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 900;
}


.pl-schedule-content p {
    max-width: 680px;

    margin: 0 0 13px;

    color:
        rgba(255,255,255,.68);

    font-size: 13px;

    line-height: 1.8;
}


.pl-schedule-content p:last-child {
    margin-bottom: 0;
}


.pl-schedule-content strong {
    color: #ffffff;

    font-weight: 900;
}


/* =========================================
   PHONE SIDE
========================================= */

.pl-schedule-action {
    position: relative;
    z-index: 3;

    padding-left: 25px;

    border-left:
        1px solid
        rgba(255,255,255,.12);
}


.pl-schedule-action-label {
    display: block;

    margin-bottom: 11px;

    color:
        rgba(255,255,255,.55);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* PHONE */

.pl-schedule-phone {
    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        8px
        14px
        8px
        8px;

    background: #ffffff;

    border-radius: 50px;

    transition: .3s ease;
}


.pl-schedule-phone:hover {
    background: var(--pl-cyan);

    transform: translateY(-2px);
}


.pl-schedule-phone > span {
    width: 44px;
    height: 44px;

    min-width: 44px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pl-cyan);

    color: #ffffff;
}


.pl-schedule-phone strong {
    color: var(--pl-navy);

    font-size: 17px;

    font-weight: 900;

    white-space: nowrap;
}


.pl-schedule-phone:hover strong {
    color: #ffffff;
}


.pl-schedule-phone:hover > span {
    background: #ffffff;

    color: var(--pl-blue);
}


.pl-schedule-action > small {
    display: block;

    margin-top: 9px;

    color:
        rgba(255,255,255,.48);

    font-size: 9px;
}


/* =========================================
   DOTS
========================================= */

.pl-schedule-dots {
    position: absolute;

    left: 32%;
    top: 20px;

    width: 90px;
    height: 90px;

    opacity: .3;

    background-image:
        radial-gradient(
            rgba(46,199,234,.7) 2px,
            transparent 2px
        );

    background-size: 13px 13px;
}


/* =========================================
   FAQ HEADING
========================================= */

.pl-faq-heading {
    max-width: 1100px;

    margin:
        0 auto
        38px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}


.pl-faq-label {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 12px;

    color: var(--pl-blue);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.pl-faq-label i {
    color: var(--pl-cyan);
}


.pl-faq-heading h2 {
    max-width: 670px;

    margin: 0;

    color: var(--pl-navy);

    font-size:
        clamp(
            42px,
            4vw,
            60px
        );

    line-height: 1.03;

    letter-spacing: -2.3px;

    font-weight: 900;
}


/* FAQ DECORATION */

.pl-faq-heading-icon {
    width: 82px;
    height: 82px;

    display: grid;
    place-items: center;

    border-radius:
        50%
        50%
        50%
        15px;

    background: var(--pl-cyan);

    color: #ffffff;

    transform: rotate(-8deg);

    box-shadow:
        0 15px 35px
        rgba(46,199,234,.22);
}


.pl-faq-heading-icon span {
    font-size: 17px;

    font-weight: 900;

    transform: rotate(8deg);
}


/* =========================================
   ACCORDION
========================================= */

.pl-faq-accordion {
    max-width: 1100px;

    margin: 0 auto;
}


.pl-faq-item {
    overflow: hidden;

    margin-bottom: 13px;

    border:
        1px solid
        rgba(8,43,76,.08) !important;

    border-radius: 16px !important;

    background: #ffffff;

    box-shadow:
        0 9px 30px
        rgba(8,43,76,.045);
}


/* BUTTON */

.pl-faq-item .accordion-button {
    min-height: 78px;

    display: flex;
    align-items: center;

    gap: 17px;

    padding:
        15px
        22px;

    background: #ffffff;

    color: var(--pl-navy);

    border: 0;

    box-shadow: none;

    font-size: 15px;

    font-weight: 900;
}


.pl-faq-item .accordion-button:not(.collapsed) {
    background:
        linear-gradient(
            90deg,
            rgba(46,199,234,.08),
            #ffffff
        );

    color: var(--pl-blue);

    box-shadow: none;
}


/* NUMBER */

.pl-faq-number {
    width: 44px;
    height: 44px;

    min-width: 44px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        rgba(46,199,234,.11);

    color: var(--pl-cyan);

    font-size: 11px;

    font-weight: 900;

    transition: .3s ease;
}


.pl-faq-item
.accordion-button:not(.collapsed)
.pl-faq-number {
    background: var(--pl-cyan);

    color: #ffffff;
}


/* QUESTION */

.pl-faq-question {
    flex: 1;
}


/* BOOTSTRAP ARROW */

.pl-faq-item .accordion-button::after {
    width: 38px;
    height: 38px;

    margin-left: auto;

    background-image: none;

    display: grid;
    place-items: center;

    content: "+";

    border-radius: 50%;

    background-color:
        rgba(46,199,234,.10);

    color: var(--pl-blue);

    font-size: 21px;

    font-weight: 400;

    line-height: 38px;

    text-align: center;

    transform: none;
}


.pl-faq-item
.accordion-button:not(.collapsed)::after {
    content: "−";

    background-color: var(--pl-cyan);

    color: #ffffff;

    transform: none;
}


/* =========================================
   FAQ ANSWER
========================================= */

.pl-faq-item .accordion-body {
    padding:
        0
        85px
        25px;
}


.pl-faq-item .accordion-body p {
    max-width: 850px;

    margin: 0;

    padding-top: 17px;

    border-top:
        1px solid
        #e9f0f5;

    color: var(--pl-muted);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pl-schedule-faq {
        padding: 85px 0;
    }


    .pl-schedule-box {
        padding:
            45px
            40px;

        margin-bottom: 75px;
    }


    .pl-schedule-main-icon {
        width: 85px;
        height: 85px;

        font-size: 28px;
    }


    .pl-schedule-action {
        padding:
            25px
            0
            0;

        margin-top: 10px;

        border-left: 0;

        border-top:
            1px solid
            rgba(255,255,255,.12);
    }


    .pl-schedule-phone {
        max-width: 300px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pl-schedule-faq {
        padding: 70px 0;
    }


    /* SCHEDULE */

    .pl-schedule-box {
        padding:
            35px
            22px;

        margin-bottom: 65px;

        border-radius: 21px;
    }


    .pl-schedule-main-icon {
        width: 65px;
        height: 65px;

        border-radius:
            20px
            20px
            20px
            7px;

        font-size: 22px;
    }


    .pl-schedule-content h2 {
        font-size: 37px;

        letter-spacing: -1.3px;
    }


    .pl-schedule-content p {
        font-size: 13px;
    }


    /* BIG PHONE ON MOBILE */

    .pl-schedule-phone {
        width: 100%;
        max-width: none;

        min-height: 67px;

        padding: 9px;
    }


    .pl-schedule-phone > span {
        width: 49px;
        height: 49px;

        min-width: 49px;
    }


    .pl-schedule-phone strong {
        font-size: 22px;
    }


    /* FAQ HEADING */

    .pl-faq-heading {
        align-items: center;

        margin-bottom: 30px;
    }


    .pl-faq-heading h2 {
        font-size: 39px;

        letter-spacing: -1.4px;
    }


    .pl-faq-heading-icon {
        display: none;
    }


    /* FAQ */

    .pl-faq-item .accordion-button {
        min-height: 72px;

        gap: 12px;

        padding:
            13px
            15px;

        font-size: 14px;

        line-height: 1.4;
    }


    .pl-faq-number {
        width: 39px;
        height: 39px;

        min-width: 39px;

        border-radius: 11px;
    }


    .pl-faq-item .accordion-button::after {
        width: 32px;
        height: 32px;

        min-width: 32px;

        line-height: 32px;

        font-size: 18px;
    }


    .pl-faq-item .accordion-body {
        padding:
            0
            20px
            21px
            66px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pl-schedule-box {
        padding:
            32px
            17px;
    }


    .pl-schedule-content h2 {
        font-size: 34px;
    }


    .pl-schedule-phone strong {
        font-size: 20px;
    }


    .pl-faq-heading h2 {
        font-size: 35px;
    }


    .pl-faq-item .accordion-button {
        padding:
            12px
            12px;

        font-size: 13px;
    }


    .pl-faq-number {
        width: 35px;
        height: 35px;

        min-width: 35px;
    }


    .pl-faq-item .accordion-body {
        padding:
            0
            15px
            20px
            59px;
    }

}



/* =========================================
   PROCESS SECTION
========================================= */

.pl-process-section {
    position: relative;

    padding: 110px 0;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(46, 199, 234, .08),
            transparent 20%
        ),
        linear-gradient(
            180deg,
            #f7fbfe 0%,
            #ffffff 100%
        );

    overflow: hidden;
}


/* BACKGROUND CIRCLE */

.pl-process-section::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -250px;
    bottom: -260px;

    border:
        75px solid
        rgba(36, 111, 189, .035);

    border-radius: 50%;
}


/* =========================================
   HEADING
========================================= */

.pl-process-heading {
    max-width: 700px;

    margin:
        0 auto
        65px;

    text-align: center;
}


.pl-process-label {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 12px;

    color: var(--pl-blue);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.pl-process-label i {
    color: var(--pl-cyan);
}


.pl-process-heading h2 {
    margin: 0 0 12px;

    color: var(--pl-navy);

    font-size:
        clamp(
            43px,
            4.5vw,
            62px
        );

    line-height: 1.03;

    letter-spacing: -2.4px;

    font-weight: 900;
}


.pl-process-heading p {
    margin: 0;

    color: var(--pl-muted);

    font-size: 14px;
}


/* =========================================
   PROCESS WRAPPER
========================================= */

.pl-process-wrap {
    position: relative;

    max-width: 1250px;

    margin: 0 auto;

    padding:
        25px
        20px
        75px;
}


/* =========================================
   PIPE LINE
========================================= */

.pl-process-pipe {
    position: absolute;

    z-index: 0;

    left: 9%;
    right: 9%;

    top: 109px;

    height: 13px;

    background:
        linear-gradient(
            180deg,
            #dcebf3 0%,
            #bcd7e5 45%,
            #92b9cd 50%,
            #d9eaf2 100%
        );

    border:
        1px solid
        rgba(8, 43, 76, .09);

    border-radius: 20px;

    box-shadow:
        inset 0 2px 3px
        rgba(255,255,255,.8),
        0 5px 13px
        rgba(8,43,76,.08);
}


/* CYAN WATER INSIDE PIPE */

.pl-process-pipe::before {
    content: "";

    position: absolute;

    left: 4px;
    top: 4px;

    width: 78%;
    height: 3px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--pl-cyan),
            #80def3
        );

    opacity: .75;
}


/* PIPE START */

.pl-pipe-start {
    position: absolute;

    left: -9px;
    top: 50%;

    width: 22px;
    height: 29px;

    transform:
        translateY(-50%);

    border-radius: 5px;

    background: #b8d1de;

    border:
        1px solid
        rgba(8,43,76,.10);

    box-shadow:
        inset 3px 0
        rgba(255,255,255,.45);
}


/* PIPE END */

.pl-pipe-end {
    position: absolute;

    right: -20px;
    top: 50%;

    width: 39px;
    height: 39px;

    transform:
        translateY(-50%);

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pl-cyan);

    color: #ffffff;

    border:
        5px solid #ffffff;

    box-shadow:
        0 8px 20px
        rgba(46,199,234,.28);

    font-size: 11px;
}


/* =========================================
   PIPE ARROWS
========================================= */

.pl-pipe-arrow {
    position: absolute;

    top: 50%;

    width: 26px;
    height: 26px;

    display: grid;
    place-items: center;

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

    border-radius: 50%;

    background: #ffffff;

    color: var(--pl-cyan);

    border:
        1px solid
        #d8e8f0;

    font-size: 8px;

    box-shadow:
        0 5px 13px
        rgba(8,43,76,.10);
}


.pl-pipe-arrow.arrow-1 {
    left: 25%;
}


.pl-pipe-arrow.arrow-2 {
    left: 50%;
}


.pl-pipe-arrow.arrow-3 {
    left: 75%;
}


/* =========================================
   PROCESS ROW
========================================= */

.pl-process-row {
    position: relative;

    z-index: 2;
}


/* =========================================
   PROCESS ITEM
========================================= */

.pl-process-item {
    position: relative;

    min-height: 305px;

    text-align: center;
}


/* LARGE BACKGROUND NUMBER */

.pl-process-number {
    position: absolute;

    z-index: -1;

    top: -15px;
    left: 50%;

    transform:
        translateX(-50%);

    color:
        rgba(8, 43, 76, .045);

    font-size: 95px;

    line-height: 1;

    letter-spacing: -7px;

    font-weight: 900;
}


/* =========================================
   PROCESS ICON
========================================= */

.pl-process-icon {
    position: relative;

    width: 115px;
    height: 115px;

    margin:
        28px
        auto
        29px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #ffffff;

    border:
        2px solid
        #dbeaf2;

    box-shadow:
        0 15px 35px
        rgba(8,43,76,.10);

    transition: .35s ease;
}


/* OUTER RING */

.pl-process-icon::before {
    content: "";

    position: absolute;

    inset: 9px;

    border:
        1px dashed
        rgba(46,199,234,.35);

    border-radius: 50%;
}


/* PIPE CONNECTOR */

.pl-process-icon::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -19px;

    width: 9px;
    height: 20px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            #c7dce7,
            #edf5f8,
            #aac9d8
        );

    border-radius: 2px;
}


/* INNER ICON */

.pl-process-icon > span {
    position: relative;

    z-index: 3;

    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    border-radius:
        50%
        50%
        50%
        16px;

    background:
        linear-gradient(
            145deg,
            var(--pl-blue),
            var(--pl-navy)
        );

    color: #ffffff;

    font-size: 24px;

    transform: rotate(-5deg);

    box-shadow:
        0 10px 25px
        rgba(8,43,76,.18);

    transition: .35s ease;
}


.pl-process-icon > span i {
    transform: rotate(5deg);
}


/* LAST ICON */

.pl-process-icon-last > span {
    background:
        linear-gradient(
            145deg,
            var(--pl-cyan),
            #1baed0
        );
}


/* HOVER */

.pl-process-item:hover
.pl-process-icon {
    transform: translateY(-7px);

    border-color:
        rgba(46,199,234,.55);
}


.pl-process-item:hover
.pl-process-icon > span {
    background: var(--pl-cyan);
}


/* =========================================
   PROCESS TEXT
========================================= */

.pl-process-content {
    max-width: 230px;

    margin: 0 auto;
}


.pl-process-content small {
    display: block;

    margin-bottom: 5px;

    color: var(--pl-cyan);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.pl-process-content h3 {
    margin: 0 0 9px;

    color: var(--pl-navy);

    font-size: 25px;

    line-height: 1.1;

    font-weight: 900;
}


.pl-process-content p {
    margin: 0;

    color: var(--pl-muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================
   FINAL RESULT
========================================= */

.pl-process-result {
    position: absolute;

    left: 50%;
    bottom: 0;

    transform:
        translateX(-50%);

    min-width: 270px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding:
        9px
        18px
        9px
        9px;

    background:
        linear-gradient(
            135deg,
            var(--pl-navy),
            #0d4778
        );

    border-radius: 50px;

    box-shadow:
        0 14px 35px
        rgba(8,43,76,.17);
}


.pl-process-result-icon {
    width: 45px;
    height: 45px;

    min-width: 45px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pl-cyan);

    color: #ffffff;
}


.pl-process-result small {
    display: block;

    margin-bottom: 1px;

    color:
        rgba(255,255,255,.50);

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.pl-process-result strong {
    display: block;

    color: #ffffff;

    font-size: 12px;

    font-weight: 900;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pl-process-section {
        padding: 85px 0;
    }


    .pl-process-wrap {
        max-width: 700px;

        padding-left: 0;
        padding-right: 0;
    }


    /* HIDE HORIZONTAL PIPE */

    .pl-process-pipe {
        display: none;
    }


    .pl-process-item {
        min-height: 290px;
    }


    .pl-process-icon::after {
        display: none;
    }

}


/* =========================================
   MOBILE - VERTICAL PIPE
========================================= */

@media (max-width: 767px) {

    .pl-process-section {
        padding: 70px 0;
    }


    .pl-process-heading {
        margin-bottom: 45px;
    }


    .pl-process-heading h2 {
        font-size: 39px;

        letter-spacing: -1.4px;
    }


    /* WRAPPER */

    .pl-process-wrap {
        max-width: 500px;

        padding:
            0
            0
            75px;
    }


    /* VERTICAL PIPE */

    .pl-process-wrap::before {
        content: "";

        position: absolute;

        z-index: 0;

        left: 52px;
        top: 55px;
        bottom: 100px;

        width: 10px;

        border-radius: 20px;

        background:
            linear-gradient(
                90deg,
                #bad4e1,
                #edf5f8,
                #a9c8d8
            );

        border:
            1px solid
            rgba(8,43,76,.08);
    }


    .pl-process-wrap::after {
        content: "";

        position: absolute;

        z-index: 1;

        left: 55px;
        top: 65px;

        width: 3px;
        height: 72%;

        border-radius: 10px;

        background: var(--pl-cyan);

        opacity: .7;
    }


    /* ITEM */

    .pl-process-item {
        min-height: auto;

        display: grid;

        grid-template-columns:
            105px 1fr;

        align-items: center;

        margin-bottom: 25px;

        text-align: left;
    }


    /* NUMBER */

    .pl-process-number {
        top: -5px;
        left: 85px;

        transform: none;

        font-size: 65px;

        letter-spacing: -4px;
    }


    /* ICON */

    .pl-process-icon {
        z-index: 3;

        width: 85px;
        height: 85px;

        margin: 0;
    }


    .pl-process-icon > span {
        width: 57px;
        height: 57px;

        font-size: 19px;
    }


    .pl-process-icon::before {
        inset: 7px;
    }


    /* TEXT */

    .pl-process-content {
        max-width: none;

        margin: 0;

        padding-left: 10px;
    }


    .pl-process-content h3 {
        font-size: 23px;
    }


    .pl-process-content p {
        max-width: 300px;

        font-size: 12px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pl-process-heading h2 {
        font-size: 35px;
    }


    .pl-process-wrap::before {
        left: 42px;
    }


    .pl-process-wrap::after {
        left: 45px;
    }


    .pl-process-item {
        grid-template-columns:
            85px 1fr;
    }


    .pl-process-icon {
        width: 72px;
        height: 72px;
    }


    .pl-process-icon > span {
        width: 48px;
        height: 48px;

        font-size: 16px;
    }


    .pl-process-number {
        left: 65px;

        font-size: 55px;
    }


    .pl-process-content {
        padding-left: 8px;
    }


    .pl-process-content h3 {
        font-size: 21px;
    }


    .pl-process-result {
        min-width: 250px;
    }

}


/* =========================================
   LOCATION SECTION
========================================= */

.pl-location-section {
    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f9fc 100%
        );

    overflow: hidden;
}


.pl-location-wrap {
    position: relative;

    padding: 70px 65px;

    overflow: hidden;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(46,199,234,.15),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #072945 0%,
            #0b3963 55%,
            #10598f 100%
        );

    box-shadow:
        0 30px 70px
        rgba(8,43,76,.16);
}


/* BACK CIRCLE */

.pl-location-wrap::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -220px;
    bottom: -230px;

    border:
        70px solid
        rgba(255,255,255,.03);

    border-radius: 50%;
}


/* =========================================
   LEFT CONTENT
========================================= */

.pl-location-content {
    position: relative;
    z-index: 3;
}


/* LABEL */

.pl-location-label {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #bcefff;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.pl-location-label > span {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(46,199,234,.15);

    color: var(--pl-cyan);
}


/* TITLE */

.pl-location-content h2 {
    max-width: 600px;

    margin: 0 0 20px;

    color: #ffffff;

    font-size:
        clamp(
            42px,
            4.5vw,
            62px
        );

    line-height: 1.03;

    letter-spacing: -2.4px;

    font-weight: 900;
}


.pl-location-content h2 span {
    display: block;

    color: var(--pl-cyan);
}


/* PARAGRAPH */

.pl-location-content > p {
    max-width: 580px;

    margin-bottom: 28px;

    color:
        rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================
   ADDRESS
========================================= */

.pl-location-address {
    max-width: 480px;

    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 16px;

    padding: 15px 18px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 18px;

    background:
        rgba(255,255,255,.07);
}


.pl-location-address-icon {
    width: 52px;
    height: 52px;

    min-width: 52px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: var(--pl-cyan);

    color: #ffffff;

    font-size: 18px;
}


.pl-location-address small {
    display: block;

    margin-bottom: 2px;

    color:
        rgba(255,255,255,.45);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.pl-location-address strong {
    display: block;

    color: #ffffff;

    font-size: 16px;

    font-weight: 900;
}


.pl-location-address div > span {
    display: block;

    margin-top: 2px;

    color: #bdefff;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================
   PHONE
========================================= */

.pl-location-phone {
    max-width: 480px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding:
        10px
        14px
        10px
        10px;

    background: #ffffff;

    border-radius: 60px;

    box-shadow:
        0 17px 40px
        rgba(0,0,0,.16);

    transition: .3s ease;
}


.pl-location-phone:hover {
    background: var(--pl-cyan);

    transform: translateY(-3px);
}


.pl-location-phone > span {
    width: 50px;
    height: 50px;

    min-width: 50px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pl-cyan);

    color: #ffffff;

    font-size: 17px;
}


.pl-location-phone small {
    display: block;

    color: var(--pl-muted);

    font-size: 9px;
}


.pl-location-phone strong {
    display: block;

    color: var(--pl-navy);

    font-size: 22px;

    line-height: 1.1;

    font-weight: 900;
}


.pl-location-phone:hover small,
.pl-location-phone:hover strong {
    color: #ffffff;
}


.pl-location-phone:hover > span {
    background: #ffffff;

    color: var(--pl-blue);
}


.pl-location-arrow {
    margin-left: auto;

    color: var(--pl-blue);
}


.pl-location-phone:hover
.pl-location-arrow {
    color: #ffffff;
}


/* =========================================
   ZIP AREA
========================================= */

.pl-zip-area {
    position: relative;

    z-index: 3;

    padding: 34px;

    border-radius: 24px;

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

    box-shadow:
        0 22px 55px
        rgba(0,0,0,.18);
}


/* ZIP HEADING */

.pl-zip-heading {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 25px;
}


.pl-zip-heading-icon {
    width: 51px;
    height: 51px;

    min-width: 51px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background:
        rgba(46,199,234,.12);

    color: var(--pl-cyan);

    font-size: 17px;
}


.pl-zip-heading small {
    display: block;

    margin-bottom: 2px;

    color: var(--pl-muted);

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.pl-zip-heading h3 {
    margin: 0;

    color: var(--pl-navy);

    font-size: 25px;

    font-weight: 900;
}


/* =========================================
   ZIP GRID
========================================= */

.pl-zip-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}


.pl-zip-item {
    min-height: 90px;

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

    padding: 14px;

    border:
        1px solid
        #e2edf4;

    border-radius: 15px;

    background: #f8fbfd;

    transition: .3s ease;
}


.pl-zip-item:hover {
    transform: translateY(-3px);

    border-color:
        rgba(46,199,234,.45);

    box-shadow:
        0 10px 25px
        rgba(8,43,76,.08);
}


.pl-zip-item span {
    margin-bottom: 3px;

    color: var(--pl-muted);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


.pl-zip-item strong {
    color: var(--pl-navy);

    font-size: 24px;

    line-height: 1;

    font-weight: 900;
}


/* MAIN ZIP */

.pl-zip-main {
    background:
        linear-gradient(
            145deg,
            var(--pl-blue),
            var(--pl-navy)
        );

    border-color: transparent;
}


.pl-zip-main span {
    color: #aeefff;
}


.pl-zip-main span i {
    margin-right: 4px;

    color: var(--pl-cyan);
}


.pl-zip-main strong {
    color: #ffffff;
}


/* =========================================
   NEIGHBORHOODS
========================================= */

.pl-location-neighborhoods {
    margin-top: 25px;

    padding-top: 22px;

    border-top:
        1px solid
        #e5edf3;
}


.pl-neighborhood-title {
    display: block;

    margin-bottom: 13px;

    color: var(--pl-navy);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.pl-neighborhood-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px 15px;
}


.pl-neighborhood-list span {
    display: flex;
    align-items: center;

    gap: 7px;

    color: var(--pl-muted);

    font-size: 11px;

    font-weight: 700;
}


.pl-neighborhood-list i {
    color: var(--pl-cyan);

    font-size: 10px;
}


/* =========================================
   DOTS
========================================= */

.pl-location-dots {
    position: absolute;

    top: 30px;
    right: 48%;

    width: 95px;
    height: 95px;

    opacity: .3;

    background-image:
        radial-gradient(
            rgba(46,199,234,.75) 2px,
            transparent 2px
        );

    background-size: 13px 13px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pl-location-section {
        padding: 85px 0;
    }


    .pl-location-wrap {
        padding:
            55px
            40px;
    }


    .pl-zip-area {
        margin-top: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pl-location-section {
        padding: 70px 0;
    }


    .pl-location-wrap {
        padding:
            45px
            22px;

        border-radius: 22px;
    }


    .pl-location-content h2 {
        font-size: 39px;

        letter-spacing: -1.4px;
    }


    .pl-location-content > p {
        font-size: 14px;
    }


    /* ADDRESS */

    .pl-location-address {
        width: 100%;
    }


    /* LARGE MOBILE PHONE */

    .pl-location-phone {
        width: 100%;
        max-width: none;

        min-height: 69px;
    }


    .pl-location-phone strong {
        font-size: 23px;
    }


    /* ZIP */

    .pl-zip-area {
        padding:
            27px
            20px;

        border-radius: 20px;
    }


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


    .pl-zip-item {
        min-height: 82px;
    }


    .pl-zip-item strong {
        font-size: 22px;
    }


    .pl-neighborhood-list {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pl-location-wrap {
        padding:
            40px
            17px;
    }


    .pl-location-content h2 {
        font-size: 35px;
    }


    .pl-location-address {
        padding:
            13px
            12px;
    }


    .pl-location-address strong {
        font-size: 14px;
    }


    .pl-location-phone strong {
        font-size: 20px;
    }


    .pl-zip-area {
        padding:
            23px
            15px;
    }


    .pl-zip-heading h3 {
        font-size: 22px;
    }

}





/* =========================================
   FOOTER
========================================= */

.pl-footer {
    position: relative;

    padding-top: 85px;

    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(46,199,234,.10),
            transparent 23%
        ),
        linear-gradient(
            135deg,
            #061f36 0%,
            #082b4c 45%,
            #0a3e68 100%
        );

    color: #ffffff;

    overflow: hidden;
}


/* DECORATIVE CIRCLE */

.pl-footer::before {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -260px;
    bottom: -260px;

    border:
        80px solid
        rgba(255,255,255,.025);

    border-radius: 50%;
}


/* =========================================
   MAIN WRAPPER
========================================= */

.pl-footer-wrap {
    position: relative;
    z-index: 2;

    padding-bottom: 55px;
}


/* =========================================
   LOGO
========================================= */

.pl-footer-logo {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: #ffffff;

    font-size: 22px;

    font-weight: 900;
}


.pl-footer-logo:hover {
    color: #ffffff;
}


.pl-footer-logo-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pl-cyan);

    color: #ffffff;

    font-size: 18px;

    box-shadow:
        0 12px 28px
        rgba(46,199,234,.18);
}


.pl-footer-logo > span:last-child {
    display: flex;
    flex-direction: column;

    line-height: 1;
}


.pl-footer-logo strong {
    margin-top: 3px;

    color: var(--pl-cyan);
}


/* DESCRIPTION */

.pl-footer-brand > p {
    max-width: 390px;

    margin-bottom: 22px;

    color:
        rgba(255,255,255,.60);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   PHONE
========================================= */

.pl-footer-phone {
    max-width: 340px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding:
        9px
        15px
        9px
        9px;

    margin-bottom: 15px;

    border-radius: 60px;

    background: #ffffff;

    transition: .3s ease;
}


.pl-footer-phone:hover {
    background: var(--pl-cyan);

    transform: translateY(-2px);
}


.pl-footer-phone > span {
    width: 46px;
    height: 46px;

    min-width: 46px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pl-cyan);

    color: #ffffff;
}


.pl-footer-phone small {
    display: block;

    color: var(--pl-muted);

    font-size: 8px;
}


.pl-footer-phone strong {
    display: block;

    color: var(--pl-navy);

    font-size: 20px;

    line-height: 1.1;

    font-weight: 900;
}


.pl-footer-phone:hover small,
.pl-footer-phone:hover strong {
    color: #ffffff;
}


.pl-footer-phone:hover > span {
    background: #ffffff;

    color: var(--pl-blue);
}


/* WEBSITE */

.pl-footer-website {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color:
        rgba(255,255,255,.68);

    font-size: 11px;

    transition: .25s ease;
}


.pl-footer-website i {
    color: var(--pl-cyan);
}


.pl-footer-website:hover {
    color: #ffffff;
}


/* =========================================
   COLUMN HEADING
========================================= */

.pl-footer-heading {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 24px;
}


.pl-footer-heading > span {
    width: 28px;
    height: 3px;

    border-radius: 10px;

    background: var(--pl-cyan);
}


.pl-footer-heading h3 {
    margin: 0;

    color: #ffffff;

    font-size: 15px;

    font-weight: 900;
}


/* =========================================
   FOOTER LINKS
========================================= */

.pl-footer-links {
    padding: 0;
    margin: 0;

    list-style: none;
}


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


.pl-footer-links a {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    color:
        rgba(255,255,255,.62);

    font-size: 11px;

    line-height: 1.5;

    transition: .25s ease;
}


.pl-footer-links a i {
    margin-top: 3px;

    color: var(--pl-cyan);

    font-size: 9px;

    transition: .25s ease;
}


.pl-footer-links a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


/* =========================================
   CONTACT INFO
========================================= */

.pl-footer-contact {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    margin-bottom: 20px;
}


.pl-footer-contact-icon {
    width: 39px;
    height: 39px;

    min-width: 39px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background:
        rgba(46,199,234,.11);

    border:
        1px solid
        rgba(46,199,234,.13);

    color: var(--pl-cyan);

    font-size: 13px;
}


.pl-footer-contact small {
    display: block;

    margin-bottom: 3px;

    color:
        rgba(255,255,255,.40);

    font-size: 8px;

    letter-spacing: .6px;

    text-transform: uppercase;
}


.pl-footer-contact strong {
    display: block;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;
}


.pl-footer-contact p {
    margin:
        2px
        0
        0;

    color:
        rgba(255,255,255,.60);

    font-size: 10px;
}


.pl-footer-weekend {
    margin-top: 9px;
}


/* =========================================
   QUICK LINKS BAR
========================================= */

.pl-footer-quick {
    position: relative;

    margin-top: 50px;

    min-height: 72px;

    display: flex;
    align-items: center;

    gap: 24px;

    padding:
        13px
        16px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 18px;

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

    backdrop-filter: blur(5px);
}


/* TITLE */

.pl-footer-quick-title {
    display: flex;
    align-items: center;

    gap: 10px;

    padding-right: 22px;

    border-right:
        1px solid
        rgba(255,255,255,.10);

    white-space: nowrap;
}


.pl-footer-quick-title span {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--pl-cyan);

    color: #ffffff;

    font-size: 12px;
}


.pl-footer-quick-title strong {
    color: #ffffff;

    font-size: 11px;

    font-weight: 900;
}


/* QUICK LINKS */

.pl-footer-quick-links {
    flex: 1;

    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px 20px;
}


.pl-footer-quick-links a {
    color:
        rgba(255,255,255,.64);

    font-size: 10px;

    font-weight: 700;

    transition: .25s ease;
}


.pl-footer-quick-links a:hover {
    color: var(--pl-cyan);
}


/* MINI CALL */

.pl-footer-mini-call {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding:
        10px
        15px;

    background: var(--pl-cyan);

    color: #ffffff;

    border-radius: 40px;

    font-size: 12px;

    font-weight: 900;

    white-space: nowrap;

    transition: .3s ease;
}


.pl-footer-mini-call:hover {
    background: #ffffff;

    color: var(--pl-navy);
}


/* =========================================
   BOTTOM BAR
========================================= */

.pl-footer-bottom {
    position: relative;
    z-index: 2;

    padding: 18px 0;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    background:
        rgba(0,0,0,.12);
}


.pl-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.pl-footer-bottom p {
    margin: 0;

    color:
        rgba(255,255,255,.45);

    font-size: 9px;
}


.pl-footer-bottom-inner > div {
    display: flex;
    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,.45);

    font-size: 9px;
}


.pl-footer-bottom-inner i {
    color: var(--pl-cyan);

    font-size: 7px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .pl-footer {
        padding-top: 70px;
    }


    .pl-footer-quick {
        flex-wrap: wrap;
    }


    .pl-footer-quick-title {
        border-right: 0;

        padding-right: 0;
    }


    .pl-footer-quick-links {
        order: 3;

        flex-basis: 100%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .pl-footer {
        padding-top: 60px;
    }


    /* PHONE */

    .pl-footer-phone {
        width: 100%;
        max-width: none;

        min-height: 66px;
    }


    .pl-footer-phone strong {
        font-size: 22px;
    }


    /* QUICK BAR */

    .pl-footer-quick {
        margin-top: 35px;

        flex-direction: column;

        align-items: stretch;

        gap: 15px;

        padding: 17px;
    }


    .pl-footer-quick-title {
        padding-bottom: 13px;

        border-bottom:
            1px solid
            rgba(255,255,255,.08);
    }


    .pl-footer-quick-links {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }


    .pl-footer-mini-call {
        width: 100%;

        min-height: 50px;

        justify-content: center;

        font-size: 17px;
    }


    /* BOTTOM */

    .pl-footer-bottom-inner {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 7px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .pl-footer-logo {
        font-size: 20px;
    }


    .pl-footer-phone strong {
        font-size: 20px;
    }


    .pl-footer-quick-links {
        grid-template-columns: 1fr;
    }

}


/* =========================================
   GALLERY
========================================= */

.pl-gallery-section {
    padding: 100px 0;

    background: #ffffff;
}


/* HEADING */

.pl-gallery-heading {
    max-width: 680px;

    margin:
        0 auto
        40px;

    text-align: center;
}


.pl-gallery-heading > span {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--pl-cyan);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.pl-gallery-heading h2 {
    margin: 0 0 10px;

    color: var(--pl-navy);

    font-size: clamp(40px, 4vw, 56px);

    line-height: 1.05;

    letter-spacing: -2px;

    font-weight: 900;
}


.pl-gallery-heading p {
    margin: 0;

    color: var(--pl-muted);

    font-size: 14px;
}


/* IMAGE */

.pl-gallery-item {
    position: relative;

    width: 100%;
    height: 330px;

    overflow: hidden;

    border-radius: 18px;

    background: #edf4f8;

    box-shadow:
        0 15px 35px
        rgba(8,43,76,.08);
}


.pl-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: .4s ease;
}


.pl-gallery-item:hover img {
    transform: scale(1.045);
}


/* MOBILE */

@media (max-width: 767px) {

    .pl-gallery-section {
        padding: 70px 0;
    }


    .pl-gallery-heading {
        margin-bottom: 30px;
    }


    .pl-gallery-heading h2 {
        font-size: 38px;
    }


    .pl-gallery-item {
        height: 290px;
    }

}


@media (max-width: 480px) {

    .pl-gallery-heading h2 {
        font-size: 34px;
    }


    .pl-gallery-item {
        height: 250px;
    }

}


   /* RESET */
*, *::before, *::after {
    box-sizing: border-box;
}

/* FORM WRAPPER */
form.CUS {
    max-width: 900px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
}

/* FLEX FIELDSET */
form.CUS fieldset {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    margin: 0;
}

/* BASE BLOCK STYLE */
form.CUS fieldset > p {
    width: 100%;
    padding: 10px;
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

/* Universal input/select styling */
form.CUS input,
form.CUS select,
form.CUS textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 33.333%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 33.333%;
}

/* ===============================
   SERVICE NEEDED TEXTAREA
=============================== */
form.CUS fieldset > p:nth-of-type(7) {
    width: 100%;
}

/* ===============================
   SERVICE DATE (Month, Day, Year)
   ÃƒÂ¢Ã¢â‚¬ Ã¢â‚¬â„¢ ALL 3 IN ONE ROW
=============================== */

/* Make the 8th <p> (Service Date block) a flex row */
form.CUS fieldset > p:nth-of-type(8) {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}

/* Month, Day, Year = 3 equal flex columns */
form.CUS fieldset > p:nth-of-type(8) select#service_date,
form.CUS fieldset > p:nth-of-type(8) select#service_day,
form.CUS fieldset > p:nth-of-type(8) input#service_year {
    flex: 1 1 0;
    width: auto;          /* flex handles width */
    margin-top: 6px;
}

/* ===============================
   SERVICE TIME (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(9) {
    width: 100%;
}

/* ===============================
   SUBMIT BUTTON (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(10) {
    width: 100%;
}

form.CUS input[type="submit"] {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

form.CUS input[type="submit"]:hover {
    background: #ff9f00;
}

/* Hide honeypot */
form.CUS input.subject {
    display: none;
}

/* ===============================
   MOBILE RESPONSIVE (stack fields)
=============================== */
@media (max-width: 600px) {

    form.CUS fieldset > p {
        width: 100%;
        padding: 6px 0;
    }

    /* Month, Day, Year full width stacked on mobile */
    form.CUS fieldset > p:nth-of-type(8) {
        flex-direction: column;
        gap: 6px;
    }

    form.CUS fieldset > p:nth-of-type(8) select#service_date,
    form.CUS fieldset > p:nth-of-type(8) select#service_day,
    form.CUS fieldset > p:nth-of-type(8) input#service_year {
        flex: none;
        width: 100% !important;
    }
/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 100%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 100%;
}
}