/* Support Page Styles */
.support-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(23, 151, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.support-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(23, 151, 255, 0.08) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 20px) rotate(5deg); }
}

.support-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 60px 20px;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(23, 151, 255, 0.1);
    color: #1797ff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    animation: fadeInDown 0.6s ease-out;
}

.support-title {
    font-size: 56px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.support-title span {
    color: #1797ff;
}

.support-subtitle {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Body & Form */
.support-body {
    padding: 80px 0;
    background: white;
}

.support-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-intro {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Form Styles */
.support-form {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.support-form .form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.support-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .support-form .form-row {
        grid-template-columns: 1fr;
    }
}

.support-form .form-group {
    margin-bottom: 24px;
}

.support-form label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    font-size: 14px;
}

.support-form label .required {
    color: #ef4444;
}

.support-form .form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.support-form .form-control:focus {
    outline: none;
    border-color: #1797ff;
    background: white;
    box-shadow: 0 0 0 4px rgba(23, 151, 255, 0.1);
}

.support-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.support-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.support-form .file-upload {
    position: relative;
}

.support-form .file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
    font-size: 14px;
}

.support-form .file-upload-label:hover {
    border-color: #1797ff;
    background: rgba(23, 151, 255, 0.05);
    color: #1797ff;
}

.support-form .file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.support-form .file-name {
    margin-top: 8px;
    font-size: 13px;
    color: #1797ff;
    display: none;
}

.support-form .file-name.has-file {
    display: block;
}

.support-form .btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1797ff 0%, #0a7cf9 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.support-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(23, 151, 255, 0.3);
}

.support-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Alert Messages */
.support-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 15px;
    display: none;
}

.support-alert.show {
    display: block;
}

.support-alert.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.support-alert.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Info Box */
.support-info {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(23, 151, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(23, 151, 255, 0.1);
}

.support-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 151, 255, 0.1);
    border-radius: 12px;
    color: #1797ff;
    font-size: 20px;
    flex-shrink: 0;
}

.support-info-text {
    flex: 1;
}

.support-info-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.support-info-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Login Prompt */
.support-login-prompt {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    margin: 0 auto;
}

.login-prompt-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 151, 255, 0.1);
    border-radius: 50%;
    color: #1797ff;
    font-size: 32px;
    margin: 0 auto 24px;
}

.login-prompt-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.login-prompt-text {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.login-prompt-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.login-prompt-actions .btn-login,
.login-prompt-actions .btn-register {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-prompt-actions .btn-login {
    background: linear-gradient(135deg, #1797ff 0%, #0a7cf9 100%);
    color: white;
}

.login-prompt-actions .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(23, 151, 255, 0.3);
    color: white;
}

.login-prompt-actions .btn-register {
    background: white;
    color: #1797ff;
    border: 2px solid #1797ff;
}

.login-prompt-actions .btn-register:hover {
    background: rgba(23, 151, 255, 0.05);
    color: #1797ff;
}

.login-prompt-note {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .support-title {
        font-size: 36px;
    }
    
    .support-subtitle {
        font-size: 16px;
    }
    
    .support-form {
        padding: 24px;
    }
    
    .support-body {
        padding: 50px 0;
    }
    
    .support-info {
        flex-direction: column;
        text-align: center;
    }
    
    .support-info-icon {
        margin: 0 auto;
    }
}
