 /* Full-width New Life Hospice hero - Oldero inspired structure with Carely typography */
    .newlife-hero {
        position: relative;
        width: 100%;
        min-height: 780px;
        overflow: hidden;
        isolation: isolate;
        display: flex;
        align-items: center;
        padding: 120px 0 85px;
        background:
           linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(210, 190, 235, 0.98) 53%,
    rgba(255, 255, 255, 0.98) 100%
);
    }

    .newlife-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        <!-- background-image:
            linear-gradient(rgba(9, 79, 73, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(9, 79, 73, 0.05) 1px, transparent 1px); -->
        background-size: 94px 94px;
        opacity: 0.95;
    }

    .newlife-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        
        pointer-events: none;
    }

    .newlife-hero .container-fluid {
        width: 100%;
        max-width: none !important;
        padding-left: clamp(24px, 7vw, 128px);
        padding-right: clamp(24px, 7vw, 128px);
    }

    .newlife-hero .row {
        min-height: 610px;
    }

    .newlife-hero-content {
        position: relative;
        z-index: 5;
        max-width: 760px;
        padding-top: 20px;
    }

    .newlife-hero .section-title {
        margin-bottom: 0;
    }

    .newlife-hero .section-title h3,
    .newlife-hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 22px;
        /* color: #078f83; */
        /* font-family: "Plus Jakarta Sans", sans-serif; */
        font-size: 14px;
        font-weight: 800;
        line-height: 1.3;
        letter-spacing: 0.14em;
        /* text-transform: uppercase; */
    }

    .newlife-hero-kicker::before {
        content: "";
        width: 10px;
        height: 10px;
        display: inline-block;
        border-radius: 50%;
        background: #078f83;
        box-shadow: 0 0 0 7px rgba(7, 143, 131, 0.12);
        flex: 0 0 10px;
    }

    /* Keep the same Carely heading feel, not the Oldero font treatment */
    .newlife-hero .section-title h1 {
        max-width: 760px;
        margin-bottom: 24px;
        color: #071d1a;
        font-family: "Lora", serif;
        font-size: clamp(46px, 4.85vw, 78px);
        font-weight: 700;
        line-height: 1.12;
        letter-spacing: -0.025em;
    }

    .newlife-hero .section-title h1 span {
        color: #000;
    }

    .newlife-hero .section-title p {
        max-width: 710px;
        margin-bottom: 0;
        color: #526a66;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 17px;
        line-height: 1.75;
    }

    .newlife-hero-actions {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 26px;
        margin-top: 38px;
    }

    .newlife-hero-actions .btn-default {
        min-height: 58px;
        display: inline-flex;
        align-items: center;
    }

    .newlife-hero-phone {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        text-decoration: none;
    }

    .newlife-hero-phone .icon-box {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #071d1a;
        background: #f8df8d;
        font-size: 19px;
        flex: 0 0 58px;
    }

    .newlife-hero-phone span {
        display: block;
        color: #667875;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.2;
    }

    .newlife-hero-phone strong {
        display: block;
        margin-top: 5px;
        color: #071d1a;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 20px;
        font-weight: 800;
        line-height: 1.2;
    }

    .newlife-hero-visual {
        min-height: 640px;
        position: relative;
        z-index: 2;
    }

    .newlife-border-text {
        position: absolute;
        top: 34px;
        left: 2%;
        z-index: 0;
        color: transparent;
        -webkit-text-stroke: 1.3px rgba(255, 255, 255, 0.88);
        font-family: "Lora", serif;
        font-size: clamp(70px, 7vw, 128px);
        font-weight: 600;
        line-height: 1;
        letter-spacing: -0.04em;
        text-transform: uppercase;
        white-space: nowrap;
        opacity: 0.92;
    }

    .newlife-hero-image-wrap {
        position: absolute;
        left: 45%;
        transform: translateX(-50%);
        z-index: 2;
        width: min(58vw, 650px);
        max-width: 650px;
        text-align: center;
    }

    .newlife-hero-image-wrap::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 38px;
        width: 76%;
        height: 78%;
        transform: translateX(-50%);
        border-radius: 48% 52% 42% 58%;
        <!-- background: rgba(255, 255, 255, 0.48); -->
        z-index: -1;
    }

    .newlife-hero-main-img {
        display: inline-block;
        max-width: 100%;
        height: auto;
        filter: drop-shadow(0 34px 42px rgba(22, 59, 54, 0.18));
    }

    .newlife-trusted-card {
        position: absolute;
        top: 170px;
        right: 7%;
        z-index: 4;
        width: 245px;
        padding: 18px 20px 20px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.64);
        backdrop-filter: blur(12px);
        box-shadow: 0 22px 55px rgba(17, 64, 58, 0.12);
    }

    .newlife-avatar-row {
        display: flex;
        margin-bottom: 14px;
    }

    .newlife-avatar-row img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #ffffff;
        margin-left: -12px;
        box-shadow: 0 10px 25px rgba(10, 49, 44, 0.12);
    }

    .newlife-avatar-row img:first-child {
        margin-left: 0;
    }

    .newlife-trusted-card h4 {
        margin: 0 0 8px;
        color: #071d1a;
        font-family: "Lora", serif;
        font-size: 23px;
        font-weight: 700;
        line-height: 1.2;
    }

    .newlife-trusted-card p {
        margin: 0;
        color: #5f746f;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 15px;
        line-height: 1.55;
    }

    .newlife-quote-card {
        position: absolute;
        right: 2%;
        bottom: 78px;
        z-index: 5;
        max-width: 480px;
        display: flex;
        align-items: center;
        gap: 22px;
        padding: 22px 28px;
        border-radius: 14px;
        background: rgba(27, 45, 42, 0.66);
        backdrop-filter: blur(10px);
        box-shadow: 0 25px 70px rgba(10, 39, 35, 0.18);
    }

    .newlife-quote-card img {
        width: 92px;
        height: 92px;
        flex: 0 0 92px;
        border-radius: 12px;
        object-fit: cover;
    }

    .newlife-quote-card p {
        margin: 0 0 10px;
        color: #ffffff;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 17px;
        font-weight: 700;
        line-height: 1.45;
    }

    .newlife-quote-card span {
        color: rgba(255, 255, 255, 0.86);
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 14px;
        font-weight: 700;
    }

    .newlife-quote-card span small {
        color: rgba(255, 255, 255, 0.72);
        font-size: 14px;
        font-weight: 500;
    }

    @media (max-width: 1399px) {
        .newlife-hero {
            min-height: 720px;
            padding-top: 105px;
        }

        .newlife-hero .container-fluid {
            padding-left: 48px;
            padding-right: 48px;
        }

        .newlife-hero .section-title h1 {
            font-size: clamp(44px, 4.6vw, 70px);
        }

        .newlife-hero-visual {
            min-height: 590px;
        }

        .newlife-hero-image-wrap {
            width: min(54vw, 585px);
            left: 43%;
        }

        .newlife-trusted-card {
            right: 1%;
            top: 150px;
        }

        .newlife-quote-card {
            right: 0;
            max-width: 430px;
        }
    }

    @media (max-width: 1199px) {
        .newlife-hero {
            min-height: auto;
            padding: 100px 0 70px;
        }

        .newlife-hero .row {
            min-height: auto;
        }

        .newlife-hero-visual {
            min-height: 540px;
            margin-top: 35px;
        }

        .newlife-hero-image-wrap {
            width: min(70vw, 560px);
            left: 44%;
        }

        .newlife-border-text {
            top: 25px;
        }

        .newlife-trusted-card {
            top: 115px;
            right: 0;
        }

        .newlife-quote-card {
            right: 0;
            bottom: 42px;
        }
    }

    @media (max-width: 991px) {
        .newlife-hero {
            padding: 90px 0 65px;
        }

        .newlife-hero .container-fluid {
            padding-left: 24px;
            padding-right: 24px;
        }

        .newlife-hero-content {
            max-width: 100%;
            padding-top: 0;
        }

        .newlife-hero .section-title h1 {
            max-width: 720px;
        }

        .newlife-hero-visual {
            min-height: 560px;
        }

        .newlife-hero-image-wrap {
            left: 43%;
            width: min(72vw, 540px);
        }

        .newlife-trusted-card {
            top: 130px;
            right: 4%;
        }

        .newlife-quote-card {
            right: 4%;
            bottom: 40px;
            max-width: 430px;
        }
    }

    @media (max-width: 767px) {
        .newlife-hero {
            padding: 76px 0 52px;
        }

        .newlife-hero .section-title h3,
        .newlife-hero-kicker {
            font-size: 12px;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }

        .newlife-hero .section-title h1 {
            font-size: 42px;
            line-height: 1.12;
        }

        .newlife-hero .section-title p {
            font-size: 16px;
        }

        .newlife-hero-actions {
            gap: 18px;
            margin-top: 28px;
        }

        .newlife-hero-phone strong {
            font-size: 17px;
        }

        .newlife-hero-visual {
            min-height: auto;
            padding-top: 48px;
        }

        .newlife-border-text {
            top: 30px;
            left: 0;
            font-size: 52px;
        }

        .newlife-hero-image-wrap {
            position: relative;
            left: auto;
            bottom: auto;
            transform: none;
            width: min(86vw, 430px);
            margin: 0 auto 18px;
        }

        .newlife-trusted-card,
        .newlife-quote-card {
            position: relative;
            top: auto;
            right: auto;
            bottom: auto;
            width: 100%;
            max-width: 100%;
            margin: 16px 0 0;
        }

        .newlife-quote-card {
            padding: 18px;
            gap: 15px;
        }

        .newlife-quote-card img {
            width: 72px;
            height: 72px;
            flex-basis: 72px;
        }
    }




/* =====================================================
   RIGHT HERO VISUAL FIX - MATCH OLDERO STYLE
   Paste at the bottom of custom.css
===================================================== */

/* Right visual wrapper */
.newlife-hero-visual {
    position: relative !important;
    min-height: 650px !important;
    width: 100% !important;
    z-index: 2 !important;
}

/* Large background outline text */
.newlife-border-text {
    position: absolute !important;
    top: 45px !important;
    left: 0 !important;
    z-index: 0 !important;
    color: transparent !important;
    -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.9) !important;
    font-family: "Lora", serif !important;
    font-size: clamp(78px, 7vw, 130px) !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    opacity: 0.95 !important;
}

/* Main doctor / patient image */
.newlife-hero-image-wrap {
    position: absolute !important;
    left: 30% !important;
    bottom: -95px !important;
    transform: translateX(-50%) !important;
    z-index: 2 !important;
    width: min(48vw, 620px) !important;
    max-width: 620px !important;
    text-align: center !important;
}

.newlife-hero-image-wrap::before {
    display: none !important;
}

.newlife-hero-main-img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    filter: drop-shadow(0 34px 42px rgba(22, 59, 54, 0.18)) !important;
}

/* Trusted section should NOT look like a card */
.newlife-trusted-card {
    position: absolute !important;
    top: 145px !important;
    right: 115px !important;
    z-index: 4 !important;
    width: 285px !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

/* Avatars */
.newlife-avatar-row {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 22px !important;
}

.newlife-avatar-row img {
    width: 62px !important;
    height: 62px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid #ffffff !important;
    margin-left: -14px !important;
    box-shadow: 0 10px 24px rgba(10, 49, 44, 0.12) !important;
}

.newlife-avatar-row img:first-child {
    margin-left: 0 !important;
}

/* Trusted text */
.newlife-trusted-card h4 {
    margin: 0 0 14px !important;
    color: #071d1a !important;
    font-family: "Lora", serif !important;
    font-size: 25px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.newlife-trusted-card p {
    margin: 0 !important;
    max-width: 250px !important;
    color: #667875 !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
}

/* Dark quote card */
.newlife-quote-card {
    position: absolute !important;
    right: 40px !important;
    bottom: 95px !important;
    z-index: 5 !important;
    width: 485px !important;
    max-width: 485px !important;
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
    padding: 22px 28px !important;
    border-radius: 12px !important;
    background: rgba(38, 55, 51, 0.66) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 25px 70px rgba(10, 39, 35, 0.18) !important;
}

.newlife-quote-card img {
    width: 92px !important;
    height: 92px !important;
    flex: 0 0 92px !important;
    border-radius: 12px !important;
    object-fit: cover !important;
}

.newlife-quote-card p {
    margin: 0 0 12px !important;
    color: #ffffff !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
}

.newlife-quote-card span {
    color: #ffffff !important;
    font-family: "Lora", serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.newlife-quote-card span small {
    color: rgba(255, 255, 255, 0.78) !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

/* Laptop adjustment */
@media (max-width: 1399px) {
    .newlife-hero-visual {
        min-height: 610px !important;
    }

    .newlife-hero-image-wrap {
        left: 28% !important;
        width: min(48vw, 570px) !important;
        bottom: -75px !important;
    }

    .newlife-trusted-card {
        top: 135px !important;
        right: 55px !important;
    }

    .newlife-quote-card {
        right: 0 !important;
        bottom: 80px !important;
        width: 450px !important;
        max-width: 450px !important;
    }
}

/* Tablet */
@media (max-width: 1199px) {
    .newlife-hero-visual {
        min-height: 560px !important;
        margin-top: 40px !important;
    }

    .newlife-hero-image-wrap {
        left: 35% !important;
        width: min(65vw, 540px) !important;
        bottom: -55px !important;
    }

    .newlife-trusted-card {
        top: 105px !important;
        right: 20px !important;
    }

    .newlife-quote-card {
        right: 10px !important;
        bottom: 45px !important;
        width: 430px !important;
        max-width: 430px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .newlife-hero-visual {
        min-height: auto !important;
        padding-top: 45px !important;
    }

    .newlife-border-text {
        top: 20px !important;
        left: 0 !important;
        font-size: 54px !important;
    }

    .newlife-hero-image-wrap {
        position: relative !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: min(88vw, 430px) !important;
        margin: 0 auto 22px !important;
    }

    .newlife-trusted-card,
    .newlife-quote-card {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 18px 0 0 !important;
    }

    .newlife-trusted-card {
        text-align: left !important;
    }

    .newlife-quote-card {
        padding: 18px !important;
        gap: 15px !important;
    }

    .newlife-quote-card img {
        width: 72px !important;
        height: 72px !important;
        flex: 0 0 72px !important;
    }
}
    

/* Phone button blinking color effect */
.phone-header-btn {
    padding: 10px 12px !important;
    background: #eefbf7 !important;
    border-radius: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.phone-header-btn .blink-call-btn {
    min-width: 190px !important;
    min-height: 48px !important;
    padding: 0 22px !important;
    border-radius: 7px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    border: none !important;

    background-color: #000000 !important;
    color: #ffffff !important;

      animation: phoneColorBlink 2.4s ease-in-out infinite !important;
    -webkit-animation: phoneColorBlink 2.4s ease-in-out infinite !important;
}

/* Stop template btn-default arrow/overlay conflict if still applied */
.phone-header-btn .blink-call-btn::before,
.phone-header-btn .blink-call-btn::after {
    display: none !important;
    content: none !important;
}

/* Color blink animation */
@keyframes phoneColorBlink {
    0% {
        background-color: #000000;
        color: #ffffff;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.35);
        transform: scale(1);
    }

    50% {
        background-color: #e2a76f;
        color: #000000;
        box-shadow: 0 0 0 8px rgba(226, 167, 111, 0.25);
        transform: scale(1.04);
    }

    100% {
        background-color: #000000;
        color: #ffffff;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.35);
        transform: scale(1);
    }
}

@-webkit-keyframes phoneColorBlink {
    0% {
        background-color: #000000;
        color: #ffffff;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.35);
        transform: scale(1);
    }

    50% {
        background-color: #e2a76f;
        color: #000000;
        box-shadow: 0 0 0 8px rgba(226, 167, 111, 0.25);
        transform: scale(1.04);
    }

    100% {
        background-color: #000000;
        color: #ffffff;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.35);
        transform: scale(1);
    }
}




