﻿
.contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

    .contact-btn:hover {
        background: linear-gradient(90deg, #d86a85 20%, #e41010 100%);
    }



/* Modal arka planı */
.mmodal {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 20%); /* Saydam arka plan */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal içeriği */
.mmodal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 400px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: black;
}

/* Kapatma butonu */
.mclose {
    color: red;
    font-size: 24px;
    font-weight: bold;
    float: right;
    cursor: pointer;
    text-align: end;
}