.fixed-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999; /* Ensure the icons are above most other elements */
}

.fixed-icons .icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999; /* Ensure each individual icon is above most other elements */
}

.fixed-icons .main-icon {
    opacity: 1;
    transform: scale(1);
}

.fixed-icons .icon.show {
    opacity: 1;
    transform: scale(1);
}

.contact-form-popup {
    display: block; /* Make sure it's block for centering calculations */
    position: fixed;
    top: 50%;
    left: 50%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9); /* Initial state */
    width: 50%;
    padding: 100px;
    pointer-events: none; /* Prevent interaction when hidden */
}

.contact-form-popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); /* Final state */
    pointer-events: auto; /* Allow interaction when visible */
}

.contact-form-popup .popup-content {
    position: relative;
}
.contact-form-popup .close-popup {
    position: absolute;
    top: -63px;
    right: -8px;
    cursor: pointer;
    font-size: 30px;
}

.fixed-icons img {
    width: 55px;
    height: 55px;
}