/* =========================================================
   WFY PLASTIC SURGERY HEADER
========================================================= */

:root {
    --wfy-green: #7FBA40;
    --wfy-green-dark: #659B2F;
    --wfy-green-light: #EDF6E4;

    --wfy-red: #CD2122;
    --wfy-red-dark: #B51C1D;

    --wfy-heading: #292725;
    --wfy-text: #55514D;

    --wfy-white: #ffffff;
    --wfy-border: #E8E8E5;

    --wfy-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   HEADER
========================================================= */

.wfy-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 99999;
    background: var(--wfy-white);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}


.wfy-navbar {
    background: var(--wfy-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


.wfy-container {
    width: 100%;
    max-width: 1450px;
    margin: auto;

    min-height: 96px;

    padding: 0 35px;

    display: flex;
    align-items: center;
    gap: 35px;
}


/* =========================================================
   LOGO
========================================================= */

.wfy-logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}


.wfy-logo img {
    width: 140px;
    height: auto;
    display: block;
}


/* =========================================================
   NAVIGATION
========================================================= */

.wfy-nav {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 3px;
}


.wfy-nav-link {
    position: relative;

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 36px 13px;

    color: var(--wfy-heading);

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition: 0.3s ease;
}


.wfy-nav-link:hover {
    color: var(--wfy-red);
}


.wfy-nav-link i {
    font-size: 9px;
    transition: 0.3s ease;
}


.wfy-dropdown:hover>.wfy-nav-link i {
    transform: rotate(180deg);
}


/* =========================================================
   APPOINTMENT BUTTON
========================================================= */

.wfy-appointment {
    flex-shrink: 0;

    min-width: 175px;

    padding: 15px 23px;

    border-radius: 50px;

    background: var(--wfy-red);

    color: var(--wfy-white);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 8px 18px rgba(205, 33, 34, 0.22);

    transition: 0.3s ease;
}


.wfy-appointment:hover {
    background: var(--wfy-red-dark);
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(205, 33, 34, 0.3);
}


.wfy-appointment i {
    font-size: 12px;
}


/* =========================================================
   DROPDOWN
========================================================= */

.wfy-dropdown {
    position: relative;
}


/*
   Desktop hover dropdown
*/

.wfy-dropdown-menu {
    position: absolute;

    top: calc(100% - 1px);
    left: 0;

    min-width: 280px;

    background: #fff;

    border-top: 3px solid var(--wfy-red);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* Open on mouse hover */

.wfy-dropdown:hover>.wfy-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.wfy-dropdown-item {
    width: 100%;

    min-height: 62px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--wfy-text);

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    border-bottom: 1px solid var(--wfy-border);

    background: #fff;

    transition: 0.25s ease;
}


.wfy-dropdown-item:hover {
    background: var(--wfy-green-light);
    color: var(--wfy-green-dark);
}


.wfy-dropdown-item i {
    font-size: 10px;
    color: #777;
}


/* =========================================================
   SURGICAL DROPDOWN
========================================================= */

.wfy-surgical-menu {
    width: 315px;
}


.wfy-sub-dropdown {
    position: relative;
}


/* =========================================================
   RIGHT SIDE SUBMENU
========================================================= */

.wfy-submenu {
    position: absolute;

    top: -3px;
    left: 100%;

    width: 270px;

    background: #fff;

    border-top: 3px solid var(--wfy-green);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateX(10px);

    transition: 0.25s ease;
}


.wfy-sub-dropdown:hover>.wfy-submenu {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


.wfy-submenu a {
    display: block;

    padding: 15px 18px;

    color: var(--wfy-text);

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    border-bottom: 1px solid var(--wfy-border);

    transition: 0.25s ease;
}


.wfy-submenu a:hover {
    background: var(--wfy-green-light);
    color: var(--wfy-green-dark);

    padding-left: 23px;
}


/* =========================================================
   NON SURGICAL MENU
========================================================= */

.wfy-nonsurgical-menu {
    width: 300px;
}


.wfy-nonsurgical-menu>a,
.wfy-small-menu>a {
    display: block;

    padding: 15px 18px;

    color: var(--wfy-text);

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    border-bottom: 1px solid var(--wfy-border);

    transition: 0.25s ease;
}


.wfy-nonsurgical-menu>a:hover,
.wfy-small-menu>a:hover {
    background: var(--wfy-green-light);

    color: var(--wfy-green-dark);

    padding-left: 23px;
}


/* =========================================================
   MEDIA
========================================================= */

.wfy-small-menu {
    width: 220px;
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.wfy-mobile-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 10px;

    border: 0;

    background: var(--wfy-green-light);

    border-radius: 8px;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


.wfy-mobile-toggle span {
    display: block;

    width: 23px;
    height: 2px;

    background: var(--wfy-heading);

    transition: 0.3s ease;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.wfy-mobile-menu {
    display: none;

    position: fixed;

    top: 96px;
    left: 0;

    width: 100%;
    height: calc(100vh - 96px);

    background: #fff;

    overflow-y: auto;

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);

    z-index: 9998;
}


.wfy-mobile-menu.active {
    display: block;
}


.wfy-mobile-inner {
    padding: 15px 20px 35px;
}


.wfy-mobile-inner>a,
.wfy-mobile-dropdown>button {
    width: 100%;

    min-height: 55px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--wfy-heading);

    background: transparent;

    border: 0;
    border-bottom: 1px solid var(--wfy-border);

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    text-align: left;
}


.wfy-mobile-inner>a:hover,
.wfy-mobile-dropdown>button:hover {
    color: var(--wfy-red);
}


.wfy-mobile-dropdown>button i {
    font-size: 11px;

    transition: 0.3s ease;
}


.wfy-mobile-dropdown.open>button i {
    transform: rotate(180deg);
}


/* =========================================================
   MOBILE SUBMENU
========================================================= */

.wfy-mobile-submenu {
    display: none;

    background: #fafcf8;

    border-left: 3px solid var(--wfy-green);
}


.wfy-mobile-dropdown.open>.wfy-mobile-submenu {
    display: block;
}


.wfy-mobile-submenu>a {
    display: block;

    padding: 13px 15px;

    color: var(--wfy-text);

    font-size: 14px;

    text-decoration: none;

    border-bottom: 1px solid #e9ece7;
}


.wfy-mobile-submenu>a:hover {
    color: var(--wfy-green-dark);
    background: var(--wfy-green-light);
}


/* =========================================================
   MOBILE INNER DROPDOWN
========================================================= */

.mobile-inner-dropdown>button {
    width: 100%;

    min-height: 50px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 0;
    border-bottom: 1px solid #e5e9e2;

    background: transparent;

    color: var(--wfy-text);

    font-size: 14px;

    text-align: left;
}


.mobile-inner-dropdown>button i {
    font-size: 9px;

    transition: 0.3s ease;
}


.mobile-inner-dropdown.open>button {
    color: var(--wfy-green-dark);
    background: var(--wfy-green-light);
}


.mobile-inner-dropdown.open>button i {
    transform: rotate(180deg);
}


.mobile-inner-dropdown>div {
    display: none;
}


.mobile-inner-dropdown.open>div {
    display: block;
}


.mobile-inner-dropdown>div a {
    display: block;

    padding: 11px 15px 11px 30px;

    font-size: 13px;

    color: #666;

    text-decoration: none;

    border-bottom: 1px solid #eeeeee;
}


.mobile-inner-dropdown>div a:hover {
    color: var(--wfy-green-dark);
}


/* =========================================================
   MOBILE APPOINTMENT
========================================================= */

.wfy-mobile-appointment {
    margin-top: 20px;

    justify-content: center !important;

    min-height: 52px !important;

    background: var(--wfy-red) !important;

    color: #fff !important;

    border-radius: 30px;

    gap: 10px;

    border: 0 !important;

    box-shadow: 0 7px 18px rgba(205, 33, 34, 0.2);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1250px) {

    .wfy-container {
        padding: 0 25px;
        gap: 20px;
    }

    .wfy-logo img {
        width: 185px;
    }

    .wfy-nav-link {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 13px;
    }

    .wfy-appointment {
        min-width: 145px;
        padding: 13px 16px;
        font-size: 13px;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-container {
        min-height: 82px;

        padding: 0 20px;

        justify-content: space-between;
    }


    .wfy-logo img {
        width: 190px;
    }


    .wfy-nav,
    .wfy-appointment {
        display: none;
    }


    .wfy-mobile-toggle {
        display: flex;
    }


    .wfy-mobile-menu {
        top: 82px;
        height: calc(100vh - 82px);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .wfy-container {
        min-height: 72px;
        padding: 0 15px;
    }


    .wfy-logo img {
        width: 160px;
    }


    .wfy-mobile-toggle {
        width: 42px;
        height: 42px;
    }


    .wfy-mobile-menu {
        top: 72px;
        height: calc(100vh - 72px);
    }


    .wfy-mobile-inner {
        padding-left: 15px;
        padding-right: 15px;
    }

}


/* =========================================================
   HERO
========================================================= */

.wfy-hero {
    position: relative;

    width: 100%;

    min-height: 760px;

    padding-top: 40px;

    background:
        linear-gradient(180deg,
            #F8F9F7 0%,
            #F5F7F5 65%,
            #FFFFFF 100%);

    overflow: hidden;

    isolation: isolate;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.wfy-hero-pattern {
    position: absolute;

    width: 550px;
    height: 550px;

    left: -120px;
    top: -80px;

    border-radius: 50%;

    opacity: 0.45;

    background:
        repeating-radial-gradient(ellipse at center,
            transparent 0px,
            transparent 7px,
            rgba(127, 186, 64, 0.13) 8px,
            transparent 10px);

    transform: rotate(-18deg);

    z-index: -1;
}


/* second decorative shape */

.wfy-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -250px;
    top: 80px;

    border-radius: 50%;

    background: var(--wfy-green-light);

    opacity: 0.45;

    filter: blur(5px);

    z-index: -1;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.wfy-hero-content {

    position: relative;

    max-width: 1050px;

    margin: 0 auto;

    padding: 0 25px;

    text-align: center;

    z-index: 3;
}


/* =========================================================
   TAG
========================================================= */

.wfy-hero-tag {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    padding: 7px 17px;

    border-radius: 50px;

    background: var(--wfy-green-light);

    color: var(--wfy-green-dark);

    border: 1px solid rgba(127, 186, 64, 0.25);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   HEADING
========================================================= */

.wfy-hero h1 {

    margin: 0;

    color: var(--wfy-heading);

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -2.5px;
}


.wfy-hero h1 span {

    display: block;

    margin-top: 7px;

    font-weight: 500;

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    color: transparent;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.wfy-hero-content p {

    max-width: 720px;

    margin: 25px auto 0;

    color: var(--wfy-text);

    font-size: 16px;

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   CTA
========================================================= */

.wfy-hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-width: 190px;

    margin-top: 30px;

    padding: 16px 27px;

    border-radius: 50px;

    background: var(--wfy-red);

    color: #fff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(205, 33, 34, 0.22);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.wfy-hero-btn i {

    font-size: 12px;

    transition: transform 0.3s ease;
}


.wfy-hero-btn:hover {

    color: #fff;

    background: var(--wfy-red-dark);

    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(205, 33, 34, 0.28);
}


.wfy-hero-btn:hover i {

    transform: translateX(4px);
}


/* =========================================================
   IMAGE GALLERY
========================================================= */

.wfy-hero-gallery {

    position: relative;

    width: 100%;

    margin-top: 55px;

    overflow: hidden;

    padding: 0 12px 20px;

    z-index: 2;
}


/* =========================================================
   TRACK
========================================================= */

.wfy-gallery-track {

    display: flex;

    align-items: flex-end;

    gap: 18px;

    width: max-content;

    will-change: transform;

    transform: translate3d(0, 0, 0);

    transition: transform 0.12s linear;
}


/* =========================================================
   IMAGE CARD
========================================================= */

.wfy-gallery-card {

    position: relative;

    flex: 0 0 250px;

    width: 250px;

    height: 325px;

    overflow: hidden;

    border-radius: 25px;

    background: #eee;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.08);

    transform-origin: center bottom;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}


.wfy-gallery-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.wfy-gallery-card:hover {

    transform: translateY(-12px);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.14);
}


.wfy-gallery-card:hover img {

    transform: scale(1.05);
}


/* =========================================================
   DIFFERENT IMAGE HEIGHTS
========================================================= */

.card-1 {
    height: 285px;
}

.card-2 {
    height: 325px;
}

.card-3 {
    height: 365px;
}

.card-4 {
    height: 325px;
}

.card-5 {
    height: 285px;
}

.card-6 {
    height: 365px;
}

.card-7 {
    height: 325px;
}

.card-8 {
    height: 285px;
}


/* =========================================================
   SOFT FADE EDGES
========================================================= */

.wfy-hero-gallery::before,
.wfy-hero-gallery::after {

    content: "";

    position: absolute;

    top: 0;

    width: 100px;

    height: 100%;

    z-index: 4;

    pointer-events: none;
}


.wfy-hero-gallery::before {

    left: 0;

    background:
        linear-gradient(90deg,
            #F7F8F6,
            transparent);
}


.wfy-hero-gallery::after {

    right: 0;

    background:
        linear-gradient(270deg,
            #F7F8F6,
            transparent);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-hero {

        min-height: 700px;

        padding-top: 75px;
    }


    .wfy-hero-content {

        max-width: 800px;
    }


    .wfy-hero h1 {

        font-size: clamp(40px, 6vw, 58px);

        letter-spacing: -1.5px;
    }


    .wfy-hero-content p {

        font-size: 15px;

        max-width: 620px;
    }


    .wfy-hero-gallery {

        margin-top: 50px;
    }


    .wfy-gallery-card {

        flex-basis: 210px;

        width: 210px;

        height: 290px;

        border-radius: 21px;
    }


    .card-1,
    .card-5,
    .card-8 {

        height: 250px;
    }


    .card-3,
    .card-6 {

        height: 320px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .wfy-hero {

        min-height: 650px;

        padding-top: 42px;
    }


    .wfy-hero-pattern {

        width: 350px;

        height: 350px;

        left: -180px;

        top: -80px;
    }


    .wfy-hero-content {

        padding: 0 18px;
    }


    .wfy-hero-tag {

        font-size: 9px;

        letter-spacing: 1.5px;

        padding: 6px 13px;

        margin-bottom: 14px;
    }


    .wfy-hero h1 {

        font-size: 35px;

        line-height: 1.12;

        letter-spacing: -1px;
    }


    .wfy-hero h1 span {

        margin-top: 3px;
    }


    .wfy-hero-content p {

        margin-top: 18px;

        font-size: 13px;

        line-height: 1.7;

        max-width: 350px;
    }


    .wfy-hero-btn {

        min-width: 155px;

        padding: 13px 21px;

        margin-top: 23px;

        font-size: 12px;
    }


    .wfy-hero-gallery {

        margin-top: 38px;

        padding-left: 8px;

        padding-right: 8px;
    }


    .wfy-gallery-track {

        gap: 10px;
    }


    .wfy-gallery-card {

        flex: 0 0 150px;

        width: 150px;

        height: 205px;

        border-radius: 17px;
    }


    .card-1,
    .card-5,
    .card-8 {

        height: 180px;
    }


    .card-2,
    .card-4,
    .card-7 {

        height: 205px;
    }


    .card-3,
    .card-6 {

        height: 230px;
    }


    .wfy-hero-gallery::before,
    .wfy-hero-gallery::after {

        width: 45px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .wfy-hero {

        padding-top: 35px;

        min-height: 600px;
    }


    .wfy-hero h1 {

        font-size: 31px;
    }


    .wfy-hero-content p {

        font-size: 12px;

        max-width: 320px;
    }


    .wfy-gallery-card {

        flex-basis: 135px;

        width: 135px;

        height: 185px;

        border-radius: 15px;
    }


    .card-1,
    .card-5,
    .card-8 {

        height: 165px;
    }


    .card-3,
    .card-6 {

        height: 210px;
    }

}


/* =========================================================
   WFY STATS / EXPERIENCE SECTION
========================================================= */

.wfy-stats-section {
    padding: 85px 0;
    background: #ffffff;
}


.wfy-stats-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: center;
    gap: 70px;
}


/* =========================================================
   LEFT HEADING
========================================================= */

.wfy-stats-content h2 {
    margin: 0;
    max-width: 950px;

    color: var(--wfy-heading);

    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -1.8px;
}


.wfy-stats-content h2 span {
    color: var(--wfy-red);
    font-weight: 500;
}


/* =========================================================
   EXPERIENCE CARD
========================================================= */

.wfy-experience-card {
    min-height: 340px;

    padding: 55px 65px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            var(--wfy-green-dark),
            var(--wfy-green));

    color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-shadow:
        0 20px 45px rgba(127, 186, 64, 0.18);

    overflow: hidden;

    position: relative;
}


/* subtle decoration */

.wfy-experience-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -90px;

    border-radius: 50%;

    border: 35px solid rgba(255, 255, 255, 0.08);
}


/* =========================================================
   NUMBER
========================================================= */

.wfy-experience-number {
    font-size: 76px;

    line-height: 1;

    font-weight: 700;

    color: rgba(255, 255, 255, 0.18);

    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.75);

    margin-bottom: 18px;
}


.wfy-experience-number span {
    color: #fff;

    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}


/* =========================================================
   CARD HEADING
========================================================= */

.wfy-experience-card h3 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: 23px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================================
   CARD TEXT
========================================================= */

.wfy-experience-card p {
    margin: 0;

    max-width: 430px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-stats-section {
        padding: 65px 0;
    }

    .wfy-stats-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .wfy-stats-content h2 {
        max-width: 800px;

        font-size: 44px;
    }

    .wfy-experience-card {
        min-height: 300px;

        max-width: 600px;

        padding: 45px 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .wfy-stats-section {
        padding: 50px 0;
    }

    .wfy-stats-grid {
        gap: 30px;
    }

    .wfy-stats-content h2 {
        font-size: 34px;

        line-height: 1.15;

        letter-spacing: -1px;
    }

    .wfy-experience-card {
        min-height: 270px;

        padding: 35px 30px;

        border-radius: 18px;
    }

    .wfy-experience-number {
        font-size: 60px;

        margin-bottom: 14px;
    }

    .wfy-experience-card h3 {
        font-size: 21px;
    }

    .wfy-experience-card p {
        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .wfy-stats-content h2 {
        font-size: 30px;
    }

    .wfy-experience-card {
        padding: 30px 25px;
    }

    .wfy-experience-number {
        font-size: 54px;
    }

}


/* =========================================================
   WFY ABOUT SECTION
========================================================= */

.wfy-about-section {
    position: relative;

    padding: 60px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   GRID
========================================================= */

.wfy-about-grid {

    display: grid;

    grid-template-columns: 0.78fr 1.22fr;

    align-items: center;

    gap: 85px;
}


/* =========================================================
   IMAGE
========================================================= */

.wfy-about-image-wrap {

    position: relative;

    padding-bottom: 35px;
}


.wfy-about-image {

    width: 100%;

    max-width: 470px;

    height: 610px;

    overflow: hidden;

    border-radius: 0 22px 22px 22px;

    position: relative;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12);
}


.wfy-about-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            transparent 65%,
            rgba(0, 0, 0, 0.12));

    pointer-events: none;
}


.wfy-about-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s ease;
}


.wfy-about-image:hover img {

    transform: scale(1.05);
}


/* =========================================================
   IMAGE DECORATION
========================================================= */

.wfy-about-image-wrap::before {

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    left: -18px;
    top: -18px;

    border-radius: 18px 0 0 0;

    border-top: 4px solid var(--wfy-green);
    border-left: 4px solid var(--wfy-green);

    z-index: 0;
}


.wfy-about-image-wrap::after {

    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    right: 35px;
    bottom: 0;

    background: var(--wfy-green-light);

    border-radius: 50%;

    z-index: -1;
}


/* =========================================================
   WATCH VIDEO
========================================================= */

.wfy-watch-video {

    position: absolute;

    bottom: 0;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 25px;

    background: #ffffff;

    border-radius: 50px;

    color: var(--wfy-heading);

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);

    white-space: nowrap;

    z-index: 3;

    transition: 0.3s ease;
}


.wfy-watch-video:hover {

    color: var(--wfy-red);

    transform:
        translateX(-50%) translateY(-4px);
}


.wfy-play-icon {

    width: 30px;
    height: 30px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--wfy-green);

    color: var(--wfy-green-dark);

    font-size: 9px;
}


/* =========================================================
   CONTENT
========================================================= */

.wfy-about-content {

    padding-right: 20px;
}


/* =========================================================
   HEADING
========================================================= */

.wfy-about-title {

    max-width: 800px;

    margin: 0 0 28px;

    color: var(--wfy-heading);

    font-size: clamp(38px, 4vw, 57px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -2px;
}


.wfy-about-title span {

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   TEXT
========================================================= */

.wfy-about-text {

    max-width: 850px;

    margin: 0 0 20px;

    color: var(--wfy-text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   WFY TRUST / STATS ROW
========================================================= */

.wfy-about-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;

    gap: 0;

    margin-top: 45px;
    padding-top: 32px;

    border-top: 1px solid var(--wfy-border);
}


/* =========================================================
   EACH ITEM
========================================================= */

.wfy-trust-item {
    min-height: 125px;

    padding: 0 25px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    text-align: center;

    position: relative;
}


/* Vertical divider */

.wfy-trust-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 10px;
    right: 0;

    width: 1px;
    height: 95px;

    background: var(--wfy-border);
}


/* =========================================================
   AWARD ICON
========================================================= */

.wfy-award-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--wfy-green-light);

    color: var(--wfy-green-dark);

    font-size: 22px;
}


/* =========================================================
   NUMBER
========================================================= */

.wfy-counter-wrap {
    display: flex;

    align-items: baseline;
    justify-content: center;

    height: 58px;

    margin-bottom: 4px;
}


.wfy-counter {
    display: inline-block;

    color: var(--wfy-heading);

    font-size: 48px;

    line-height: 1;

    font-weight: 700;

    margin: 0;
}


.wfy-counter-label {
    display: inline-block;

    margin-left: 5px;

    color: var(--wfy-red);

    font-size: 38px;

    line-height: 1;

    font-weight: 700;
}


/* =========================================================
   RATING
========================================================= */

.wfy-rating-number {
    height: 58px;

    display: flex;
    align-items: center;

    color: var(--wfy-heading);

    font-size: 48px;

    line-height: 1;

    font-weight: 700;
}


/* =========================================================
   STARS
========================================================= */

.wfy-stars {
    margin-top: 2px;

    color: #F4B400;

    font-size: 16px;

    line-height: 1;

    letter-spacing: 2px;
}


/* =========================================================
   TITLE
========================================================= */

.wfy-trust-item strong {
    display: block;

    margin-top: 8px;

    color: var(--wfy-heading);

    font-size: 13px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.wfy-trust-item>span {
    display: block;

    max-width: 180px;

    margin-top: 6px;

    color: var(--wfy-text);

    font-size: 10px;

    line-height: 1.5;
}

/* =========================================================
   SCROLL REVEAL ANIMATION
========================================================= */

.reveal-up,
.reveal-left {

    opacity: 0;

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}


.reveal-up {

    transform: translateY(45px);
}


.reveal-left {

    transform: translateX(-60px);
}


.reveal-up.active,
.reveal-left.active {

    opacity: 1;

    transform: translate(0);
}


/* =========================================================
   ANIMATION DELAYS
========================================================= */

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

.delay-3 {
    transition-delay: 0.36s;
}


/* =========================================================
   IMAGE FLOAT
========================================================= */

.wfy-about-image-wrap.active .wfy-about-image {

    animation:
        wfyImageFloat 5s ease-in-out infinite;
}


@keyframes wfyImageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-about-section {

        padding: 75px 0;
    }


    .wfy-about-grid {

        grid-template-columns: 1fr;

        gap: 55px;
    }


    .wfy-about-image {

        margin: auto;

        height: 570px;
    }


    .wfy-about-content {

        padding-right: 0;
    }


    .wfy-about-title {

        max-width: 750px;

        font-size: 44px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .wfy-about-section {

        padding: 55px 0;
    }


    .wfy-about-grid {

        gap: 45px;
    }


    .wfy-about-image {

        width: 90%;

        height: 470px;

        border-radius: 0 18px 18px 18px;
    }


    .wfy-about-title {

        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -1px;

        margin-bottom: 20px;
    }


    .wfy-about-text {

        font-size: 13px;

        line-height: 1.75;
    }


    .wfy-about-trust {

        grid-template-columns: 1fr;

        gap: 25px;

        margin-top: 35px;
    }


    .wfy-trust-item {

        min-height: auto;

        padding: 18px 0;

        border-bottom: 1px solid var(--wfy-border);
    }


    .wfy-trust-item:last-child {

        border-bottom: 0;
    }


    .wfy-watch-video {

        font-size: 12px;

        padding: 12px 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .wfy-about-image {

        width: 94%;

        height: 420px;
    }


    .wfy-about-title {

        font-size: 30px;
    }


    .wfy-about-text {

        font-size: 12px;
    }


    .wfy-counter,
    .wfy-rating-number {

        font-size: 42px;
    }

}


/* =========================================================
   WFY TREATMENT CATEGORY SECTION
========================================================= */

.wfy-treatment-section {
    padding: 60px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.wfy-treatment-heading {
    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;
}


.wfy-section-tag {
    display: inline-flex;

    padding: 7px 16px;

    border-radius: 50px;

    background: var(--wfy-green-light);

    color: var(--wfy-green-dark);

    border: 1px solid rgba(127, 186, 64, 0.2);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.wfy-treatment-heading h2 {
    margin: 18px 0 12px;

    color: var(--wfy-heading);

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.1;

    font-weight: 500;

    letter-spacing: -1.5px;
}


.wfy-treatment-heading h2 span {
    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.wfy-treatment-heading p {
    margin: 0 auto;

    max-width: 600px;

    color: var(--wfy-text);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   GRID
========================================================= */

.wfy-treatment-grid {

    display: grid;

    grid-template-columns:
        0.75fr 0.75fr 1.65fr;

    gap: 26px;
}


/* =========================================================
   CARD
========================================================= */

.wfy-treatment-card {

    position: relative;

    min-height: 440px;

    padding: 48px 46px;

    overflow: hidden;

    border-radius: 24px;

    background: #F1F3F5;

    text-decoration: none;

    display: block;

    isolation: isolate;

    transition:
        transform 0.45s cubic-bezier(.22, 1, .36, 1),
        box-shadow 0.45s ease;
}


.wfy-treatment-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.11);
}


/* =========================================================
   CARD ICON
========================================================= */

.wfy-treatment-icon {

    position: relative;

    z-index: 3;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--wfy-heading);

    font-size: 23px;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.wfy-treatment-content {

    position: absolute;

    left: 46px;

    bottom: 55px;

    z-index: 4;

    max-width: 90%;
}


.wfy-treatment-content h3 {

    margin: 0;

    color: var(--wfy-red);

    font-size: 21px;

    line-height: 1.3;

    font-weight: 500;
}


.wfy-treatment-content p {

    max-width: 320px;

    margin: 10px 0 0;

    color: var(--wfy-text);

    font-size: 12px;

    line-height: 1.6;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


.wfy-treatment-card:hover .wfy-treatment-content p {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   LINE ART IMAGE
========================================================= */

.wfy-treatment-image {

    position: absolute;

    z-index: 1;

    right: 50px;

    bottom: -75px;

    width: 72%;

    height: 92%;

    object-fit: contain;

    object-position: right bottom;

    mix-blend-mode: multiply;

    opacity: 0.92;

    transition:
        transform 0.65s cubic-bezier(.22, 1, .36, 1),
        opacity 0.4s ease;
}


.wfy-treatment-card:hover .wfy-treatment-image {

    transform:
        scale(1.06) translate(-8px, -5px);

    opacity: 1;
}


/* =========================================================
   WIDE CARD
========================================================= */

.wfy-treatment-wide .wfy-treatment-image {

    width: 63%;

    right: -20px;

    bottom: -80px;
}


.wfy-treatment-wide .wfy-treatment-content {

    max-width: 55%;
}


/* =========================================================
   ARROW
========================================================= */

.wfy-treatment-arrow {

    position: absolute;

    right: 15px;

    bottom: 15px;

    z-index: 5;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: var(--wfy-red);

    font-size: 13px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.07);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.wfy-treatment-card:hover .wfy-treatment-arrow {

    background: var(--wfy-red);

    color: #ffffff;

    transform: rotate(-35deg);
}


/* =========================================================
   GREEN HOVER LINE
========================================================= */

.wfy-treatment-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 4px;

    background:
        linear-gradient(90deg,
            var(--wfy-green),
            var(--wfy-red));

    z-index: 6;

    transition: width 0.45s ease;
}


.wfy-treatment-card:hover::before {

    width: 100%;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal-card {

    opacity: 0;

    transform: translateY(45px);

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}


.reveal-card.active {

    opacity: 1;

    transform: translateY(0);
}


.wfy-treatment-card:nth-child(2) {
    transition-delay: 0.12s;
}


.wfy-treatment-card:nth-child(3) {
    transition-delay: 0.24s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .wfy-treatment-grid {

        grid-template-columns:
            1fr 1fr;
    }


    .wfy-treatment-wide {

        grid-column: 1 / -1;

        min-height: 400px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .wfy-treatment-section {

        padding: 65px 0;
    }


    .wfy-treatment-heading {

        margin-bottom: 35px;
    }


    .wfy-treatment-heading h2 {

        font-size: 34px;

        letter-spacing: -0.8px;
    }


    .wfy-treatment-heading p {

        font-size: 13px;

        padding: 0 10px;
    }


    .wfy-treatment-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .wfy-treatment-card,
    .wfy-treatment-wide {

        grid-column: auto;

        min-height: 360px;

        padding: 30px;
    }


    .wfy-treatment-content,
    .wfy-treatment-wide .wfy-treatment-content {

        left: 30px;

        bottom: 38px;

        max-width: 75%;
    }


    .wfy-treatment-content h3 {

        font-size: 19px;
    }


    .wfy-treatment-content p {

        opacity: 1;

        transform: none;

        font-size: 11px;
    }


    .wfy-treatment-image,
    .wfy-treatment-wide .wfy-treatment-image {

        width: 78%;

        height: 90%;

        right: -40px;

        bottom: -55px;
    }


    .wfy-treatment-arrow {

        width: 38px;
        height: 38px;

        right: 12px;
        bottom: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .wfy-treatment-card,
    .wfy-treatment-wide {

        min-height: 330px;
    }


    .wfy-treatment-image,
    .wfy-treatment-wide .wfy-treatment-image {

        width: 82%;

        right: -55px;

        bottom: -45px;
    }


    .wfy-treatment-content,
    .wfy-treatment-wide .wfy-treatment-content {

        left: 25px;

        bottom: 32px;

        max-width: 72%;
    }


    .wfy-treatment-content h3 {

        font-size: 18px;
    }

}


/* =========================================================
   WFY POPULAR TREATMENTS SECTION
========================================================= */

.wfy-popular-section {
    position: relative;

    width: 100%;

    min-height: 285px;

    display: flex;
    align-items: center;

    background: #f1f3f5;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.wfy-popular-section .container {
    position: relative;
    z-index: 3;
}


/* =========================================================
   CONTENT
========================================================= */

.wfy-popular-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   HEADING
========================================================= */

.wfy-popular-inner h2 {

    margin: 0;

    max-width: 1000px;

    color: var(--wfy-heading);

    font-size: 45px;

    line-height: 1.12;

    font-weight: 500;

    letter-spacing: -1.8px;
}


.wfy-popular-inner h2 span {

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   PHONE BUTTON
========================================================= */

.wfy-popular-phone {

    flex-shrink: 0;

    min-width: 205px;

    height: 58px;

    padding: 0 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 50px;

    border: 2px solid var(--wfy-green);

    background: rgba(255, 255, 255, 0.25);

    color: var(--wfy-heading);

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition:
        0.35s ease;
}


/* Arrow */

.wfy-popular-phone>i:first-child {

    font-size: 9px;

    transition:
        transform 0.3s ease;
}


/* Phone */

.wfy-popular-phone>i:last-child {

    color: var(--wfy-red);

    font-size: 13px;
}


/* Hover */

.wfy-popular-phone:hover {

    color: #ffffff;

    background: var(--wfy-red);

    border-color: var(--wfy-red);

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(205, 33, 34, 0.2);
}


.wfy-popular-phone:hover>i:last-child {

    color: #ffffff;
}


.wfy-popular-phone:hover>i:first-child {

    transform: translateX(4px);
}


/* =========================================================
   DECORATIVE CURVED LINES
========================================================= */

.wfy-popular-pattern {

    position: absolute;

    right: 45px;

    bottom: -100px;

    width: 260px;

    height: 190px;

    border-radius: 50%;

    border: 2px solid rgba(127, 186, 64, 0.55);

    box-shadow:
        0 0 0 8px rgba(127, 186, 64, 0.12),
        0 0 0 16px rgba(127, 186, 64, 0.10),
        0 0 0 24px rgba(127, 186, 64, 0.08),
        0 0 0 32px rgba(127, 186, 64, 0.06),
        0 0 0 40px rgba(127, 186, 64, 0.04);

    transform: rotate(-8deg);

    opacity: 0.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-popular-section {

        min-height: 240px;

        padding: 55px 0;
    }


    .wfy-popular-inner {

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }


    .wfy-popular-inner h2 {

        font-size: 42px;

        max-width: 800px;
    }


    .wfy-popular-phone {

        min-width: 190px;

        height: 54px;
    }


    .wfy-popular-pattern {

        right: -40px;

        bottom: -100px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .wfy-popular-section {

        min-height: auto;

        padding: 55px 0;
    }


    .wfy-popular-inner {

        gap: 24px;
    }


    .wfy-popular-inner h2 {

        font-size: 32px;

        line-height: 1.15;

        letter-spacing: -1px;
    }


    .wfy-popular-phone {

        width: auto;

        min-width: 185px;

        height: 52px;

        padding: 0 20px;

        font-size: 12px;
    }


    .wfy-popular-pattern {

        width: 180px;

        height: 130px;

        right: -50px;

        bottom: -75px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .wfy-popular-section {

        padding: 45px 0;
    }


    .wfy-popular-inner h2 {

        font-size: 28px;
    }


    .wfy-popular-phone {

        width: 100%;

        max-width: 220px;
    }

}


/* =========================================================
   WFY WHY CHOOSE SECTION
========================================================= */

.wfy-why-section {
    position: relative;

    padding: 40px 0 100px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   TOP
========================================================= */

.wfy-why-top {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}


/* =========================================================
   HEADING
========================================================= */

.wfy-why-title {

    max-width: 900px;

    margin: 0;

    color: var(--wfy-heading);

    font-size: clamp(40px, 4.2vw, 58px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -2px;
    font-size: 40px;
}


.wfy-why-title span {

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   NAVIGATION
========================================================= */

.wfy-why-navigation {

    display: flex;

    flex-shrink: 0;

    margin-top: 10px;

    border: 1px solid var(--wfy-red);

    border-radius: 50px;

    overflow: hidden;
}


.wfy-why-navigation button {

    width: 44px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    background: #ffffff;

    color: var(--wfy-heading);

    font-size: 10px;

    cursor: pointer;

    transition: 0.3s ease;
}


.wfy-why-navigation button:hover {

    background: var(--wfy-red);

    color: #ffffff;
}


.wfy-why-navigation button.swiper-button-disabled {

    opacity: 0.35;

    cursor: default;
}


/* =========================================================
   SLIDER
========================================================= */

.wfyWhySwiper {

    width: 100%;

    overflow: hidden;
}


.wfyWhySwiper .swiper-wrapper {

    align-items: stretch;
}


.wfyWhySwiper .swiper-slide {

    height: auto;
}


/* =========================================================
   WHY ITEM
========================================================= */

.wfy-why-item {

    display: grid;

    grid-template-columns: 82px 1fr;

    gap: 28px;

    min-height: 180px;

    padding: 0 25px;

    position: relative;
}


/* =========================================================
   NUMBER
========================================================= */

.wfy-why-number {

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    color: transparent;

    -webkit-text-stroke: 1px var(--wfy-red);

    font-size: 76px;

    line-height: 1;

    font-weight: 500;

    letter-spacing: -3px;

    user-select: none;
}


/* =========================================================
   CONTENT
========================================================= */

.wfy-why-content {

    padding-top: 8px;

    max-width: 340px;
}


.wfy-why-content h3 {

    margin: 0 0 15px;

    color: var(--wfy-heading);

    font-size: 18px;

    line-height: 1.3;

    font-weight: 700;
}


.wfy-why-content p {

    margin: 0;

    color: var(--wfy-text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SLIDE ANIMATION
========================================================= */

.wfyWhySwiper .swiper-slide {
    opacity: 1 !important;
    transform: none !important;
    transition: transform 0.5s ease;
}

.wfyWhySwiper .swiper-slide-active {
    opacity: 1 !important;
    transform: none !important;
}



/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal-why {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.22, 1, .36, 1);
}


.reveal-why.active {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   BOTTOM DECORATION
========================================================= */

.wfy-why-section::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 5px;

    background:
        linear-gradient(90deg,
            var(--wfy-green),
            var(--wfy-red));

    opacity: 0.12;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-why-section {

        padding: 70px 0 80px;
    }


    .wfy-why-title {

        font-size: 43px;

        max-width: 700px;
    }


    .wfy-why-top {

        margin-bottom: 40px;
    }


    .wfy-why-item {

        grid-template-columns: 65px 1fr;

        gap: 20px;

        padding: 0 15px;
    }


    .wfy-why-number {

        font-size: 65px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .wfy-why-section {

        padding: 55px 0 65px;
    }


    .wfy-why-top {

        align-items: flex-end;

        margin-bottom: 35px;

        gap: 20px;
    }


    .wfy-why-title {

        font-size: 33px;

        line-height: 1.12;

        letter-spacing: -1px;
    }


    .wfy-why-navigation {

        margin-bottom: 2px;
    }


    .wfy-why-navigation button {

        width: 38px;

        height: 36px;
    }


    .wfy-why-item {

        grid-template-columns: 58px 1fr;

        gap: 18px;

        min-height: 190px;

        padding: 0 5px;
    }


    .wfy-why-number {

        font-size: 58px;
    }


    .wfy-why-content {

        padding-top: 4px;

        max-width: none;
    }


    .wfy-why-content h3 {

        font-size: 17px;

        margin-bottom: 10px;
    }


    .wfy-why-content p {

        font-size: 13px;

        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .wfy-why-top {

        align-items: flex-start;

        flex-direction: column;
    }


    .wfy-why-title {

        font-size: 29px;
    }


    .wfy-why-navigation {

        margin-top: 0;
    }


    .wfy-why-item {

        grid-template-columns: 48px 1fr;

        gap: 15px;
    }


    .wfy-why-number {

        font-size: 50px;
    }

}


/* =========================================================
   WFY MODERN MACHINES CTA
========================================================= */

.wfy-machines-section {
    position: relative;

    min-height: 285px;

    display: flex;
    align-items: center;

    background: #f1f3f5;

    overflow: hidden;
}


/* =========================================================
   INNER
========================================================= */

.wfy-machines-inner {
    position: relative;
    z-index: 5;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


/* =========================================================
   HEADING
========================================================= */

.wfy-machines-title {
    max-width: 1050px;

    margin: 0;

    color: var(--wfy-heading);

    font-size: 45px;

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -1.8px;
}


/* Gradient highlighted text */

.wfy-machines-title span {
    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   DISCOVER BUTTON
========================================================= */

.wfy-discover-btn {
    position: relative;

    flex-shrink: 0;

    min-width: 175px;

    height: 56px;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 50px;

    border: 2px solid var(--wfy-green-dark);

    background: transparent;

    color: var(--wfy-heading);

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    overflow: hidden;

    transition:
        color 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease;
}


/* Gradient hover background */

.wfy-discover-btn::before {
    content: "";

    position: absolute;

    inset: 0;

    width: 0;

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    transition: width 0.4s ease;

    z-index: -1;
}


.wfy-discover-btn:hover::before {
    width: 100%;
}


.wfy-discover-btn:hover {
    color: #ffffff;

    border-color: var(--wfy-red);

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(127, 186, 64, 0.18);
}


/* Arrow */

.wfy-btn-arrow {
    font-size: 20px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.wfy-discover-btn:hover .wfy-btn-arrow {
    transform: translateX(5px);
}


/* =========================================================
   DECORATIVE CURVED LINES
========================================================= */

.wfy-machines-pattern {
    position: absolute;

    right: 45px;

    bottom: -115px;

    width: 255px;

    height: 190px;

    border-radius: 50%;

    border: 1.5px solid rgba(127, 186, 64, 0.45);

    box-shadow:
        0 0 0 8px rgba(127, 186, 64, 0.12),
        0 0 0 16px rgba(205, 33, 34, 0.08),
        0 0 0 24px rgba(127, 186, 64, 0.10),
        0 0 0 32px rgba(205, 33, 34, 0.06),
        0 0 0 40px rgba(127, 186, 64, 0.06),
        0 0 0 48px rgba(205, 33, 34, 0.04);

    transform: rotate(-8deg);

    opacity: 0.85;
}


/* =========================================================
   SUBTLE ANIMATION
========================================================= */

.wfy-machines-pattern {
    animation:
        wfyPatternFloat 6s ease-in-out infinite;
}


@keyframes wfyPatternFloat {

    0%,
    100% {
        transform:
            rotate(-8deg) translateY(0);
    }

    50% {
        transform:
            rotate(-8deg) translateY(-8px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-machines-section {
        min-height: 240px;

        padding: 55px 0;
    }

    .wfy-machines-inner {
        align-items: flex-start;

        flex-direction: column;

        gap: 28px;
    }

    .wfy-machines-title {
        font-size: 43px;

        max-width: 800px;
    }

    .wfy-machines-pattern {
        right: -30px;

        bottom: -110px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .wfy-machines-section {
        min-height: auto;

        padding: 55px 0;
    }

    .wfy-machines-inner {
        gap: 25px;
    }

    .wfy-machines-title {
        font-size: 32px;

        line-height: 1.15;

        letter-spacing: -1px;
    }

    .wfy-discover-btn {
        min-width: 165px;

        height: 52px;

        font-size: 12px;
    }

    .wfy-machines-pattern {
        width: 180px;

        height: 130px;

        right: -50px;

        bottom: -75px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .wfy-machines-section {
        padding: 45px 0;
    }

    .wfy-machines-title {
        font-size: 28px;
    }

    .wfy-discover-btn {
        width: 180px;
    }

}



/* =========================================================
   WFY DOCTOR INTRO SECTION
========================================================= */

.wfy-doctor-section {

    position: relative;

    padding: 40px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   MAIN GRID
========================================================= */

.wfy-doctor-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1.35fr 0.65fr;

    align-items: center;

    gap: 45px;
}


/* =========================================================
   DOCTOR IMAGE
========================================================= */

.wfy-doctor-image-wrap {

    position: relative;

    display: flex;

    align-items: flex-end;

    justify-content: center;
}


.wfy-doctor-image {

    width: 100%;

    max-width: 370px;

    height: 360px;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    overflow: hidden;
}


.wfy-doctor-image img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    object-position: center bottom;

    display: block;

    transition:
        transform 0.8s ease;
}


.wfy-doctor-image-wrap:hover .wfy-doctor-image img {

    transform: scale(1.035);
}


/* =========================================================
   CONTENT
========================================================= */

.wfy-doctor-content {

    padding: 0 5px;
}


.wfy-doctor-title {

    margin: 0 0 28px;

    color: var(--wfy-heading);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -1.7px;
}


.wfy-doctor-title span {

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   PARAGRAPH
========================================================= */

.wfy-doctor-text {

    max-width: 650px;

    margin: 0 0 16px;

    color: var(--wfy-text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   BUTTON
========================================================= */

.wfy-doctor-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    min-width: 165px;

    height: 48px;

    padding: 0 22px;

    margin-top: 10px;

    border: 1.5px solid var(--wfy-red);

    border-radius: 50px;

    background: #ffffff;

    color: var(--wfy-heading);

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    overflow: hidden;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


.wfy-doctor-btn::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 100%;

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    transition: width 0.4s ease;

    z-index: 0;
}


.wfy-doctor-btn:hover::before {

    width: 100%;
}


.wfy-doctor-btn:hover {

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(127, 186, 64, 0.16);
}


.wfy-doctor-btn span {

    position: relative;

    z-index: 2;
}


.wfy-doctor-btn-arrow {

    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.wfy-doctor-btn:hover .wfy-doctor-btn-arrow {

    transform: translateX(4px);
}


/* =========================================================
   STATS
========================================================= */

.wfy-doctor-stats {

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 55px;

    padding-left: 15px;
}


.wfy-doctor-stat {

    position: relative;
}


/* =========================================================
   NUMBER
========================================================= */

.wfy-stat-number {
    color: transparent;
    font-size: clamp(65px, 5vw, 82px);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -4px;
    -webkit-text-stroke: 1px #659b2f;
    text-shadow: 0 0 1px rgb(255 255 255);
}

.wfy-stat-number {
    color: transparent;
    font-size: clamp(65px, 5vw, 52px);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -4px;
    -webkit-text-stroke: 1px #659b2f;
    text-shadow: 0 0 1px #659b2f08;
}

.wfy-stat-symbol {
    margin-left: 4px;
    color: transparent;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    -webkit-text-stroke: 1px #659b2f;
}

/* =========================================================
   STAT TITLE
========================================================= */

.wfy-doctor-stat h3 {

    margin: 0;

    color: var(--wfy-heading);

    font-size: 16px;

    line-height: 1.4;

    font-weight: 600;
}


/* =========================================================
   SUBTLE STAT LINE
========================================================= */

.wfy-doctor-stat::after {

    content: "";

    display: block;

    width: 42px;

    height: 2px;

    margin-top: 15px;

    background:
        linear-gradient(90deg,
            var(--wfy-green),
            var(--wfy-red));
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.wfy-reveal-left,
.wfy-reveal-up,
.wfy-reveal-right {

    opacity: 0;

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.22, 1, .36, 1);
}


.wfy-reveal-left {

    transform: translateX(-55px);
}


.wfy-reveal-up {

    transform: translateY(45px);

    transition-delay: 0.12s;
}


.wfy-reveal-right {

    transform: translateX(55px);

    transition-delay: 0.2s;
}


.wfy-reveal-left.active,
.wfy-reveal-up.active,
.wfy-reveal-right.active {

    opacity: 1;

    transform: translate(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .wfy-doctor-grid {

        grid-template-columns:
            0.75fr 1.25fr;
    }


    .wfy-doctor-stats {

        grid-column: 1 / -1;

        flex-direction: row;

        justify-content: center;

        gap: 100px;

        padding-left: 0;

        padding-top: 25px;
    }


    .wfy-doctor-stat {

        min-width: 220px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 767px) {

    .wfy-doctor-section {

        padding: 65px 0;
    }


    .wfy-doctor-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .wfy-doctor-image {

        height: 400px;

        max-width: 330px;
    }


    .wfy-doctor-title {

        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -1px;

        margin-bottom: 20px;
    }


    .wfy-doctor-text {

        font-size: 13px;

        line-height: 1.75;
    }


    .wfy-doctor-stats {

        grid-column: auto;

        flex-direction: row;

        gap: 30px;

        padding-top: 15px;

        justify-content: space-between;
    }


    .wfy-doctor-stat {

        min-width: 0;

        flex: 1;
    }


    .wfy-stat-number {

        font-size: 48px;

        letter-spacing: -2px;
    }


    .wfy-stat-symbol {

        font-size: 32px;
    }


    .wfy-doctor-stat h3 {

        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .wfy-doctor-section {

        padding: 50px 0;
    }


    .wfy-doctor-image {

        height: 350px;

        max-width: 290px;
    }


    .wfy-doctor-title {

        font-size: 29px;
    }


    .wfy-doctor-stats {

        gap: 20px;
    }


    .wfy-stat-number {

        font-size: 40px;
    }


    .wfy-stat-symbol {

        font-size: 27px;
    }


    .wfy-doctor-stat h3 {

        font-size: 11px;
    }

}


/* =========================================================
   WFY DOCTOR REVERSE SECTION
========================================================= */

.wfy-doctor-reverse {

    position: relative;

    padding: 60px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   GRID
========================================================= */

.wfy-doctor-reverse-grid {

    display: grid;

    grid-template-columns: 1.35fr 0.75fr;

    align-items: center;

    gap: 70px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.wfy-doctor-reverse-content {

    max-width: 850px;
}


/* =========================================================
   HEADING
========================================================= */

.wfy-doctor-reverse-title {

    margin: 0 0 30px;

    color: var(--wfy-heading);

    /* font-size: clamp(38px, 4vw, 55px); */

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -1.8px;
}


/* Gradient heading */

.wfy-doctor-reverse-title span {

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   TEXT
========================================================= */

.wfy-doctor-reverse-content p {

    max-width: 850px;

    margin: 0 0 16px;

    color: var(--wfy-text);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   BUTTON
========================================================= */

.wfy-doctor-reverse-btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 165px;

    height: 48px;

    padding: 0 22px;

    margin-top: 12px;

    border: 1.5px solid var(--wfy-red);

    border-radius: 50px;

    background: #ffffff;

    color: var(--wfy-heading);

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    overflow: hidden;

    transition:
        color .35s ease,
        transform .35s ease;
}


.wfy-doctor-reverse-btn::before {

    content: "";

    position: absolute;

    inset: 0;

    width: 0;

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    transition: width .4s ease;

    z-index: 0;
}


.wfy-doctor-reverse-btn:hover::before {

    width: 100%;
}


.wfy-doctor-reverse-btn:hover {

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(127, 186, 64, .16);
}


.wfy-doctor-reverse-btn span {

    position: relative;

    z-index: 2;
}


.wfy-reverse-arrow {

    font-size: 18px;

    line-height: 1;

    transition: transform .3s ease;
}


.wfy-doctor-reverse-btn:hover .wfy-reverse-arrow {

    transform: translateX(5px);
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.wfy-doctor-reverse-image {

    width: 100%;

    height: 360px;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    overflow: hidden;

    border-radius: 4px;
}


.wfy-doctor-reverse-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

    transition: transform .7s ease;
}


.wfy-doctor-reverse-image:hover img {

    transform: scale(1.035);
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.wfy-reveal-left,
.wfy-reveal-right {

    opacity: 0;

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22, 1, .36, 1);
}


.wfy-reveal-left {

    transform: translateX(-50px);
}


.wfy-reveal-right {

    transform: translateX(50px);

    transition-delay: .15s;
}


.wfy-reveal-left.active,
.wfy-reveal-right.active {

    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-doctor-reverse {

        padding: 70px 0;
    }


    .wfy-doctor-reverse-grid {

        grid-template-columns: 1fr 0.75fr;

        gap: 40px;
    }


    .wfy-doctor-reverse-title {

        font-size: 40px;
    }


    .wfy-doctor-reverse-image {

        height: 400px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .wfy-doctor-reverse {

        padding: 55px 0;
    }


    .wfy-doctor-reverse-grid {

        display: flex;

        flex-direction: column;

        gap: 35px;
    }


    /* Text first */

    .wfy-doctor-reverse-content {

        order: 1;
    }


    /* Image second */

    .wfy-doctor-reverse-image {

        order: 2;

        width: 100%;

        max-width: 380px;

        height: 400px;

        margin: auto;
    }


    .wfy-doctor-reverse-title {

        font-size: 32px;

        line-height: 1.12;

        letter-spacing: -1px;

        margin-bottom: 22px;
    }


    .wfy-doctor-reverse-content p {

        font-size: 13px;

        line-height: 1.75;
    }


    .wfy-doctor-reverse-image {

        border-radius: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .wfy-doctor-reverse {

        padding: 45px 0;
    }


    .wfy-doctor-reverse-title {

        font-size: 29px;
    }


    .wfy-doctor-reverse-image {

        height: 350px;
    }

}


/* =========================================================
   WFY BEFORE AFTER GALLERY
========================================================= */

.wfy-before-after-section {

    padding: 90px 0 100px;

    background: #f1f3f5;

    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.wfy-ba-heading {

    max-width: 800px;

    margin: 0 auto 55px;

    text-align: center;
}


.wfy-ba-heading h2 {

    margin: 0 0 15px;

    color: var(--wfy-heading);

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -1.5px;
}


.wfy-ba-heading h2 span {

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.wfy-ba-heading p {

    margin: 0 auto;

    color: var(--wfy-text);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   GALLERY
========================================================= */

.wfy-ba-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

    align-items: start;
}


/* =========================================================
   CARD
========================================================= */

.wfy-ba-card {

    position: relative;

    background: #ffffff;

    padding: 8px;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .05);

    transition:
        transform .45s ease,
        box-shadow .45s ease;
}


.wfy-ba-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .12);
}


/* =========================================================
   SINGLE COMPLETE IMAGE
========================================================= */

.wfy-ba-card img {

    display: block;

    width: 100%;

    height: auto;

    border-radius: 17px;

    object-fit: contain;

    transition:
        transform .6s ease;
}


.wfy-ba-card:hover img {

    transform: scale(1.025);
}


/* =========================================================
   VIEW MORE
========================================================= */

.wfy-ba-more {

    display: flex;

    justify-content: center;

    margin-top: 55px;
}


.wfy-ba-more-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 175px;

    height: 54px;

    padding: 0 25px;

    border: 2px solid var(--wfy-green-dark);

    border-radius: 50px;

    background: #ffffff;

    color: var(--wfy-heading);

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: .35s ease;
}


.wfy-ba-more-btn:hover {

    color: #ffffff;

    border-color: var(--wfy-red);

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(127, 186, 64, .18);
}


.wfy-ba-more-btn i {

    transition: transform .3s ease;
}


.wfy-ba-more-btn:hover i {

    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .wfy-ba-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .wfy-before-after-section {

        padding: 70px 0 80px;

    }

    .wfy-ba-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .wfy-before-after-section {

        padding: 55px 0 65px;

    }

    .wfy-ba-heading {

        margin-bottom: 35px;

    }

    .wfy-ba-heading h2 {

        font-size: 31px;

    }

    .wfy-ba-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .wfy-ba-card {

        padding: 6px;

        border-radius: 17px;

    }

    .wfy-ba-card img {

        border-radius: 13px;

    }

    .wfy-ba-more {

        margin-top: 35px;

    }

}


/* =========================================================
   WFY HOW WE WORK
========================================================= */

.wfy-how-section {

    position: relative;

    padding: 105px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   GRID
========================================================= */

.wfy-how-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}


/* =========================================================
   LEFT
========================================================= */

.wfy-how-left {

    padding-left: 70px;
}


.wfy-how-brand {

    margin-bottom: 28px;

    color: transparent;

    font-family: Georgia, serif;

    font-size: 72px;

    line-height: 1;

    -webkit-text-stroke: 1.5px var(--wfy-red);

    letter-spacing: -3px;
}


.wfy-how-left h2 {

    margin: 0;

    color: var(--wfy-heading);

    font-size: clamp(42px, 4vw, 48px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -2px;
}


.wfy-how-left h2 span {

    color: var(--wfy-heading);
}


/* =========================================================
   RIGHT STEPS
========================================================= */

.wfy-how-steps {

    width: 100%;
}


/* =========================================================
   STEP
========================================================= */

.wfy-how-step {

    display: grid;

    grid-template-columns: 115px 1fr;

    gap: 30px;

    padding: 0 0 30px;

    margin-bottom: 30px;

    border-bottom: 1px solid #222;
}


.wfy-how-step:last-child {

    border-bottom: 0;

    margin-bottom: 0;

    padding-bottom: 0;
}


/* =========================================================
   ICON
========================================================= */

.wfy-how-icon {

    width: 80px;

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--wfy-green);

    font-size: 40px;

    transition:
        transform .5s ease,
        color .4s ease;
}


.wfy-how-step:hover .wfy-how-icon {

    color: var(--wfy-red);

    transform:
        translateY(-6px) scale(1.06);
}


/* =========================================================
   CONTENT
========================================================= */

.wfy-how-content h3 {

    margin: 0 0 14px;

    color: var(--wfy-heading);

    font-size: 24px;

    line-height: 1.3;

    font-weight: 500;
}


.wfy-how-content p {

    max-width: 430px;

    margin: 0;

    color: var(--wfy-text);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.wfy-how-reveal {

    opacity: 0;

    transform: translateY(45px);

    transition:
        opacity .85s ease,
        transform .85s cubic-bezier(.22, 1, .36, 1);
}


.wfy-how-reveal.active {

    opacity: 1;

    transform: translateY(0);
}


/* Different timing */

.wfy-how-step:nth-child(1) {

    transition-delay: .05s;
}


.wfy-how-step:nth-child(2) {

    transition-delay: .18s;
}


.wfy-how-step:nth-child(3) {

    transition-delay: .31s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-how-section {

        padding: 80px 0;
    }


    .wfy-how-grid {

        gap: 50px;
    }


    .wfy-how-left {

        padding-left: 0;
    }


    .wfy-how-brand {

        font-size: 58px;
    }


    .wfy-how-left h2 {

        font-size: 42px;
    }


    .wfy-how-step {

        grid-template-columns: 80px 1fr;

        gap: 20px;
    }


    .wfy-how-icon {

        width: 75px;

        height: 75px;

        font-size: 38px;
    }


    .wfy-how-content h3 {

        font-size: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .wfy-how-section {

        padding: 60px 0;
    }


    .wfy-how-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .wfy-how-left {

        padding-left: 0;

        text-align: left;
    }


    .wfy-how-brand {

        font-size: 52px;

        margin-bottom: 18px;
    }


    .wfy-how-left h2 {

        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -1px;
    }


    .wfy-how-step {

        grid-template-columns: 70px 1fr;

        gap: 18px;

        padding-bottom: 25px;

        margin-bottom: 25px;
    }


    .wfy-how-icon {

        width: 65px;

        height: 65px;

        font-size: 34px;
    }


    .wfy-how-content h3 {

        font-size: 19px;

        margin-bottom: 9px;
    }


    .wfy-how-content p {

        font-size: 13px;

        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .wfy-how-left h2 {

        font-size: 30px;
    }


    .wfy-how-step {

        grid-template-columns: 55px 1fr;

        gap: 15px;
    }


    .wfy-how-icon {

        width: 55px;

        height: 55px;

        font-size: 28px;
    }


    .wfy-how-content h3 {

        font-size: 17px;
    }

}


/* =========================================================
   WFY SUCCESS STORIES SECTION
========================================================= */

.wfy-success-section {
    padding: 90px 0 100px;
    background: #faf7fb;
    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.wfy-success-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}


.wfy-success-title h2 {
    margin: 0;
    color: #151515;
    font-size: clamp(38px, 4vw, 46px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: -2px;
}


.wfy-success-title h2 span {
    /* background: linear-gradient(90deg,
            #00656A,
            #8e2b91,
            #d21878); */

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================================
   TOP BUTTON
========================================================= */

.wfy-success-btn {
    position: relative;

    flex-shrink: 0;

    min-width: 240px;
    height: 52px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border: 1.5px solid #8e2b91;
    border-radius: 50px;

    background: #ffffff;

    color: #171717;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    overflow: hidden;

    transition: all .35s ease;
}


.wfy-success-btn::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    transition: width .4s ease;

    z-index: 0;
}


.wfy-success-btn:hover::before {
    width: 100%;
}


.wfy-success-btn span,
.wfy-success-btn i {
    position: relative;
    z-index: 2;
}


.wfy-success-btn:hover {
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
}


.wfy-success-btn i {
    transition: transform .3s ease;
}


.wfy-success-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   VIDEO GRID
   3 COLUMNS
========================================================= */

.wfy-success-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 38px 24px;
}


/* =========================================================
   VIDEO ITEM
========================================================= */

.wfy-video-item {
    min-width: 0;
}


/* =========================================================
   VIDEO CARD
========================================================= */

.wfy-video-card {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 24px;

    background: #111111;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .10);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.wfy-video-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .16);
}


/* =========================================================
   YOUTUBE IFRAME
========================================================= */

.wfy-video-card iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    display: block;
}


/* =========================================================
   VIDEO TITLE
========================================================= */

.wfy-video-item h3 {
    margin: 18px 4px 0;

    color: #171717;

    font-size: 22px;

    line-height: 1.35;

    font-weight: 600;
}


/* =========================================================
   BOTTOM BUTTON
========================================================= */

.wfy-success-bottom {
    display: flex;

    justify-content: center;

    margin-top: 55px;
}


.wfy-view-more-btn {
    position: relative;

    min-width: 210px;
    height: 54px;

    padding: 0 28px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    border-radius: 50px;

    border: 1.5px solid #8e2b91;

    background: #ffffff;

    color: #171717;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    overflow: hidden;

    transition: all .35s ease;
}


.wfy-view-more-btn::before {
    content: "";

    position: absolute;

    inset: 0;

    width: 0;

    background: linear-gradient(90deg,
            #00656A,
            #8e2b91,
            #d21878);

    transition: width .4s ease;

    z-index: 0;
}


.wfy-view-more-btn:hover::before {
    width: 100%;
}


.wfy-view-more-btn span,
.wfy-view-more-btn i {
    position: relative;
    z-index: 2;
}


.wfy-view-more-btn:hover {
    color: #ffffff;

    border-color: transparent;

    transform: translateY(-3px);
}


.wfy-view-more-btn i {
    transition: transform .3s ease;
}


.wfy-view-more-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-success-section {
        padding: 75px 0 80px;
    }


    .wfy-success-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
    }


    .wfy-success-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }


    .wfy-video-item h3 {
        font-size: 19px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .wfy-success-section {
        padding: 60px 0 70px;
    }


    .wfy-success-head {
        gap: 25px;
    }


    .wfy-success-title h2 {
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -1px;
    }


    .wfy-success-btn {
        width: 100%;
        max-width: 245px;
    }


    .wfy-success-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .wfy-video-card {
        border-radius: 18px;
    }


    .wfy-video-item h3 {
        margin-top: 14px;
        font-size: 18px;
        line-height: 1.35;
    }


    .wfy-success-bottom {
        margin-top: 40px;
    }


    .wfy-view-more-btn {
        width: 100%;
        max-width: 230px;
    }

}

/* =========================================================
   WFY BLOG SECTION
========================================================= */

.wfy-blog-section {
    padding: 75px 0 85px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.wfy-blog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 38px;
}


.wfy-blog-head h2 {
    margin: 0;

    max-width: 850px;

    color: #171717;

    font-size: clamp(34px, 3.5vw, 40px);
    line-height: 1.12;

    font-weight: 500;

    letter-spacing: -1.5px;
}


.wfy-blog-head h2 span {
    /* background: linear-gradient(90deg,
            #00656A,
            #8e2b91,
            #d21878); */
    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   MORE ARTICLES BUTTON
========================================================= */

.wfy-blog-btn {
    flex-shrink: 0;

    min-width: 155px;
    height: 48px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid #8e2b91;
    border-radius: 50px;

    background: #fff;

    color: #171717;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: all .35s ease;
}


.wfy-blog-btn:hover {
    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));
    color: #fff;

    border-color: transparent;

    transform: translateY(-3px);
}


.wfy-blog-btn i {
    transition: transform .3s ease;
}


.wfy-blog-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   BLOG GRID
========================================================= */

.wfy-blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   BLOG CARD
========================================================= */

.wfy-blog-card {
    background: #fff;

    border: 1px solid #e8e8e8;

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.wfy-blog-card:hover {
    transform: translateY(-7px);

    border-color: #ddd;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .10);
}


/* =========================================================
   IMAGE
   COMPACT SIZE
========================================================= */

.wfy-blog-image {
    display: block;

    width: 100%;

    height: 220px;

    overflow: hidden;
}


.wfy-blog-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s ease;
}


.wfy-blog-card:hover .wfy-blog-image img {
    transform: scale(1.06);
}


/* =========================================================
   CONTENT
========================================================= */

.wfy-blog-content {
    padding: 18px 20px 22px;
}


/* =========================================================
   META
========================================================= */

.wfy-blog-meta {
    margin-bottom: 8px;

    font-size: 11px;

    color: #888;
}


.wfy-blog-meta i {
    margin-right: 5px;
}


/* =========================================================
   TITLE
========================================================= */

.wfy-blog-content h3 {
    margin: 0 0 18px;

    color: #171717;

    font-size: 20px;

    line-height: 1.35;

    font-weight: 500;
}


/* =========================================================
   READ MORE
========================================================= */

.wfy-read-more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--wfy-red);

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .3px;

    position: relative;
}


.wfy-read-more::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background: #d21878;

    transition: width .3s ease;
}


.wfy-read-more:hover::after {
    width: 100%;
}


.wfy-read-more i {
    font-size: 9px;

    transition: transform .3s ease;
}


.wfy-read-more:hover i {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-blog-section {
        padding: 65px 0 70px;
    }

    .wfy-blog-head {
        align-items: flex-start;
    }

    .wfy-blog-head h2 {
        font-size: 36px;
    }

    .wfy-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .wfy-blog-image {
        height: 200px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .wfy-blog-section {
        padding: 55px 0 60px;
    }

    .wfy-blog-head {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .wfy-blog-head h2 {
        font-size: 31px;
        line-height: 1.15;
        letter-spacing: -.8px;
    }

    .wfy-blog-btn {
        min-width: 145px;
        height: 45px;
    }

    .wfy-blog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .wfy-blog-image {
        height: 210px;
    }

    .wfy-blog-content {
        padding: 16px 18px 20px;
    }

    .wfy-blog-content h3 {
        font-size: 18px;
    }

}


/* =========================================================
   WFY FAQ SECTION
========================================================= */

.wfy-faq-section {
    position: relative;
    padding: 95px 0;
    background: #f8fafb;
    overflow: hidden;
}


/* Decorative circle */

.wfy-faq-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border: 1px solid rgba(142, 43, 145, .12);

    right: -230px;
    bottom: -230px;

    pointer-events: none;
}


/* =========================================================
   GRID
========================================================= */

.wfy-faq-grid {
    display: grid;

    grid-template-columns:
        minmax(300px, .8fr) minmax(500px, 1.2fr);

    gap: 90px;

    align-items: start;
}


/* =========================================================
   LEFT
========================================================= */

.wfy-faq-left {
    position: sticky;
    top: 120px;
}


.wfy-faq-tag {
    display: inline-flex;

    align-items: center;

    padding: 8px 17px;

    margin-bottom: 22px;

    border-radius: 50px;

    background: #e6f4f4;

    color: #00656A;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .5px;

    text-transform: uppercase;
}


.wfy-faq-left h2 {
    margin: 0 0 22px;

    color: #171717;

    font-size: clamp(35px, 4vw, 45px);

    line-height: 1.1;

    font-weight: 500;

    letter-spacing: -1.5px;
}


.wfy-faq-left h2 span {
    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;
}


.wfy-faq-left p {
    max-width: 500px;

    margin: 0 0 30px;

    color: #5f6368;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   FAQ BUTTON
========================================================= */

.wfy-faq-btn {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 205px;

    height: 52px;

    padding: 0 24px;

    border: 1px solid #8e2b91;

    border-radius: 50px;

    background: #ffffff;

    color: #171717;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    overflow: hidden;

    transition: all .35s ease;
}


.wfy-faq-btn::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    transition: width .4s ease;

    z-index: 0;
}


.wfy-faq-btn:hover::before {
    width: 100%;
}


.wfy-faq-btn span,
.wfy-faq-btn i {
    position: relative;
    z-index: 2;
}


.wfy-faq-btn:hover {
    color: #ffffff;

    border-color: transparent;

    transform: translateY(-3px);
}


.wfy-faq-btn i {
    transition: transform .3s ease;
}


.wfy-faq-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   FAQ RIGHT
========================================================= */

.wfy-faq-right {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.wfy-faq-item {
    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    overflow: hidden;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}


.wfy-faq-item:hover {
    border-color: #d8c0da;
}


.wfy-faq-item.active {
    border-color: #8e2b91;

    box-shadow:
        0 12px 30px rgba(142, 43, 145, .08);
}


/* =========================================================
   QUESTION
========================================================= */

.wfy-faq-question {
    width: 100%;

    min-height: 75px;

    padding: 20px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: 0;

    background: transparent;

    color: #171717;

    text-align: left;

    cursor: pointer;

    font-family: inherit;

    font-size: 17px;

    font-weight: 600;
}


.wfy-faq-question>span:first-child {
    flex: 1;
}


/* =========================================================
   ICON
========================================================= */

.wfy-faq-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f4edf5;

    color: #8e2b91;

    transition:
        background .3s ease,
        color .3s ease,
        transform .35s ease;
}


.wfy-faq-icon i {
    font-size: 12px;

    transition: transform .35s ease;
}


.wfy-faq-item.active .wfy-faq-icon {
    background:
        linear-gradient(90deg,
            var(--wfy-green-dark),
            var(--wfy-red));

    color: #ffffff;
}


.wfy-faq-item.active .wfy-faq-icon i {
    transform: rotate(45deg);
}


/* =========================================================
   ANSWER
========================================================= */

.wfy-faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .4s ease;
}


.wfy-faq-answer p {
    overflow: hidden;

    margin: 0;

    padding: 0 24px;

    color: #62666b;

    font-size: 14px;

    line-height: 1.8;

    transition:
        padding .4s ease;
}


.wfy-faq-item.active .wfy-faq-answer {
    grid-template-rows: 1fr;
}


.wfy-faq-item.active .wfy-faq-answer p {
    padding:
        0 24px 23px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-faq-section {
        padding: 75px 0;
    }

    .wfy-faq-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .wfy-faq-left {
        position: static;
    }

    .wfy-faq-left h2 {
        font-size: 42px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .wfy-faq-section {
        padding: 60px 0;
    }

    .wfy-faq-grid {
        gap: 35px;
    }

    .wfy-faq-left h2 {
        font-size: 32px;

        letter-spacing: -.8px;
    }

    .wfy-faq-left p {
        font-size: 14px;

        line-height: 1.7;
    }

    .wfy-faq-btn {
        width: 100%;
    }

    .wfy-faq-question {
        min-height: 68px;

        padding: 17px 16px;

        font-size: 15px;
    }

    .wfy-faq-icon {
        width: 30px;
        height: 30px;
    }

    .wfy-faq-answer p {
        padding-left: 16px;
        padding-right: 16px;

        font-size: 13px;
    }

    .wfy-faq-item.active .wfy-faq-answer p {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 18px;
    }

}


/* =========================================================
   WFY PREMIUM CTA
========================================================= */

.wfy-cta-section {
    padding: 80px 0;
    background: #ffffff;
}


/* =========================================================
   CTA BOX
========================================================= */

.wfy-cta-box {
    position: relative;
    min-height: 430px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    padding: 65px 75px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(120deg, #00575B 0%, #00656A 42%, #006166 100%);
    box-shadow: 0 25px 60px rgba(0, 101, 106, .18);
}


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.wfy-cta-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .18);

    pointer-events: none;
}


.wfy-cta-circle-1 {
    width: 500px;
    height: 500px;

    right: -210px;
    top: -280px;
}


.wfy-cta-circle-2 {
    width: 330px;
    height: 330px;

    right: -90px;
    bottom: -220px;

    border-color: rgba(255, 255, 255, .12);
}


/* =========================================================
   CONTENT
========================================================= */

.wfy-cta-content {
    position: relative;

    z-index: 3;

    max-width: 720px;
}


.wfy-cta-tag {
    display: inline-flex;

    align-items: center;

    padding: 8px 17px;

    margin-bottom: 20px;

    border: 1px solid rgba(255, 255, 255, .28);

    border-radius: 50px;

    color: #ffffff;

    background: rgba(255, 255, 255, .08);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;
}


.wfy-cta-content h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 48px);

    line-height: 1.08;

    font-weight: 500;

    letter-spacing: -1.8px;
}


.wfy-cta-content h2 span {
    display: block;

    color: #fff;
}


.wfy-cta-content p {
    max-width: 650px;

    margin: 0 0 30px;

    color: rgba(255, 255, 255, .86);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.wfy-cta-actions {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


.wfy-cta-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 50px;

    background: #ffffff;

    color: #171717;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: all .35s ease;
}


.wfy-cta-primary:hover {
    background: var(--wfy-red);

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .15);
}


.wfy-cta-primary i {
    transition: transform .3s ease;
}


.wfy-cta-primary:hover i {
    transform: translateX(5px);
}


.wfy-cta-phone {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 22px;

    border: 1px solid rgba(255, 255, 255, .4);

    border-radius: 50px;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: all .35s ease;
}


.wfy-cta-phone:hover {
    background: rgba(255, 255, 255, .12);

    border-color: #ffffff;

    color: #ffffff;

    transform: translateY(-3px);
}


.wfy-cta-phone i {
    font-size: 12px;
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.wfy-cta-visual {
    position: relative;

    min-height: 300px;

    z-index: 2;
}


.wfy-cta-number,
.wfy-cta-experience,
.wfy-cta-badge {
    position: absolute;

    display: flex;

    flex-direction: column;
}


/* 12000 */

.wfy-cta-number {
    top: 10px;
    right: 20px;
}


.wfy-cta-number strong {
    color: #ffffff;

    font-size: 58px;

    line-height: 1;

    font-weight: 700;
}


.wfy-cta-number span,
.wfy-cta-experience span {
    margin-top: 8px;

    color: rgba(255, 255, 255, .78);

    font-size: 13px;

    font-weight: 600;
}


/* 20+ */

.wfy-cta-experience {
    right: 110px;
    bottom: 15px;
}


.wfy-cta-experience strong {
    color: transparent;

    font-size: 72px;

    line-height: 1;

    -webkit-text-stroke: 1px rgba(255, 255, 255, .75);
}


/* Badge */

.wfy-cta-badge {
    left: 20px;
    bottom: 25px;

    width: 145px;
    height: 145px;

    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .10);

    border: 1px solid rgba(255, 255, 255, .22);

    text-align: center;

    backdrop-filter: blur(5px);
}


.wfy-cta-badge i {
    color: #fff;

    font-size: 28px;
}


.wfy-cta-badge span {
    color: #ffffff;

    font-size: 11px;

    line-height: 1.5;

    font-weight: 600;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-cta-section {
        padding: 65px 0;
    }

    .wfy-cta-box {
        grid-template-columns: 1fr;

        padding: 55px 45px;
    }

    .wfy-cta-visual {
        min-height: 180px;

        margin-top: 25px;
    }

    .wfy-cta-number {
        left: 0;
        right: auto;
    }

    .wfy-cta-experience {
        right: 20px;
    }

    .wfy-cta-badge {
        left: 45%;
        bottom: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .wfy-cta-section {
        padding: 50px 0;
    }

    .wfy-cta-box {
        min-height: auto;

        padding: 40px 25px;

        border-radius: 22px;
    }

    .wfy-cta-content h2 {
        font-size: 34px;

        letter-spacing: -.8px;
    }

    .wfy-cta-content p {
        font-size: 14px;

        line-height: 1.7;
    }

    .wfy-cta-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .wfy-cta-primary,
    .wfy-cta-phone {
        width: 100%;
    }

    .wfy-cta-visual {
        min-height: 220px;

        margin-top: 20px;
    }

    .wfy-cta-number strong {
        font-size: 42px;
    }

    .wfy-cta-experience {
        right: 0;
    }

    .wfy-cta-experience strong {
        font-size: 52px;
    }

    .wfy-cta-badge {
        left: 25%;
        bottom: 0;

        width: 120px;
        height: 120px;
    }

}


/* =========================================================
   WFY PREMIUM FOOTER
========================================================= */

.wfy-footer {
    position: relative;

    /* background:
        linear-gradient(
            135deg,
            #063f42 0%,
            #00575B 38%,
            #54246f 100%
        ); */

    background-color: #063f42;

    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   DECORATIVE ELEMENT
========================================================= */

.wfy-footer::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -190px;
    top: -250px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .12);

    box-shadow:
        0 0 0 45px rgba(255, 255, 255, .025),
        0 0 0 90px rgba(255, 255, 255, .02);

    pointer-events: none;
}


.wfy-footer::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -170px;
    bottom: -180px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .08);

    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.wfy-footer-main {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.4fr .8fr 1fr 1.1fr;

    gap: 55px;

    padding: 75px 0 60px;
}


/* =========================================================
   BRAND
========================================================= */

.wfy-footer-brand {
    max-width: 340px;
}


.wfy-footer-logo {
    display: inline-block;

    margin-bottom: 22px;
}


.wfy-footer-logo img {
    width: 190px;

    height: auto;

    display: block;

    /* If logo has white background, this keeps it cleaner */
    object-fit: contain;
}


.wfy-footer-brand p {
    margin: 0 0 25px;

    color: rgba(255, 255, 255, .72);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   APPOINTMENT BUTTON
========================================================= */

.wfy-footer-appointment {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 48px;

    padding: 0 21px;

    border-radius: 50px;

    background: #ffffff;

    color: #171717;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: all .35s ease;
}


.wfy-footer-appointment:hover {

    background: #d21878;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .15);
}


.wfy-footer-appointment i {
    transition: transform .3s ease;
}


.wfy-footer-appointment:hover i {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.wfy-footer-col h3 {

    position: relative;

    margin: 0 0 25px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 17px;

    font-weight: 600;
}


.wfy-footer-col h3::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 2px;

    background:
        linear-gradient(90deg,
            #00a5a9,
            #d21878);
}


/* =========================================================
   LINKS
========================================================= */

.wfy-footer-col ul {

    list-style: none;

    margin: 0;
    padding: 0;
}


.wfy-footer-col ul li {

    margin-bottom: 12px;
}


.wfy-footer-col ul li a {

    position: relative;

    color: rgba(255, 255, 255, .68);

    text-decoration: none;

    font-size: 13px;

    transition:
        color .3s ease,
        padding-left .3s ease;
}


.wfy-footer-col ul li a::before {

    content: "";

    position: absolute;

    left: -13px;
    top: 50%;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #d21878;

    opacity: 0;

    transform: translateY(-50%);

    transition: opacity .3s ease;
}


.wfy-footer-col ul li a:hover {

    color: #ffffff;

    padding-left: 9px;
}


.wfy-footer-col ul li a:hover::before {

    opacity: 1;
}


/* =========================================================
   CONTACT
========================================================= */

.wfy-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 19px;
}


.wfy-contact-icon {

    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .09);

    color: #fff;

    font-size: 12px;
}


.wfy-contact-item div {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.wfy-contact-item small {

    color: rgba(255, 255, 255, .45);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .7px;
}


.wfy-contact-item a,
.wfy-contact-item div>span {

    color: rgba(255, 255, 255, .82);

    text-decoration: none;

    font-size: 13px;

    line-height: 1.5;

    transition: color .3s ease;
}


.wfy-contact-item a:hover {

    color: #ffffff;
}


/* =========================================================
   SOCIAL
========================================================= */

.wfy-footer-social {

    display: flex;

    gap: 9px;

    margin-top: 24px;
}


.wfy-footer-social a {

    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .2);

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    transition: all .3s ease;
}


.wfy-footer-social a:hover {

    background: var(--wfy-red);

    border-color: var(--wfy-red);

    transform: translateY(-4px);
}


/* =========================================================
   BOTTOM
========================================================= */

.wfy-footer-bottom {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, .12);
}


.wfy-footer-bottom p {

    margin: 0;

    color: rgba(255, 255, 255, .55);

    font-size: 13px;
}


.wfy-footer-legal {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;
}


.wfy-footer-legal a {

    color: rgba(255, 255, 255, .55);

    text-decoration: none;

    font-size: 11px;

    transition: color .3s ease;
}


.wfy-footer-legal a:hover {

    color: #ffffff;
}


.wfy-footer-legal span {

    color: rgba(255, 255, 255, .25);

    font-size: 10px;
}


/* =========================================================
   DEVELOPED BY
========================================================= */

.wfy-developed {

    text-align: right;
    font-size: 15px;
}


.wfy-developed a {

    color: #fff !important;

    text-decoration: none;

    font-weight: 700;

    transition: color .3s ease;
}


.wfy-developed a:hover {

    color: #ffffff !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .wfy-footer-main {

        grid-template-columns:
            1.2fr 1fr;

        gap: 45px 35px;

        padding: 60px 0 50px;
    }

    .wfy-footer-brand {

        max-width: 100%;
    }

    .wfy-footer-bottom {

        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }

    .wfy-footer-legal {

        justify-content: flex-end;
    }

    .wfy-developed {

        grid-column: 1 / -1;

        text-align: center;

        padding-top: 10px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .wfy-footer-main {

        grid-template-columns: 1fr;

        gap: 38px;

        padding: 50px 0 40px;
    }

    .wfy-footer-brand {

        max-width: 100%;
    }

    .wfy-footer-logo img {

        width: 165px;
    }

    .wfy-footer-brand p {

        font-size: 13px;
    }

    .wfy-footer-col h3 {

        margin-bottom: 20px;
    }

    .wfy-footer-bottom {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 13px;
    }

    .wfy-footer-bottom p {

        text-align: center;
    }

    .wfy-footer-legal {

        justify-content: center;

        flex-wrap: wrap;
    }

    .wfy-developed {

        grid-column: auto;

        padding-top: 0;
    }

    .wfy-footer-social {

        margin-top: 20px;
    }

}


/* =========================================================
   FLOATING CALL + WHATSAPP BUTTONS
========================================================= */

.wfy-floating-call,
.wfy-floating-whatsapp {

    position: fixed;

    bottom: 22px;

    width: 64px;
    height: 64px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    text-decoration: none;

    z-index: 9999;

    transition: all .35s ease;

}


/* =========================================================
   CALL BUTTON - LEFT
========================================================= */

.wfy-floating-call {

    left: 22px;

    background: #cd2122;

    color: #ffffff;

    box-shadow:
        0 8px 25px rgba(7, 80, 155, .30);

}


/* Outer ring */

.wfy-floating-call::before {

    content: "";

    position: absolute;

    inset: -9px;

    border-radius: 50%;

    border: 2px solid rgba(7, 80, 155, .18);

}


/* Icon */

.wfy-floating-call i {

    font-size: 25px;

    transform: rotate(-8deg);

}


/* Hover */

.wfy-floating-call:hover {

    color: #ffffff;

    transform: translateY(-5px) scale(1.05);

    background: #063f42;

    box-shadow:
        0 12px 30px rgba(7, 80, 155, .38);

}


/* =========================================================
   WHATSAPP BUTTON - RIGHT
========================================================= */

.wfy-floating-whatsapp {

    right: 22px;

    background: #20d66b;

    color: #ffffff;

    box-shadow:
        0 8px 25px rgba(32, 214, 107, .30);

}


/* Outer ring */

.wfy-floating-whatsapp::before {

    content: "";

    position: absolute;

    inset: -9px;

    border-radius: 50%;

    border: 2px solid rgba(32, 214, 107, .18);

}


/* Icon */

.wfy-floating-whatsapp i {

    font-size: 30px;

}


/* Hover */

.wfy-floating-whatsapp:hover {

    color: #ffffff;

    transform: translateY(-5px) scale(1.05);

    background: #16b957;

    box-shadow:
        0 12px 30px rgba(32, 214, 107, .40);

}


/* =========================================================
   PULSE ANIMATION
========================================================= */

.wfy-floating-call::after,
.wfy-floating-whatsapp::after {

    content: "";

    position: absolute;

    inset: -9px;

    border-radius: 50%;

    animation: wfyFloatPulse 2.2s infinite;

}


.wfy-floating-call::after {

    border: 1px solid rgba(7, 80, 155, .25);

}


.wfy-floating-whatsapp::after {

    border: 1px solid rgba(32, 214, 107, .25);

}


@keyframes wfyFloatPulse {

    0% {

        transform: scale(.9);

        opacity: .8;

    }

    70% {

        transform: scale(1.25);

        opacity: 0;

    }

    100% {

        transform: scale(1.25);

        opacity: 0;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .wfy-floating-call,
    .wfy-floating-whatsapp {

        width: 52px;
        height: 52px;

        bottom: 16px;

    }


    .wfy-floating-call {

        left: 15px;

    }


    .wfy-floating-whatsapp {

        right: 15px;

    }


    .wfy-floating-call i {

        font-size: 20px;

    }


    .wfy-floating-whatsapp i {

        font-size: 25px;

    }

}


/* ================= Mdal Form ================= */

.consultation-modal .modal-dialog {
    max-width: 470px;
}

.consultation-modal .modal-content {
    border-radius: 26px;
    padding: 32px 30px;
    border: none;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    padding-bottom: 0px;
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.modal-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* FORCE ONE COLUMN LAYOUT */
.modal-form-fix .row {
    display: block !important;
}

.modal-form-fix [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
}

.modal-form-fix input,
.modal-form-fix select,
.modal-form-fix textarea {
    width: 100% !important;
    height: 50px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px !important;
    background: #f8f9fb;
    transition: all 0.2s ease;
}

.modal-form-fix input:focus,
.modal-form-fix select:focus {
    border-color: #3d6de0;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(61, 109, 224, 0.1);
}

.modal-form-fix select {
    height: 52px;
}

.modal-form-fix button,
.modal-form-fix input[type="submit"] {
    width: 100%;
    border: none;
    height: 52px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    background: var(--wfy-red);
    color: #fff;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.modal-form-fix button:hover,
.modal-form-fix input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 109, 224, 0.3);
    background: var(--wfy-green);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .consultation-modal .modal-content {
        padding: 25px 20px;
    }
}

.custom-select-wrap {
    position: relative;
    width: 100%;
}

.custom-select-wrap .form-select {
    width: 100%;
    height: 60px;
    border: 1px solid #d9d9d9;
    border-radius: 18px;
    padding: 0 55px 0 20px;
    font-size: 18px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    cursor: pointer;
}

.custom-select-wrap i {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #002F6C;
    pointer-events: none;
    line-height: 1;
}


/* =========================================================
   MODAL - HEADER KE UPAR PROPERLY OPEN HO
========================================================= */

/* Bootstrap modal itself */
.consultation-modal {
    z-index: 99999 !important;
}


/* Dark overlay */
.consultation-modal + .modal-backdrop,
.modal-backdrop {
    z-index: 99998 !important;
}


/* Modal dialog */
.consultation-modal .modal-dialog {
    position: relative;
    z-index: 100000 !important;

    margin: 80px auto 30px !important;
}


/* Modal content */
.consultation-modal .modal-content {
    position: relative;
    z-index: 100001 !important;
}


/* Header ko modal ke neeche rakho */
header,
.navbar,
.custom-navbar {
    z-index: 1000 !important;
}