        /* MAIN SECTION */
        .need-help-call-section {
            width: 100%;
            padding: 20px;
            box-sizing: border-box;
        }


        /* WHITE BOX */
        .need-help-call-box {
            width: 100%;
            max-width: 435px;
            min-height: 370px;
            margin: 0 auto;

            padding: 45px 30px;
            box-sizing: border-box;

            background: #ffffff;

            border-radius: 16px;

            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);

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


        /* SMALL TITLE */
        .need-help-small-title {
            display: block;

            margin-bottom: 12px;

            font-size: 13px;
            font-weight: 700;

            letter-spacing: 1.5px;

            color: #5B2C58;
        }


        /* MAIN HEADING */
        .need-help-call-box h2 {
            margin: 0 0 18px;

            font-size: 30px;
            line-height: 1.2;
            font-weight: 600;

            color: #172033;

            font-family: 'Raleway', sans-serif;
        }


        /* DESCRIPTION */
        .need-help-description {
            margin: 0 0 28px;

            font-size: 15px;
            line-height: 1.7;

            color: #000000;

            font-family: 'Raleway', sans-serif;
            font-weight: 600;
        }


        /* CALL AREA */
        .need-help-call-area {
            padding-top: 5px;
        }


        /* CALL LABEL */
        .need-help-call-label {
            display: block;

            margin-bottom: 10px;

            font-size: 12px;
            font-weight: 700;

            letter-spacing: 1.5px;

            color: #667085;
        }


        /* PHONE */
        .need-help-phone {
            display: inline-flex;

            align-items: center;

            gap: 12px;

            text-decoration: none !important;

            font-size: 23px;
            font-weight: 700;

            color: #172033 !important;

            transition: all 0.3s ease;
        }


        /* PHONE ICON */
        .need-help-phone-icon {
            width: 42px;
            height: 42px;

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

            border-radius: 50%;

            background: #5B2C58;

            color: #ffffff;

            font-size: 16px;

            transition: all 0.3s ease;
        }


        /* HOVER */
        .need-help-phone:hover {
            transform: translateY(-2px);
        }

        .need-help-phone:hover .need-help-phone-icon {
            transform: scale(1.08);
        }


        /* MOBILE */
        @media (max-width: 600px) {

            .need-help-call-section {
                padding: 15px;
            }

            .need-help-call-box {
                max-width: 100%;
                min-height: 350px;

                padding: 35px 25px;
            }

            .need-help-call-box h2 {
                font-size: 27px;
            }

            .need-help-description {
                font-size: 14px;
            }

            .need-help-phone {
                font-size: 21px;
            }

        }


      /* ==========================================
           POPPINS FONT
        ========================================== */

        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


        /* ==========================================
           MAIN SECTION
        ========================================== */

        .call-now-section {
            width: 100%;
            padding: 80px 20px;

            box-sizing: border-box;

            background: #f8f5ef;

            font-family: 'Poppins', sans-serif;
        }


        /* ==========================================
           MAIN CONTAINER
        ========================================== */

        .call-now-container {

            width: 100%;
            max-width: 1300px;

            margin: 0 auto;

            display: grid;

            grid-template-columns: 1.35fr 0.65fr;

            background: #ffffff;

            border: 1px solid #eee6d7;

            border-radius: 28px;

            overflow: hidden;

            box-shadow:
                0 20px 60px rgba(91, 44, 88, 0.08);
        }


        /* ==========================================
           LEFT COLUMN
        ========================================== */

        .call-now-left {

            padding: 60px 65px;

            display: flex;

            flex-direction: column;

            justify-content: center;

            box-sizing: border-box;
        }


        /* ==========================================
           SMALL TITLE
        ========================================== */

        .call-small-title {

            display: inline-flex;

            width: fit-content;

            padding: 8px 16px;

            margin-bottom: 18px;

            border-radius: 30px;

            background: #f3edf2;

            color: #5B2C58;

            font-family: 'Poppins', sans-serif;

            font-size: 11px;

            font-weight: 700;

            letter-spacing: 2px;

            line-height: 1.4;
        }


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

        .call-now-left h2 {

            margin: 0 0 22px;

            padding: 0;

            font-family: 'Poppins', sans-serif;

            font-size: 46px;

            line-height: 1.12;

            font-weight: 700;

            color: #252525;
        }


        .call-now-left h2 span {

            color: #5B2C58;
        }


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

        .call-description {

            max-width: 700px;

            margin: 0 0 28px;

            font-family: 'Poppins', sans-serif;

            font-size: 15px;

            line-height: 1.8;

            font-weight: 400;

            color:#000000;
        }


        /* ==========================================
           FEATURES
        ========================================== */

        .call-features {

            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 15px 25px;

            width: 100%;
        }


        .call-feature {

            display: flex;

            align-items: center;

            gap: 10px;

            font-family: 'Poppins', sans-serif;

            font-size: 13px;

            line-height: 1.5;

            font-weight: 500;

            color: #333333;
        }


        /* ==========================================
           CHECK ICON
        ========================================== */

        .feature-check {

            width: 24px;

            height: 24px;

            min-width: 24px;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 50%;

            background: #f3edf2;

            color: #5B2C58;

            font-size: 10px;

            box-sizing: border-box;
        }


        /* ==========================================
           RIGHT COLUMN
        ========================================== */

        .call-now-right {

            padding: 45px;

            display: flex;

            align-items: center;

            justify-content: center;

            box-sizing: border-box;

            background: #faf7f2;

            border-left: 1px solid #eee6d7;
        }


        /* ==========================================
           CALL CARD
        ========================================== */

        .call-action-card {

            width: 100%;

            max-width: 360px;

            padding: 42px 30px;

            text-align: center;

            box-sizing: border-box;

            background: #ffffff;

            border: 1px solid #e7dcd0;

            border-radius: 24px;

            box-shadow:
                0 15px 45px rgba(91, 44, 88, 0.10);
        }


        /* ==========================================
           CALL LABEL
        ========================================== */

        .action-label {

            display: block;

            margin-bottom: 22px;

            color: #5B2C58;

            font-family: 'Poppins', sans-serif;

            font-size: 11px;

            font-weight: 700;

            letter-spacing: 2px;
        }


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

        .call-number {

            width: 100%;

            display: flex;

            align-items: center;

            box-sizing: border-box;

            padding: 7px 18px 7px 7px;

            text-decoration: none !important;

            border: 1px solid #e4d9cc;

            border-radius: 50px;

            background: #ffffff;

            transition:
                all 0.3s ease;
        }


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

        .call-icon {

            width: 52px;

            height: 52px;

            min-width: 52px;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 50%;

            background: #5B2C58;

            color: #ffffff;

            font-size: 18px;

            box-shadow:
                0 6px 15px rgba(91, 44, 88, 0.25);

            transition:
                all 0.3s ease;
        }


        /* ==========================================
           PHONE NUMBER TEXT
        ========================================== */

        .phone-text {

            flex: 1;

            margin-left: 12px;

            color: #252525;

            font-family: 'Poppins', sans-serif;

            font-size: 19px;

            font-weight: 700;

            line-height: 1;

            white-space: nowrap;
        }


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

        .call-number:hover {

            border-color: #5B2C58;

            transform: translateY(-2px);

            box-shadow:
                0 8px 25px rgba(91, 44, 88, 0.10);
        }


        .call-number:hover .call-icon {

            background: #472143;

            transform: scale(1.05);
        }


        .call-number:hover .phone-text {

            color: #5B2C58;
        }


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

        .call-card-text {

            margin: 22px 0;

            font-family: 'Poppins', sans-serif;

            font-size: 13px;

            line-height: 1.7;

            font-weight: 400;

            color: #666666;
        }


        /* ==========================================
           CALL NOW BUTTON
        ========================================== */

        .call-btn {

            width: 100%;

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 9px;

            padding: 14px 20px;

            box-sizing: border-box;

            border-radius: 50px;

            background: #5B2C58;

            color: #ffffff !important;

            text-decoration: none !important;

            font-family: 'Poppins', sans-serif;

            font-size: 13px;

            font-weight: 600;

            line-height: 1;

            transition:
                all 0.3s ease;
        }


        .call-btn:hover {

            background: #472143;

            color: #ffffff !important;

            transform: translateY(-2px);

            box-shadow:
                0 8px 20px rgba(91, 44, 88, 0.25);
        }


        .call-btn i {

            font-size: 13px;
        }


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

        @media (max-width: 900px) {

            .call-now-container {

                grid-template-columns: 1fr;
            }


            .call-now-left {

                padding: 50px 45px;
            }


            .call-now-right {

                padding: 40px;

                border-left: 0;

                border-top: 1px solid #eee6d7;
            }


            .call-action-card {

                max-width: 450px;
            }

        }


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

        @media (max-width: 600px) {

            .call-now-section {

                padding: 45px 15px;
            }


            .call-now-container {

                border-radius: 20px;
            }


            .call-now-left {

                padding: 40px 25px;
            }


            .call-small-title {

                font-size: 10px;

                padding: 7px 14px;

                margin-bottom: 15px;
            }


            .call-now-left h2 {

                font-size: 34px;

                line-height: 1.15;

                margin-bottom: 18px;
            }


            .call-description {

                font-size: 14px;

                line-height: 1.7;

                margin-bottom: 25px;
            }


            .call-features {

                grid-template-columns: 1fr;

                gap: 13px;
            }


            .call-feature {

                font-size: 12px;
            }


            .call-now-right {

                padding: 25px 20px;
            }


            .call-action-card {

                padding: 32px 20px;

                border-radius: 20px;
            }


            .action-label {

                font-size: 10px;

                margin-bottom: 18px;
            }


            .call-icon {

                width: 48px;

                height: 48px;

                min-width: 48px;

                font-size: 17px;
            }


            .phone-text {

                font-size: 16px;

                margin-left: 9px;
            }


            .call-card-text {

                font-size: 12px;

                margin: 20px 0;
            }


            .call-btn {

                padding: 14px 18px;

                font-size: 12px;
            }

        }


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

        @media (max-width: 380px) {

            .call-now-left h2 {

                font-size: 30px;
            }


            .phone-text {

                font-size: 14px;
            }


            .call-icon {

                width: 44px;

                height: 44px;

                min-width: 44px;
            }

        }
	
	/* ==========================================
   ANIMATED PHONE ICON
========================================== */

.call-icon {
    position: relative;
    z-index: 1;
    animation: phonePulse 1.8s infinite ease-in-out;
}

/* Outer animated ring */
.call-icon::before {
    content: "";
    position: absolute;

    top: -5px;
    left: -5px;

    width: calc(100% + 10px);
    height: calc(100% + 10px);

    border: 2px solid #5B2C58;
    border-radius: 50%;

    opacity: 0;

    animation: phoneRing 1.8s infinite ease-out;

    pointer-events: none;
}

/* Phone icon itself */
.call-icon i {
    position: relative;
    z-index: 2;

    animation: phoneShake 1.8s infinite ease-in-out;
}


/* ==========================================
   PULSE
========================================== */

@keyframes phonePulse {

    0% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.08);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.06);
    }

    40% {
        transform: scale(1);
    }

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


/* ==========================================
   OUTER RING
========================================== */

@keyframes phoneRing {

    0% {
        transform: scale(0.85);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

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


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

@keyframes phoneShake {

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

    74% {
        transform: rotate(-12deg);
    }

    78% {
        transform: rotate(12deg);
    }

    82% {
        transform: rotate(-10deg);
    }

    86% {
        transform: rotate(8deg);
    }

    90% {
        transform: rotate(0deg);
    }
}