/* Contact CTA Popup Styles */
#ctaDesktopBodyBody.jsh-cta-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    /* Teal gradient matching the header image motif */
    background: linear-gradient(135deg, #2c8a94 0%, #0f4c54 100%);
    /* Fallback */
    background-color: #2c8a94;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    padding: 20px 15px;
    z-index: 99999;
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#ctaDesktopClose {
    position: absolute;
    top: 5px;
    right: 8px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 0;
}

#ctaDesktopClose:hover {
    color: white;
}

#ctaDesktopBodyBodyHeadingTop {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

#ctaDesktopBodyBodyHeadingBottom {
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 400;
    opacity: 0.95;
}

#ctaDesktopBodyPhoneContainer {
    background: rgba(255,255,255,0.25);
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: background 0.3s;
}

#ctaDesktopBodyPhoneContainer:hover {
    background: rgba(255,255,255,0.35);
}

#ctaDesktopBodyPhoneIcon {
    margin-right: 8px;
    fill: white;
    width: 18px;
    height: 18px;
}

#ctaDesktopBodyPhone {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#ctaDesktopTextingTerms {
    font-size: 9px;
    line-height: 1.3;
    opacity: 0.7;
    text-align: center;
    padding: 0 5px;
}
