/* Support Page Styles */
.support-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
}

/* Logo Section */
.support-logo-section {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.support-logo {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    filter: drop-shadow(0 4px 8px rgba(104, 175, 176, 0.3));
}

/* Title Section */
.support-title-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.support-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #68AFB0 0%, #ffffff 50%, #68AFB0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.support-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    font-weight: 300;
    color: #cccccc;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Form Section */
.form-section {
    width: 100%;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.support-form {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(104, 175, 176, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

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

.form-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(104, 175, 176, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #68AFB0;
    box-shadow: 0 0 0 3px rgba(104, 175, 176, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #888888;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Error States */
.form-input.error,
.form-textarea.error {
    border-color: #ff4757;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.error-message {
    color: #ff4757;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #68AFB0 0%, #5a9ba0 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #5a9ba0 0%, #4d8a8f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(104, 175, 176, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Button Loading State */
.btn-text {
    display: inline-block;
}

.btn-loader {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loader {
    display: flex;
}

/* Loader Animation */
.loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .support-container {
        padding: 1.5rem 1rem;
    }
    
    .support-logo-section {
        margin-bottom: 1.5rem;
    }
    
    .support-logo {
        max-height: 80px;
    }
    
    .support-title-section {
        margin-bottom: 2rem;
    }
    
    .support-form {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .support-container {
        padding: 1rem 0.75rem;
    }
    
    .support-form {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Form Success State */
.support-form.success {
    border-color: #68AFB0;
    background: rgba(104, 175, 176, 0.05);
}

/* Accessibility */
.form-input:focus,
.form-textarea:focus,
.submit-btn:focus {
    outline: 2px solid #68AFB0;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .support-title {
        animation: none;
        background: #68AFB0;
        -webkit-text-fill-color: #68AFB0;
        background-clip: unset;
    }
    
    .support-logo-section,
    .support-title-section,
    .form-section {
        animation: none;
    }
}
