/* Speed Dial Button */
.speed-dial {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.speed-dial-button {
    background-color: #900000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.speed-dial-button:hover {
    background-color: #770000;
}

/* Contact Form Modal */
.contact-form-modal {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 350px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    padding: 20px;
    display: none;
    flex-direction: column;
    z-index: 1;
}

.contact-form-modal.open {
    display: flex;
    transform: translateY(0%);
}

.contact-form-modal h2 {
    margin-bottom: 15px;
    color: #900000;
}

.contact-form-modal input,
.contact-form-modal textarea {
    width: 100% !important;
    padding: 10px !important;
    margin-bottom: 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
}

.contact-form-modal button {
    background-color: #900000;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form-modal button:hover {
    background-color: #770000;
}

.powered-by {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

.close-button {
    align-self: flex-end;
    background-color: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #900000;
}

.close-button:hover {
    color: #770000;
}
#closeForm {
    padding: 0px 10px;
    border-radius: 20px;
    background: gray;
}
.success-message {
    color: green;
    margin-top: 10px;
    display: none;
}

.error-message {
    color: red;
    margin-top: 10px;
    display: none;
}
