/* Hızlı Teklif Al Butonu Stilleri */
.quick-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
}

/* Popup Overlay */
.quick-contact-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    justify-content: center;
    align-items: center;
}

/* Popup Container */
.quick-contact-popup {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: popupFadeIn 0.3s ease-out;
    z-index: 9999;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Popup Header */
.popup-header {
    background-color: #232E3F;
    color: #FFFFFF;
    padding: 15px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-header h3 i {
    color: #ff8800;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.popup-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Popup Content */
.popup-content {
    padding: 20px;
}

/* Contact Options */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 15px;
    color: #232E3F;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    border: 1px solid #eee;
}

.contact-option:hover {
    background-color: rgba(255, 136, 0, 0.1);
    border-color: #ff8800;
    transform: translateY(-2px);
}

.contact-option i {
    margin-right: 15px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #ff8800;
    border-radius: 50%;
}

.contact-option .fa-phone {
    background-color: #4CAF50;
}

.contact-option .fa-whatsapp {
    background-color: #25D366;
}

.contact-option .fa-envelope {
    background-color: #FF6B35;
}

.contact-option span {
    font-weight: 500;
    font-size: 16px;
}

.contact-option small {
    display: block;
    color: #6B7280;
    font-size: 12px;
    margin-top: 3px;
}

/* Popup Footer */
.popup-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 13px;
    color: #6B7280;
}

/* Active state for showing popup */
.quick-contact-popup-overlay.active {
    display: flex;
}
