/* Support Page Specific Styles */

/* Support Header */
.support-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.support-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.support-header p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 184, 148, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.contact-info p {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.contact-info a {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00b894;
    text-decoration: underline;
}

/* Support Options Grid */
.support-options {
    padding: 4rem 0;
    background-color: #121212;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #00b894);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.support-card:hover::before {
    transform: scaleX(1);
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: #00d4aa;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.15);
}

.support-card.problem::before {
    background: linear-gradient(90deg, #ff9f43, #ee5a24);
}

.support-card.problem:hover {
    border-color: #ff9f43;
    box-shadow: 0 10px 30px rgba(255, 159, 67, 0.15);
}

.support-card.feature::before {
    background: linear-gradient(90deg, #fdcb6e, #e17055);
}

.support-card.feature:hover {
    border-color: #fdcb6e;
    box-shadow: 0 10px 30px rgba(253, 203, 110, 0.15);
}

.support-card.help::before {
    background: linear-gradient(90deg, #74b9ff, #0984e3);
}

.support-card.help:hover {
    border-color: #74b9ff;
    box-shadow: 0 10px 30px rgba(116, 185, 255, 0.15);
}

.support-card.partnership::before {
    background: linear-gradient(90deg, #6c5ce7, #5f3dc4);
}

.support-card.partnership:hover {
    border-color: #6c5ce7;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.15);
}

.support-card.danger::before {
    background: linear-gradient(90deg, #ff6b6b, #e55353);
}

.support-card.danger:hover {
    border-color: #ff6b6b;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    border-radius: 20px;
    color: #000;
}

.support-card.problem .support-icon {
    background: linear-gradient(135deg, #ff9f43, #ee5a24);
    color: #fff;
}

.support-card.feature .support-icon {
    background: linear-gradient(135deg, #fdcb6e, #e17055);
    color: #fff;
}

.support-card.help .support-icon {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: #fff;
}

.support-card.partnership .support-icon {
    background: linear-gradient(135deg, #6c5ce7, #5f3dc4);
    color: #fff;
}

.support-card.danger .support-icon {
    background: linear-gradient(135deg, #ff6b6b, #e55353);
    color: #fff;
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.support-card p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.support-btn {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

.danger-btn {
    background: linear-gradient(135deg, #ff6b6b, #e55353) !important;
    color: #fff !important;
}

.problem-btn {
    background: linear-gradient(135deg, #ff9f43, #ee5a24) !important;
    color: #fff !important;
}

.problem-btn:hover {
    box-shadow: 0 5px 15px rgba(255, 159, 67, 0.3) !important;
}

.partnership-btn {
    background: linear-gradient(135deg, #6c5ce7, #5f3dc4) !important;
    color: #fff !important;
}

.feature-btn {
    background: linear-gradient(135deg, #fdcb6e, #e17055) !important;
    color: #fff !important;
}

.feature-btn:hover {
    box-shadow: 0 5px 15px rgba(253, 203, 110, 0.3) !important;
}

.help-btn {
    background: linear-gradient(135deg, #74b9ff, #0984e3) !important;
    color: #fff !important;
}

.help-btn:hover {
    box-shadow: 0 5px 15px rgba(116, 185, 255, 0.3) !important;
}

.partnership-btn:hover {
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3) !important;
}

.danger-btn:hover {
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3) !important;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border: 1px solid #333;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #333;
    background: linear-gradient(135deg, #2a2a2a, #1e1e1e);
    flex-shrink: 0;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #9ACD32;
}

/* Form Styles */
.support-form {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9ACD32;
    box-shadow: 0 0 0 2px rgba(154, 205, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: 'Montserrat', sans-serif;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.cancel-btn {
    background: transparent;
    color: #ccc;
    border: 1px solid #444;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background-color: #333;
    color: #fff;
}

.submit-btn {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

.delete-btn {
    background: linear-gradient(135deg, #ff6b6b, #e55353);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Warning Message */
.warning-message {
    background: linear-gradient(135deg, #dc354520, #c8233320);
    border: 1px solid #dc3545;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.warning-icon {
    flex-shrink: 0;
    color: #dc3545;
}

.warning-message h4 {
    color: #dc3545;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.warning-message p {
    color: #ccc;
    margin-bottom: 1rem;
}

.warning-message ul {
    color: #ccc;
    margin-left: 1rem;
}

.warning-message li {
    margin-bottom: 0.5rem;
}

/* Success Banner */
.success-banner {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    z-index: 3000;
    animation: successSlideIn 0.3s ease;
}

@keyframes successSlideIn {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.success-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-header {
        padding: 6rem 0 3rem;
    }
    
    .support-header h1 {
        font-size: 2.5rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-card {
        padding: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .modal-header,
    .support-form {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .support-header h1 {
        font-size: 2rem;
    }
    
    .support-header p {
        font-size: 1.1rem;
    }
    
    .support-card {
        padding: 1.5rem;
    }
    
    .support-icon {
        width: 60px;
        height: 60px;
    }
}