﻿html, body {
    min-height: 100%;
    margin: 0;
}

:root {
    --primary-green: #43b05c;
    --primary-green-dark: #2f8f46;
    --accent-cyan: #25bfd0;
    --text: #111827;
    --text-soft: #374151;
    --muted: #6b7280;
    --border: rgba(15, 23, 42, .09);
    --border-soft: rgba(15, 23, 42, .06);
    --bg: #f7faf8;
    --surface: #ffffff;
    --surface-soft: #fbfdfb;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --shadow-soft: 0 12px 34px rgba(15, 23, 42, .06);
    --shadow-medium: 0 22px 55px rgba(15, 23, 42, .10);
    --container: 1240px;
    --section-y: 96px;
}

body {
    background: radial-gradient(circle at top left, rgba(67, 176, 92, .055), transparent 28%), linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: var(--container);
}

h1, h2, h3, h4, h5, h6,
.brand-title,
.footer-title {
    font-family: "Manrope", Inter, system-ui, sans-serif;
    color: var(--text);
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(3rem, 5vw, 5.25rem);
    line-height: 1.02;
    font-weight: 850;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1.08;
    font-weight: 820;
}

h3 {
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.18;
    font-weight: 800;
}

p {
    color: var(--muted);
}

a {
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

img {
    max-width: 100%;
}

::selection {
    background: rgba(67, 176, 92, .18);
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-soft);
}

.navbar-custom {
    padding: .95rem 0;
}

    .navbar-custom .container {
        display: flex;
        align-items: center;
        gap: 24px;
    }

.brand-wrap {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    color: inherit;
    text-decoration: none;
    flex-shrink: 0;
}

    .brand-wrap:hover {
        transform: translateY(-1px);
    }

    .brand-wrap img {
        height: 54px;
        width: auto;
        object-fit: contain;
        display: block;
    }

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-green), #78d384);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 16px 35px rgba(67, 176, 92, .18);
    flex-shrink: 0;
}

.brand-title {
    font-size: 1.03rem;
    font-weight: 850;
    line-height: 1.05;
    margin: 0;
}

.brand-subtitle {
    font-size: .76rem;
    color: var(--muted);
    margin: .12rem 0 0;
    letter-spacing: .01em;
}

/* NAV */
.nav-main {
    gap: .1rem;
}

    .nav-main .nav-item {
        display: flex;
        align-items: center;
    }

    .nav-main .nav-link {
        position: relative;
        color: var(--text-soft) !important;
        font-size: .94rem;
        font-weight: 700;
        padding: .7rem 1rem !important;
        border-radius: var(--radius-pill);
    }

        .nav-main .nav-link:hover,
        .nav-main .nav-link.active {
            background: rgba(67, 176, 92, .08);
            color: var(--text) !important;
        }

        .nav-main .nav-link::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 7px;
            height: 2px;
            border-radius: var(--radius-pill);
            background: linear-gradient(90deg, var(--primary-green), var(--accent-cyan));
            transform: scaleX(0);
            transform-origin: center;
            transition: transform .22s ease;
        }

        .nav-main .nav-link:hover::after,
        .nav-main .nav-link.active::after {
            transform: scaleX(1);
        }

/* ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-left: auto;
}

.lang-dropdown-btn,
.menu-toggle-btn {
    min-height: 44px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border) !important;
    background: rgba(255, 255, 255, .86);
    color: var(--text-soft);
    font-weight: 750;
    padding: .55rem .9rem;
    box-shadow: none !important;
}

    .lang-dropdown-btn:hover,
    .lang-dropdown-btn:focus,
    .menu-toggle-btn:hover,
    .menu-toggle-btn:focus {
        background: #fff;
        color: var(--text);
        border-color: rgba(15, 23, 42, .16) !important;
    }

.lang-dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: .55rem;
    box-shadow: var(--shadow-medium);
    min-width: 185px;
}

    .lang-dropdown-menu .dropdown-item {
        border-radius: 14px;
        padding: .72rem .9rem;
        font-weight: 650;
    }

        .lang-dropdown-menu .dropdown-item:hover {
            background: rgba(67, 176, 92, .08);
            color: var(--text);
        }

        .lang-dropdown-menu .dropdown-item.active,
        .lang-dropdown-menu .dropdown-item:active {
            background: linear-gradient(135deg, var(--primary-green), #71cf7c);
            color: #fff;
        }

/* BUTTONS */
.btn,
button,
input,
textarea,
select {
    font-family: inherit;
}

.btn-primary,
.btn-quote,
.footer-cta .btn,
.service-cta-btn,
.mini-contact-btn {
    min-height: 48px;
    border: 0 !important;
    border-radius: var(--radius-pill);
    padding: .8rem 1.35rem;
    font-weight: 800;
    letter-spacing: -.01em;
    background: linear-gradient(135deg, var(--primary-green), #72d37c);
    color: #fff !important;
    box-shadow: 0 14px 32px rgba(67, 176, 92, .22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
}

    .btn-primary:hover,
    .btn-quote:hover,
    .footer-cta .btn:hover,
    .service-cta-btn:hover,
    .mini-contact-btn:hover {
        transform: translateY(-2px);
        background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
        box-shadow: 0 20px 42px rgba(67, 176, 92, .28);
        color: #fff !important;
    }

.btn-outline,
.btn-light {
    border-radius: var(--radius-pill);
    font-weight: 800;
}

/* PAGE */
.page-shell {
    min-height: calc(100vh - 180px);
    padding-top: 0;
}

section {
    scroll-margin-top: 100px;
}

/* GLOBAL PREMIUM CARDS */
.card,
.service-content-card,
.service-features-card,
.service-faq-card,
.sidebar-box,
.service-cta {
    border: 1px solid var(--border-soft) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-soft) !important;
}

    .card:hover,
    .service-content-card:hover,
    .service-features-card:hover,
    .service-faq-card:hover,
    .sidebar-box:hover {
        box-shadow: var(--shadow-medium) !important;
    }

/* OFFCANVAS */
.offcanvas-custom {
    width: 330px !important;
    border-left: 1px solid var(--border);
    background: rgba(255, 255, 255, .98);
}

.offcanvas-header {
    padding: 1.25rem 1.25rem .85rem;
    border-bottom: 1px solid var(--border-soft);
}

.offcanvas-body {
    padding: 1rem 1.25rem 1.25rem;
}

.offcanvas-brand {
    display: flex;
    align-items: center;
    gap: .85rem;
    color: inherit;
    text-decoration: none;
}

.offcanvas-nav .nav-link {
    color: var(--text) !important;
    font-size: 1rem;
    font-weight: 750;
    padding: .95rem 1rem !important;
    border-radius: 18px;
    margin-bottom: .48rem;
    background: rgba(15, 23, 42, .035);
}

    .offcanvas-nav .nav-link:hover {
        background: rgba(67, 176, 92, .09);
        color: var(--primary-green-dark) !important;
        transform: translateX(2px);
    }

/* DISPLAY HELPERS */
.desktop-only {
    display: inline-flex;
}

.desktop-nav {
    display: flex;
}

.mobile-only,
.mobile-lang-dropdown {
    display: none;
}

/* FOOTER */
.site-footer {
    margin-top: 0;
}

.pro-footer {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 12% 10%, rgba(67, 176, 92, .12), transparent 30%), radial-gradient(circle at 88% 22%, rgba(37, 191, 208, .10), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
    color: var(--text);
    padding: 4.5rem 0 0;
    border-top: 1px solid var(--border-soft);
}

    .pro-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(67,176,92,.08), transparent 28%, rgba(37,191,208,.07));
        pointer-events: none;
    }

    .pro-footer .container {
        position: relative;
        z-index: 1;
    }

.footer-logo-row img {
    max-height: 74px;
    width: auto;
    object-fit: contain;
}

.pro-footer .footer-title {
    color: var(--text);
    font-size: 1.06rem;
    font-weight: 850;
    margin-bottom: 1.35rem;
}

.pro-footer .footer-desc {
    color: var(--text-soft);
    line-height: 1.9;
    max-width: 380px;
}

.footer-links,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .pro-footer .footer-links li,
    .footer-contact-list li {
        margin-bottom: .9rem;
        color: var(--text-soft);
        line-height: 1.55;
    }

    .pro-footer .footer-links a,
    .footer-contact-list a {
        color: var(--text-soft);
        text-decoration: none;
        font-weight: 650;
    }

        .pro-footer .footer-links a:hover,
        .footer-contact-list a:hover {
            color: var(--primary-green-dark);
            padding-left: 4px;
        }

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 1.6rem;
}

    .footer-socials a {
        width: 38px;
        height: 38px;
        border-radius: var(--radius-pill);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--text);
        background: rgba(15, 23, 42, .055);
        text-decoration: none;
        font-weight: 850;
    }

        .footer-socials a:hover {
            background: var(--primary-green);
            color: #fff;
            transform: translateY(-2px);
        }

.pro-footer .footer-bottom {
    margin-top: 3.2rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(15, 23, 42, .08);
    text-align: center;
    color: var(--text-soft);
    font-size: .92rem;
}

    .pro-footer .footer-bottom strong {
        color: var(--primary-green-dark);
    }

.footer-mobile {
    display: none;
}

/* FLOATING CONTACT */
.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .floating-contact a {
        width: 58px;
        height: 58px;
        border-radius: var(--radius-pill);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 24px;
        color: #fff;
        box-shadow: 0 18px 38px rgba(15, 23, 42, .22);
    }

        .floating-contact a:hover {
            transform: translateY(-3px) scale(1.04);
        }

.float-call {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.float-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    :root {
        --section-y: 72px;
    }

    .navbar-custom {
        padding: .75rem 0;
    }

    .brand-subtitle {
        display: none;
    }

    .desktop-nav,
    .desktop-only {
        display: none !important;
    }

    .mobile-only,
    .mobile-lang-dropdown {
        display: inline-flex !important;
    }

    .header-actions {
        gap: .5rem;
    }

    .mobile-lang-dropdown .lang-dropdown-btn {
        padding: .5rem .68rem;
        font-size: .85rem;
    }

    .btn-quote.mobile-quote {
        width: 100%;
        justify-content: center;
    }

    .footer-desktop {
        display: none;
    }

    .footer-mobile {
        display: block;
    }

    .pro-footer {
        padding-top: 2.4rem;
    }

    .footer-mobile-brand img {
        max-height: 66px;
        margin-bottom: 1rem;
    }

    .footer-mobile-brand p {
        color: var(--text-soft);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .footer-mobile .accordion-item {
        border: 1px solid var(--border-soft);
        border-radius: 18px;
        overflow: hidden;
        margin-bottom: .8rem;
        background: rgba(255, 255, 255, .84);
        box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
    }

    .footer-mobile .accordion-button {
        background: #fff;
        color: var(--text);
        font-weight: 850;
        box-shadow: none;
    }

        .footer-mobile .accordion-button:not(.collapsed) {
            color: var(--primary-green-dark);
            background: rgba(67, 176, 92, .08);
        }

    .footer-mobile .accordion-body {
        display: flex;
        flex-direction: column;
        gap: .8rem;
    }

        .footer-mobile .accordion-body a,
        .footer-mobile .accordion-body p {
            color: var(--text-soft);
            text-decoration: none;
            font-weight: 650;
            margin: 0;
        }

    .floating-contact {
        right: 14px;
        bottom: 16px;
    }

        .floating-contact a {
            width: 52px;
            height: 52px;
            font-size: 22px;
        }
}

@media (max-width: 575.98px) {
    body {
        font-size: 15.5px;
    }

    .brand-title {
        font-size: .92rem;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    .brand-wrap img {
        height: 44px;
    }

    .mobile-lang-dropdown .lang-dropdown-btn {
        padding: .45rem .62rem;
        font-size: .8rem;
    }

    .menu-toggle-btn {
        padding: .48rem .72rem;
        font-size: .85rem;
    }

    .offcanvas-custom {
        width: 290px !important;
    }

    .floating-contact a {
        width: 50px;
        height: 50px;
    }
}

/* RTL SUPPORT */
html[dir="rtl"] body {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .navbar-custom .container {
    flex-direction: row-reverse;
}

html[dir="rtl"] .header-actions {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .nav-main,
html[dir="rtl"] .brand-wrap {
    flex-direction: row-reverse;
}

html[dir="rtl"] .dropdown-menu {
    text-align: right;
}

html[dir="rtl"] .carousel-caption,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .service-card,
html[dir="rtl"] .card-body {
    text-align: right;
}

html[dir="rtl"] .footer-links,
html[dir="rtl"] .footer-contact-list {
    padding-right: 0;
    text-align: right;
}

html[dir="rtl"] .floating-contact {
    right: auto;
    left: 22px;
}

@media (max-width: 991px) {
    html[dir="rtl"] .offcanvas-custom {
        right: auto;
        left: 0;
        border-left: none;
        border-right: 1px solid var(--border);
    }

    html[dir="rtl"] .offcanvas-nav .nav-link {
        text-align: right;
    }
}
/* MOBILE LANGUAGE DROPDOWN FIX */
@media (max-width: 991.98px) {
    .mobile-lang-dropdown .dropdown-menu,
    .mobile-lang-dropdown .lang-dropdown-menu {
        min-width: auto !important;
        width: auto !important;
        padding: 6px !important;
        border-radius: 14px;
    }

    .mobile-lang-dropdown .dropdown-item {
        width: auto !important;
        min-width: 42px !important;
        padding: 8px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0 !important;
    }

        .mobile-lang-dropdown .dropdown-item img {
            margin: 0 !important;
            width: 22px !important;
            height: 16px !important;
        }

    .mobile-lang-dropdown .lang-dropdown-btn {
        min-width: 44px;
        width: 44px;
        height: 42px;
        padding: 0 !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

        .mobile-lang-dropdown .lang-dropdown-btn::after {
            display: none !important;
        }

    .mobile-lang-dropdown .dropdown-menu-end {
        right: 0 !important;
        left: auto !important;
    }
}

/* MOBILE OFFCANVAS LOGO FIX */
@media (max-width: 991.98px) {
    .offcanvas-brand {
        gap: 0 !important;
    }

        .offcanvas-brand img {
            max-height: 48px;
            width: auto;
            object-fit: contain;
        }

        .offcanvas-brand .brand-title,
        .offcanvas-brand .brand-subtitle {
            display: none !important;
        }
}
/* MOBILE LANGUAGE + MENU FIX */
@media (max-width: 991.98px) {
    .mobile-lang-btn {
        width: 54px !important;
        height: 44px !important;
        min-height: 44px !important;
        padding: 0 8px !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

        .mobile-lang-btn::after {
            display: none !important;
        }

    .mobile-lang-menu {
        min-width: auto !important;
        width: auto !important;
        padding: 6px !important;
        border-radius: 14px !important;
    }

        .mobile-lang-menu .dropdown-item {
            width: 44px !important;
            height: 38px !important;
            padding: 0 !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
        }

            .mobile-lang-menu .dropdown-item img {
                margin: 0 !important;
            }

    .lang-arrow {
        font-size: 11px;
        color: #475569;
        transition: transform .2s ease;
    }

    .mobile-lang-dropdown .show .lang-arrow,
    .mobile-lang-btn[aria-expanded="true"] .lang-arrow {
        transform: rotate(180deg);
    }

    .modern-menu-btn {
        width: 46px;
        height: 46px;
        border: none;
        border-radius: 15px;
        background: linear-gradient(135deg, #43b05c, #25bfd0);
        display: inline-flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        box-shadow: 0 12px 26px rgba(67, 176, 92, .24);
    }

        .modern-menu-btn span {
            width: 21px;
            height: 2px;
            background: #fff;
            border-radius: 999px;
            display: block;
        }
}
.floating-contact-premium {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floating-contact-btn {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .22);
    transition: all .25s ease;
}

    .floating-contact-btn:hover {
        transform: translateY(-4px) scale(1.04);
        color: #fff;
    }

.floating-call {
    background: linear-gradient(135deg, #0f172a, #334155);
}

.floating-whatsapp {
    width: auto;
    min-width: 58px;
    padding: 0 18px;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    overflow: hidden;
}

    .floating-whatsapp i,
    .floating-whatsapp .floating-label {
        position: relative;
        z-index: 2;
    }

.floating-label {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .01em;
}

.whatsapp-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 999px;
    background: rgba(37, 211, 102, .35);
    animation: whatsappPulse 1.8s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(.85);
        opacity: .75;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .floating-contact-premium {
        right: 16px;
        bottom: 16px;
    }

    .floating-contact-btn {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .floating-whatsapp {
        padding: 0 15px;
    }

    .floating-label {
        display: none;
    }
}
.whatsapp-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
}

.whatsapp-popup {
    position: absolute;
    right: 0;
    bottom: 84px;
    width: 320px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(15, 23, 42, .22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(.96);
    transition: all .25s ease;
}

    .whatsapp-popup.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

.whatsapp-popup-header {
    background: linear-gradient(135deg, #075e54, #128c7e);
    color: #fff;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-agent {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .whatsapp-agent strong {
        display: block;
        font-size: 15px;
        font-weight: 900;
    }

    .whatsapp-agent span {
        display: block;
        font-size: 12px;
        opacity: .9;
    }

.whatsapp-avatar {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.online-dot {
    position: absolute;
    right: 2px;
    bottom: 2px;
    width: 13px;
    height: 13px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
}

.whatsapp-close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.whatsapp-popup-body {
    padding: 18px;
    background: #f8fafc;
}

.whatsapp-message {
    background: #fff;
    color: #0f172a;
    padding: 14px 16px;
    border-radius: 16px 16px 16px 4px;
    margin-bottom: 12px;
    line-height: 1.55;
    box-shadow: 0 8px 22px rgba(15,23,42,.06);
}

.whatsapp-status {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 14px;
}

.whatsapp-start-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .whatsapp-start-btn:hover {
        color: #fff;
        transform: translateY(-2px);
    }

.whatsapp-main-btn {
    position: relative;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(37, 211, 102, .35);
}

    .whatsapp-main-btn i {
        position: relative;
        z-index: 2;
    }

.whatsapp-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(37, 211, 102, .35);
    animation: whatsappPulse 1.8s infinite;
}

.floating-call-small {
    position: absolute;
    right: 6px;
    bottom: 76px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(15,23,42,.22);
}

    .floating-call-small:hover {
        color: #fff;
        transform: translateY(-2px);
    }

@keyframes whatsappPulse {
    0% {
        transform: scale(.85);
        opacity: .8;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .whatsapp-widget {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-popup {
        width: calc(100vw - 32px);
        right: 0;
    }
}