.support-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.support-fab:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.5);
}

.support-fab span {
    font-size: 32px;
}

/* Modal Overlay */
.support-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-modal.active {
    display: flex;
    opacity: 1;
}

/* Modal Content */
.support-modal-content {
    background: white;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.support-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s;
}

.support-close-btn:hover {
    color: #1f2937;
}

/* Header */
.support-header {
    text-align: center;
    margin-bottom: 25px;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: #f0fdfa;
    /* Light teal bg */
    color: #0d9488;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.support-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #111827;
    font-weight: 700;
}

.support-header p {
    margin: 8px 0 0;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* Success State */
.success-message {
    text-align: center;
    padding: 40px 0;
}

.success-message span {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 15px;
    display: block;
}

.success-message h4 {
    margin: 0;
    font-size: 1.5rem;
    color: #111827;
}

/* Responsive */
@media (max-width: 480px) {
    .support-modal-content {
        width: 90%;
        padding: 20px;
    }

    .support-fab {
        bottom: 20px;
        right: 20px;
    }
}