/* ============================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================ */
:root {
    /* Primary Colors */
    --color-primary: #78c649;
    --color-secondary: #f38631;
    --color-accent: #f7e9dd;

    /* Background Colors */
    --bg-topbar: #f7e9dd;
    --bg-section: #faf3ed;
    --bg-card-testimonial: #d6e3c3;
    --bg-step-number: #f5e7db;

    /* Text Colors */
    --text-primary: #2d2d2d;
    --text-secondary: #868686;
    --text-third: #333333;
    --text-nav: #363636;
    --text-button: #c67a47;
    --text-social: #d0936a;
    --text-form-label: #777771;
    --text-sm-color: #8f8f8f;

    /* Border Colors */
    --border-form: #ecc5ab;

    /* Shadow Colors */
    --shadow-service: rgba(208, 147, 106, 0.37);
    --shadow-testimonial: rgba(208, 147, 106, 0.17);

    /* Dimensions */
    --button-width: 240px;
    --button-height: 56px;
    --step-number-size: 220px;
    --quote-size: 130px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.4s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* Typography */
    --font-serif: "Cormorant", serif;
    --font-sans: "Montserrat", sans-serif;
    --font-display: "Playfair Display", serif;
}

/* ============================================
   NAVIGATION STYLES
   ============================================ */
.btn-close:before {
    background: var(--color-primary);
    color: #fff;
}

.topbar {
    background-color: var(--bg-topbar);
}

.topbar-icon {
    color: var(--color-secondary) !important;
}

.nav-link {
    color: var(--text-nav) !important;
}

.nav-link:hover,
.nav-link:focus,
.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--color-secondary) !important;
}

/* Navigation Hover Effects */
.navbar-nav a > span {
    position: relative;
    display: inline-block;
}

.navbar-nav a > span::after {
    content: "";
    position: absolute;
    width: 0;
    height: 15px;
    bottom: -3px;
    left: -6px;
    background-color: var(--color-accent);
    z-index: -1;
    transition: width var(--transition-slow);
}

.navbar-nav a:hover > span::after {
    width: calc(100% + 11px);
}

.navbar-nav a:hover > span {
    color: var(--color-secondary);
}

/* ============================================
   Award Section
   ============================================ */
.award-text {
    font-size: 42px !important;
}

.strength-title {
    font-size: 60px;
}

/* ============================================
   TYPOGRAPHY STYLES
   ============================================ */
h2,
h3,
h4 {
    font-family: var(--font-serif);
    color: var(--color-primary);
}

/* ============================================
   ABOUT US SECTION
   ============================================ */
.image-gallery-container::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 3px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-secondary);
    z-index: -1;
    opacity: 0;
    transform: translate(0, 0);
    transition: transform var(--transition-fast) 0.15s,
        opacity var(--transition-fast) 0.15s;
    pointer-events: none;
}

.image-gallery-container.appear::after {
    opacity: 1;
    transform: translate(10px, -10px);
}

.image-gallery-container:hover::after {
    transform: translate(20px, -20px);
}

.about-us .swiper-controls .swiper-pagination {
    bottom: -1.8rem;
    position: absolute !important;
    pointer-events: all;
    text-align: end;
}

.about-us .text-line span {
    letter-spacing: 0.2em;
    color: var(--text-sm-color);
}

/* Text Line Decorations */
.about-us .text-line:before,
.client-testimonials .text-line:before,
.blog .text-uppercase.text-line:before {
    content: "";
    position: absolute;
    display: inline-block;
    top: 50%;
    transform: translateY(-60%);
    left: 0;
    width: 2rem;
    height: 0.03rem;
    background: var(--color-secondary);
}

/* Custom Button Component */
.button {
    position: relative;
    z-index: 0;
    width: var(--button-width);
    height: var(--button-height);
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-button);
    letter-spacing: 2px;
    transition: all var(--transition-medium);
    display: block;
}

.button__text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.button::before,
.button::after,
.button__text::before,
.button__text::after {
    content: "";
    position: absolute;
    height: 1px;
    border-radius: 2px;
    background: var(--color-secondary);
    transition: all var(--transition-slow);
}

.button::before {
    top: 0;
    left: 54px;
    width: calc(100% - 56px * 2 - 16px);
}

.button::after {
    top: 0;
    right: 54px;
    width: 8px;
}

.button__text::before {
    bottom: 0;
    right: 54px;
    width: calc(100% - 56px * 2 - 16px);
}

.button__text::after {
    bottom: 0;
    left: 54px;
    width: 8px;
}

.button__line {
    position: absolute;
    top: 0;
    width: 56px;
    height: 100%;
    overflow: hidden;
}

.button__line::before {
    content: "";
    position: absolute;
    top: 0;
    width: 150%;
    height: 100%;
    box-sizing: border-box;
    border: solid 1px var(--color-secondary);
}

.button__line:nth-child(1),
.button__line:nth-child(1)::before {
    left: 0;
}

.button__line:nth-child(2),
.button__line:nth-child(2)::before {
    right: 0;
}

.button:hover {
    letter-spacing: 6px;
}

.button:hover::before,
.button:hover .button__text::before {
    width: 8px;
}

.button:hover::after,
.button:hover .button__text::after {
    width: calc(100% - 56px * 2 - 16px);
}

.button:not(:last-child) {
    margin-bottom: 64px;
}

/* Button Animations */
@keyframes drow1 {
    0% {
        height: 0;
    }
    100% {
        height: 100px;
    }
}

@keyframes drow2 {
    0% {
        width: 0;
        opacity: 0;
    }
    10% {
        opacity: 0;
    }
    11% {
        opacity: 1;
    }
    100% {
        width: 120px;
    }
}

@keyframes drow3 {
    0% {
        width: 0;
    }
    100% {
        width: 80px;
    }
}

@keyframes drow4 {
    0% {
        height: 0;
    }
    100% {
        height: 120px;
    }
}

@keyframes drow5 {
    0% {
        width: 0;
    }
    100% {
        width: 124px;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-slider .card-body p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 26px;
}

.services-slider .card-body h2:hover {
    color: var(--color-secondary);
}

.service-card {
    padding: 30px 10px !important;
    transition: all var(--transition-fast);
}

.service-card:hover {
    box-shadow: 2px 4px 15px 0 var(--shadow-service);
    cursor: pointer;
}

.service-card h4 {
    font-size: 30px;
}

p.service-text {
    font-size: 15px !important;
    font-weight: 300 !important;
    color: var(--text-secondary);
    font-family: var(--font-sans);
}

/* ============================================
   DISEASE SECTION
   ============================================ */
.disease .row .col-lg-3:hover {
    cursor: pointer;
}

.disease h3,
.disease h4 {
    font-family: var(--font-serif);
    color: var(--text-primary) !important;
    font-weight: 500 !important;
}

.disease h4:hover {
    color: var(--color-secondary) !important;
}

.disease img {
    transition: all var(--transition-fast);
    transform: scale(1.05);
}

.disease img:hover {
    transform: scale(1);
}

.disease h4 {
    font-size: 30px;
    line-height: 1.166666666666667em;
}

.diseases-title {
    font-size: 42px;
    line-height: 1.071428571428571em;
}

/* ============================================
   SALAD SECTION (STEP CARDS)
   ============================================ */
.step-card {
    position: relative;
    padding: 30px 20px;
    transition: transform var(--transition-fast);
}

.step-number {
    font-size: var(--step-number-size);
    font-family: var(--font-serif);
    z-index: 1;
    position: absolute;
    top: -15%;
    left: 0;
    line-height: 1.2em;
    font-weight: 500;
    color: var(--bg-step-number);
}

.step-content {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    margin: 70px 0 0 80px;
}

.step-title {
    color: var(--text-primary) !important;
    font-size: 30px;
    line-height: 1.166666666666667em;
}

/* Decorative Leaf Elements */
img.leaf {
    right: -30%;
    bottom: -5%;
}

img.leaf-2 {
    left: 0%;
    bottom: -60%;
}

/* ============================================
   CLIENT TESTIMONIALS SECTION
   ============================================ */

.client-testimonials .text-line span {
    letter-spacing: 0.2em;
    color: var(--text-sm-color);
}

.client-testimonials {
    background-color: var(--bg-section);
}

.client-testimonials h4 {
    color: var(--color-secondary);
    font-family: var(--font-sans);
    font-weight: 400;
}

.client-testimonials .card {
    background-color: var(--bg-card-testimonial);
    box-shadow: 2px 2px 20px 0 var(--shadow-testimonial);
    box-sizing: border-box;
}

.client-testimonials .item-inner {
    padding: 10px !important;
}

.client-testimonials .item-inner .card-body {
    padding: 20px 10px !important;
}

.client-testimonials .card .city {
    color: var(--text-primary) !important;
    font-weight: 400;
}

.client-testimonials .card-body p {
    font-weight: 300;
    color: var(--text-primary) !important;
    font-size: 16px;
}

/* Quote Icon */
.client-testimonials blockquote.icon:before {
    content: "\201C";
    left: 1.1rem;
    transform: rotate(180deg);
    color: var(--color-accent);
    top: -2.5rem;
    font-size: var(--quote-size);
    font-family: var(--font-display);
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
    gap: 70px;
}

.post-category {
    color: var(--color-secondary) !important;
    font-weight: 400;
}

.post-title a {
    font-weight: 500;
    font-family: var(--font-serif);
    color: var(--text-primary) !important;
    font-size: 30px;
    transition: color var(--transition-fast);
}

.post-title a:hover {
    color: var(--color-secondary) !important;
}

h2.post-title {
    line-height: inherit !important;
}

.view-all a {
    color: var(--text-primary) !important;
}

.view-all:hover {
    color: var(--color-secondary) !important;
}

/* View All Link Animation */
.view-all a > span {
    position: relative;
    display: inline-block;
}

.view-all a > span::after {
    content: "";
    position: absolute;
    width: 0;
    height: 15px;
    bottom: -3px;
    left: -6px;
    background-color: var(--color-accent);
    z-index: -1;
    transition: width var(--transition-slow);
}

.view-all a:hover > span::after {
    width: calc(100% + 11px);
}

.view-all a:hover > span {
    color: var(--color-secondary);
}

/* Register Button */
.register-button a {
    font-family: var(--font-serif);
    letter-spacing: 0;
    text-transform: none;
    font-size: 60px;
    line-height: 1.1em;
    font-weight: 500;
    font-style: italic;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

.register-button a:hover {
    color: var(--color-secondary) !important;
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer-text {
    display: grid;
    grid-template-columns: 3fr 1fr 2fr !important;
}

.footer-text p {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-secondary);
}

.footer-text p a {
    color: var(--text-secondary) !important;
    transition: color var(--transition-fast);
}

.footer-text p a:hover {
    color: var(--color-secondary) !important;
}

/* Social Media Elements */
div span.social-name {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--text-social);
    transition: color var(--transition-fast);
}

.social-icon div i {
    color: var(--color-accent);
}

.social-icon div .social-name:hover {
    color: var(--text-primary);
    cursor: pointer;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form .form-control {
    background-color: transparent !important;
    border: 1px solid var(--border-form) !important;
    cursor: pointer;
    color: var(--text-secondary) !important;
    transition: all var(--transition-fast);
}

.send-btn {
    background-color: var(--color-secondary) !important;
    color: #fff;
    transform: none !important;
    border: 1px solid var(--color-secondary) !important;
    font-size: 12px;
    font-weight: 300;
    transition: all var(--transition-fast);
}

.send-btn:hover {
    box-shadow: none !important;
    color: var(--color-secondary) !important;
    background-color: transparent !important;
}

/* ============================================
   APPLICATION FORM
   ============================================ */

.heading-section {
    background-color: var(--bg-section);
}

.heading-section h4 {
    color: var(--text-primary);
}

.application-form h2 {
    color: var(--text-third);
    font-family: var(--font-sans);
    font-weight: 400;
}

.select2-container--default .select2-selection--single {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%2360697b' d='M22.667 12.227c-0.241-0.24-0.573-0.388-0.94-0.388s-0.699 0.148-0.94 0.388l0-0-4.787 4.72-4.72-4.72c-0.241-0.24-0.573-0.388-0.94-0.388s-0.699 0.148-0.94 0.388l0-0c-0.244 0.242-0.394 0.577-0.394 0.947s0.151 0.705 0.394 0.947l5.653 5.653c0.242 0.244 0.577 0.394 0.947 0.394s0.705-0.151 0.947-0.394l0-0 5.72-5.653c0.244-0.242 0.394-0.577 0.394-0.947s-0.151-0.705-0.394-0.947l-0-0z'%3E%3C/path%3E%3C/svg%3E");
    display: block;
    width: 100%;
    padding: 0.6rem 2rem 0.6rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.7;
    color: #959ca9;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img),
        var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 20px 20px;
    box-shadow: 0rem 0rem 1.25rem rgba(30, 34, 40, 0.04);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border: 1px solid var(--border-form) !important;
    cursor: pointer;
    color: var(--text-secondary) !important;
    transition: all var(--transition-fast);
    border-radius: 0.4rem !important;
    height: 51.5px !important;
}

.select2-selection__arrow {
    display: none;
}

.select2-container--default
    .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #78c649 !important;
}

.mandatory-text {
    color: var(--text-third);
    font-family: var(--font-sans);
    font-weight: 400;
}

.application-form label {
    color: var(--text-form-label);
    font-family: var(--font-sans);
    font-weight: 700;
}

.diseases-section {
    background: rgba(248, 248, 248, 0.5);
    box-shadow: inset 5px 0px 0px rgba(221, 221, 221, 0.5);
    border-radius: 4px;
    padding: 20px 20px 30px 25px;
}

.hidden {
    display: none !important;
}

.details {
    overflow: hidden;
    transition: all 0.3s ease;
}

.detail-show {
    opacity: 1;
    height: auto;
    visibility: visible;
}

.detail-hide {
    opacity: 0;
    height: 0;
    visibility: hidden;
    padding: 0;
    margin: 0;
}

/* Other Pages Css */
body {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    line-height: 26px;
    font-weight: 300;
    color: #868686;
}
h1,
h3 {
    font-family: var(--font-serif);
    font-size: 92px;
    line-height: 1.053695652173913em;
    font-weight: 500;
}
h1,
h2,
h3,
h4,
h5 {
    font-weight: 500;
}
h2 {
    font-size: 60px;
    line-height: 1em;
}
h3 {
    font-size: 42px;
    line-height: 1.071428571428571em;
}
h4 {
    font-size: 30px;
    line-height: 1.166666666666667em;
}
h5 {
    font-size: 22px;
    line-height: 1.181818181818182em;
}
.clr-orange {
    color: #d0936a;
}
.clr-black,
.section-disease-therapies h4 {
    color: #2d2d2d;
    transition: ease-in-out;
}
.text-black {
    color: #000 !important;
}
.text-orange {
    color: #f38631 !important;
}
.btn-custom-orange {
    background-color: #f38631;
}
.bg-custom-clr {
    background-color: #faf3ed;
}
.section-disease-therapies .card-body:hover h4 {
    color: #d0936a;
}
.banner-handler {
    background-size: 1818px;
    background-repeat: no-repeat;
}
.about-banner-handler {
    height: 350px;
    background-position: center -28px;
    background-size: cover;
}
.health-banner-handler {
    height: 350px;
    background-position: center -158px;
    background-size: cover;
}
.shakus-living-banner-handler {
    height: 400px;
    background-position: center -122px;
    background-size: cover;
}
.holistic-banner-handler {
    height: 500px;
    background-position: center -127px;
    background-size: cover;
}
/*---counter----*/
.counter-box {
    position: relative;
    padding: 30px 0;
}
.counter-text {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}
.counter-label {
    display: inline-block;
    position: relative;
    z-index: 2;
    color: #2d2d2d;
    font-size: 30px;
    line-height: 35px;
    font-weight: 500;
    font-style: normal;
}
.counter-text .counter {
    position: absolute;
    font-size: 195px;
    font-weight: 700;
    color: #fddeca; /* Light background effect */
    z-index: 1;
    line-height: 26px;
    transform: translateY(-30%);
}
.big-number1 {
    top: 0px;
    left: 113px;
}
.big-number2 {
    top: -15px;
    left: 0px;
}
/*---counter----*/
/*---vision---*/

.vision-image-fullscreen {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}
.vision-image-fullscreen img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
/*---vision---*/
/*----flip-card----*/
.flip-card {
    background-color: transparent;
    width: 100%;
    perspective: 1000px;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    backface-visibility: hidden;
    border: 1px solid #eee;
    border-radius: 0;
}
.flip-card-front {
    background: #fff;
    z-index: 2;
}
.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flip-card-back {
    background-color: #ebebeb;
    color: #000;
    transform: rotateY(180deg);
    padding: 20px;
    text-align: left;
    overflow: hidden; /* Removed scroll */
    font-family: var(--font-serif);
}
/*----flip-card----*/
.section-disease-therapies .card-body img {
    transform: scale(1.1); /* Slightly zoomed in by default */
    transition: transform 0.6s ease;
}

.section-disease-therapies .card-body:hover img {
    transform: scale(1); /* Zooms out to normal size */
}
/*-----*/
.custom-image-border {
    position: relative;
    display: inline-block;
}
.custom-image-border::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 3px;
    width: 100%;
    height: 100%;
    border: 1px solid #f38631;
    z-index: -1;
    opacity: 0;
    transform: translate(0, 0);
    transition: transform 0.3s ease-out 0.15s, opacity 0.3s ease 0.15s;
    pointer-events: none;
}
.custom-image-border.br-rectabgle::after {
    opacity: 1;
    transform: translate(10px, -10px);
}
/*--------*/
.time-activities-icon {
    width: 60px;
    height: 60px;
}
/*-----*/
.form-field .form-control,
.form-field .btn {
    border-radius: 0px;
    color: #fff;
}
.map-responsive {
    position: relative;
    width: 100vw;
    height: 450px;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}
/*----*/
.health-seeker-table tr {
    border: 1px solid #ecc5ab;
}

.health-seeker-table td {
    font-weight: 400;
}
.health-seeker-table {
    border-collapse: collapse;
    width: 100%;
}

.health-seeker-table th,
.health-seeker-table td {
    padding: 5px;
    text-align: center;
}
.package-info {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-top: 22px;
    gap: 0px; /* optional spacing */
}
.package-label {
    white-space: nowrap;
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
}
.border-between {
    flex: 1;
    border-bottom: 1px dashed #f38631;
    margin: 0 0px; /* spacing from label and price */
    height: 1px;
    top: 8px;
    position: relative;
}
.package-price {
    white-space: nowrap;
    color: #f38631;
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 9px;
    font-weight: 500;
}
.lh-fs-size .package-inquiry p {
    color: #f38631;
    font-weight: 300;
    font-size: 17px;
    line-height: 29px;
    letter-spacing: 0;
}
.text-light-orange a,
.bg-text a {
    color: #f38631;
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.text-light-orange a:hover {
    color: #000;
}
.bg-text a > span {
    position: relative;
    z-index: 1;
}
.bg-text a > span::after {
    content: "";
    position: absolute;
    width: 0;
    height: 15px;
    bottom: -3px;
    left: -6px;
    background-color: #f7e9dd;
    z-index: -1;
    transition: width 0.5s ease-in-out;
}
.bg-text a:hover > span::after {
    width: calc(100% + 11px);
}
/*----*/
.tag-line {
    font-family: Montserrat, sans-serif !important;
    font-size: 12px !important;
    line-height: 18px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
}
.tag-line-dr {
    font-size: 12px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.lh-fs-size p,
.lh-fs-size ul {
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    line-height: 26px;
    font-weight: 300;
    color: #868686;
}
.holistic-fs-lh-size h5 {
    font-size: 17px;
    line-height: 29px;
    letter-spacing: 0;
    color: #2d2d2d;
    font-family: Cormorant, serif;
}
.vision-para-lh {
    line-height: 29px;
}
.unique-br-btn {
    font-size: 12px;
    line-height: 1.833333333333333em;
    letter-spacing: 0.24em;
    font-weight: 300;
    text-transform: uppercase;
}
.time-activities-section h2 {
    font-family: var(--font-sans);
}
.time-activities-section h5 {
    font-size: 17px;
    line-height: 29px;
    letter-spacing: 0;
    color: #2d2d2d;
    font-family: var(--font-sans);
}
.time-activities-section h2.f-family {
    font-family: var(--font-serif);
}
.health-seeker-table td.fw-text {
    font-weight: 300;
}
.contact-fw-lh-size address {
    font-size: 17px;
    line-height: 29px;
    letter-spacing: 0;
    font-weight: 300;
}
.breadcrumb-item.slash + .breadcrumb-item.slash::before {
    font-family: inherit; /* No need for Unicons if using plain text */
    font-weight: normal;
    display: flex;
    align-items: center;
    padding-right: 0.5rem;
    color: #2d2d2d;
    content: "/";
    margin-top: -1px;
    font-size: 0.9rem;
}
.breadcrumb-item.slash a,
.breadcrumb-item.slash.active,
.breadcrumb-item.slash a:active {
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    font-family: var(--font-serif);
    color: #2d2d2d;
}
.breadcrumb-item.slash a:hover {
    color: #f38631;
}
.bg-wa-green {
    background-color: #25d366;
}
.text-wa-green {
    color: #25d366;
}

#waLauncher {
    position: fixed;
    bottom: 60px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
}

#waPopup {
    position: fixed;
    bottom: 130px;
    right: 30px;
    width: 300px;
    display: none;
    z-index: 1001;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.wa-collapse {
    position: absolute;
    right: calc(100% - 1px);
    top: 20px;
    background: #ff7e29;
    width: 26px;
    height: 26px;
    border-radius: 6px 0 0 6px;
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.wa-chat-icon {
    width: 16px;
    height: 16px;
}
