* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #2E2947 0%, #3d3660 100%);
    min-height: 100vh;
    color: #f5f5f5;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 900;
    background: linear-gradient(135deg, #F5D168 0%, #F0A356 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.1rem;
    color: #d0d0d0;
    font-weight: 300;
}

/* main {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 1px solid rgba(245, 209, 104, 0.1);
} */

.support-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #F5D168 0%, #F0A356 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.section-header p {
    font-size: 1.1rem;
    color: #d0d0d0;
    font-weight: 300;
}

/* Feedback Form */
.feedback-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(245, 209, 104, 0.2);
}

.feedback-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(245, 209, 104, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #F5D168;
    margin-bottom: 12px;
}

.form-textarea {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(245, 209, 104, 0.2);
    border-radius: 8px;
    color: #f5f5f5;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #F5D168;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(245, 209, 104, 0.1);
}

.form-textarea::placeholder {
    color: #a0a0a0;
}

.character-count {
    text-align: right;
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-top: 8px;
    font-weight: 300;
}

.character-count.warning {
    color: #F0A356;
}

.character-count.error {
    color: #e74c3c;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2E2947;
    background: linear-gradient(135deg, #F5D168 0%, #F0A356 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 4px 15px rgba(245, 209, 104, 0.3);
    min-width: 200px;
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #F0A356 0%, #e89345 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 209, 104, 0.4);
}

.submit-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Contact Section */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(245, 209, 104, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(245, 209, 104, 0.3);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(245, 209, 104, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5D168;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #F5D168;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #f5f5f5;
    font-weight: 400;
}

.contact-note {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 300;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(245, 209, 104, 0.2);
    animation: fadeIn 0.5s ease;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ecc71;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2ecc71;
    font-weight: 900;
}

.success-message p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 300;
}

.secondary-btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    color: #F5D168;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid #F5D168;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #F5D168 0%, #F0A356 100%);
    color: #2E2947;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 209, 104, 0.3);
}

footer {
    text-align: center;
    color: #b0b0b0;
    margin-top: 60px;
    font-weight: 300;
}

/* Error Modal */
.error-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.error-modal-content {
    background: rgba(46, 41, 71, 0.98);
    border-radius: 12px;
    max-width: 450px;
    width: 100%;
    border: 1px solid rgba(231, 76, 60, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

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

.error-modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(231, 76, 60, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.error-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

.error-modal-close {
    background: none;
    border: none;
    color: #c0c0c0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.error-modal-close:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.error-modal-body {
    padding: 30px 25px;
    text-align: center;
}

.error-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-icon svg {
    width: 30px;
    height: 30px;
}

.error-modal-body p {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.error-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(231, 76, 60, 0.2);
    display: flex;
    justify-content: flex-end;
}

.error-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
    min-width: 80px;
}

.error-btn-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.error-btn-primary:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    header h1 {
        font-size: 2rem;
    }

    main {
        padding: 30px 20px;
    }

    .feedback-form {
        padding: 30px 20px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-method {
        padding: 25px 20px;
    }

    .success-message {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .feedback-form {
        padding: 25px 15px;
    }

    .submit-btn {
        width: 100%;
        min-width: auto;
    }
}