/* FAB (Floating Action Button) Stilleri */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.fab-main-button {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.fab-main-button:hover {
    transform: scale(1.1);
}

.fab-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    transform: scaleY(0);
    transform-origin: bottom;
}

.fab-options.active {
    transform: scaleY(1);
}

.fab-option {
    width: 48px;
    height: 48px;
    background-color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: relative;
    transition: background-color 0.3s ease;
}

.fab-option:hover {
    background-color: var(--primary-color);
}

.fab-option .fab-tooltip {
    position: absolute;
    right: 60px;
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.fab-option:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
}

#fab-whatsapp {
    background-color: #25D366;
}
#fab-whatsapp:hover {
    background-color: #128C7E;
}

#fab-phone {
    background-color: #34B7F1;
}
#fab-phone:hover {
    background-color: #0078D7;
}

/* Popup Modal Stilleri */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.popup-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    animation: slide-down 0.5s ease-out;
}

.popup-close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.popup-close-button:hover,
.popup-close-button:focus {
    color: black;
}

#whatsappPopupForm h2 {
    margin-bottom: 1rem;
}

#whatsappPopupForm p {
    margin-bottom: 1.5rem;
}

#whatsappPopupForm input,
#whatsappPopupForm select,
#whatsappPopupForm textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-secondary);
}

#whatsappPopupForm button {
    width: 100%;
}
