

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 999;  /* Lower value to appear below cookie banner */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-contact-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.floating-contact-btn::before {
    font-size: 35px;
    color: white;
    position: absolute;
}

#contact-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
}

/* Contact Form Close Button Styling */
#contact-form .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;  /* Position on the right side */
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
    color: #726659;
    z-index: 10001;
}

#contact-form .close-btn a {
    text-decoration: none;  /* Remove underline */
    color: #726659;
}

#contact-form .close-btn a:hover {
    color: #000;
    text-decoration: none;  /* Keep no underline on hover */
}

.contact-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    display: none;
}

.contact-backdrop.active {
    display: block;
}

