/* Floating WhatsApp Button – unchanged from original */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 25px rgba(37, 211, 102, 0.45),
        0 0 15px rgba(37, 211, 102, 0.35);
    z-index: 99999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.55),
        0 0 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-float img {
    width: 36px;
    height: 36px;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

@media only screen and (max-width: 767px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 95px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 32px;
        height: 32px;
    }
}

/* WhatsApp Contact Selection Modal */
.wa-contact-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 16, 20, 0.72);
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
}

.wa-contact-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.wa-contact-modal {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(39, 40, 44, 0.22);
    padding: 40px 36px 36px;
    transform: scale(0.92);
    opacity: 0;
    transition: transform 300ms ease, opacity 300ms ease;
}

.wa-contact-overlay.is-open .wa-contact-modal {
    transform: scale(1);
    opacity: 1;
}

.wa-contact-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    color: #27282c;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
    padding: 0;
}

.wa-contact-close:hover {
    background: #eed174;
    color: #ffffff;
    transform: rotate(90deg);
}

.wa-contact-header {
    text-align: center;
    margin-bottom: 28px;
}

.wa-contact-header .wa-icon-large {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: block;
}

.wa-contact-header h2 {
    color: #27282c;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin: 0 0 10px;
    letter-spacing: 0.3px;
}

.wa-contact-header p {
    color: #7c7e84;
    font-size: 15px;
    line-height: 24px;
    font-family: 'Rubik', sans-serif;
    margin: 0;
}

.wa-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wa-contact-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 22px;
    background: #ffffff;
    border: 2px solid #ededed;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 300ms ease;
}

.wa-contact-card:hover {
    border-color: #eed174;
    box-shadow: 0 10px 28px rgba(238, 209, 116, 0.22);
    transform: translateY(-4px);
}

.wa-contact-card .wa-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
}

.wa-contact-card .wa-card-icon img {
    width: 28px;
    height: 28px;
}

.wa-contact-card .wa-card-body {
    flex: 1;
    min-width: 0;
}

.wa-contact-card .wa-card-label {
    display: block;
    color: #7c7e84;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.wa-contact-card .wa-card-number {
    display: block;
    color: #27282c;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
}

.wa-contact-card .wa-card-hint {
    display: block;
    color: #9a9a9a;
    font-size: 13px;
    line-height: 18px;
    font-family: 'Rubik', sans-serif;
}

.wa-contact-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #eed174;
    color: #ffffff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    border-radius: 20px;
}

body.wa-modal-open {
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .wa-contact-overlay {
        padding: 16px;
    }

    .wa-contact-modal {
        width: 92%;
        max-width: none;
        padding: 32px 22px 28px;
    }

    .wa-contact-header h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .wa-contact-card {
        padding: 20px 18px;
        gap: 14px;
    }

    .wa-contact-card .wa-card-number {
        font-size: 18px;
    }

    .wa-contact-card .wa-card-icon {
        width: 52px;
        height: 52px;
    }

    .wa-contact-card .wa-card-icon img {
        width: 30px;
        height: 30px;
    }
}
