/* =============================================
   Contact CTA – floating call-to-action widget
   ============================================= */

#contact-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: 'Open Sans', sans-serif;
    text-align: right;
}

/* ---- bubble panel ---- */
#contact-cta .cta-bubble {
    background-color: #10314f;
    color: #fff;
    border-radius: 8px;
    padding: 18px 20px 16px;
    width: 240px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    margin-bottom: 10px;
    display: none;
    position: relative;
    text-align: left;
}

#contact-cta .cta-bubble p {
    margin: 0 20px 14px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

/* ---- "Contact Us" link inside bubble ---- */
#contact-cta .cta-bubble .cta-link {
    display: block;
    background-color: #77a640;
    color: #fff;
    text-align: center;
    padding: 9px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

#contact-cta .cta-bubble .cta-link:hover,
#contact-cta .cta-bubble .cta-link:focus {
    background-color: #91b245;
    color: #fff;
    text-decoration: none;
}

/* ---- close (×) button ---- */
#contact-cta .cta-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: #9f9f9f;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 0;
    -webkit-transition: color 0.15s;
    transition: color 0.15s;
}

#contact-cta .cta-close:hover {
    color: #fff;
}
