.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Confirmation Popup */
.confirm-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.confirm-popup.active {
    display: flex;
    opacity: 1;
}

.confirm-popup.show {
    display: flex;
    opacity: 1;
}

.confirm-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 90%;
    width: 400px;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.confirm-popup.active .confirm-content,
.confirm-popup.show .confirm-content {
    transform: scale(1);
}

.confirm-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.confirm-text {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.confirm-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.confirm-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.confirm-yes {
    background-color: #25D366;
    color: white;
}

.confirm-no {
    background-color: var(--gray-200);
    color: var(--text-color);
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
    }

    .whatsapp-btn i {
        font-size: 1.25rem;
    }

    .confirm-content {
        width: 90%;
        max-width: 350px;
        padding: 1.5rem;
    }
    
    .inquiry-form-content {
        max-width: 100%;
        width: 95%;
    }
    
    /* Mobile form specific styles */
    #inquireFormPopup {
        align-items: flex-start;
        padding-top: 20px;
        overflow-y: auto;
    }
    
    #inquireFormPopup .inquiry-form-content {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* Additional mobile tweaks */
@media (max-width: 480px) {
    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        width: 2.8rem;
        height: 2.8rem;
    }
    
    .whatsapp-btn i {
        font-size: 1.1rem;
    }
    
    #inquireFormPopup {
        padding-top: 10px;
    }
    
    #inquireFormPopup .inquiry-form-content {
        margin-top: 10px;
    }
} 