/* ============================================
   Q&A Ask Question Page Styles
   ============================================ */

/* Hero Section */
.qa-ask-hero-section {
    background: #53834F;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

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

.qa-ask-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: white;
    margin: 0 0 2rem 0;
    letter-spacing: 0.1em;
}

.qa-ask-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.qa-dot {
    width: 12px;
    height: 12px;
    background-color: #E6AE25;
    border-radius: 50%;
}

/* Content Section */
.qa-ask-content-section {
    background: #F5F5F0;
    padding: 4rem 2rem 6rem;
    min-height: 60vh;
}

.qa-ask-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.qa-ask-intro {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    color: #42210B;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.qa-ask-intro p {
    margin: 0 0 0.5rem 0;
}

/* Error Messages */
.qa-ask-errors {
    background: #ffe6e6;
    border-left: 4px solid #e74c3c;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.error-message {
    color: #c0392b;
    margin: 0.5rem 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 600;
}

/* Form Styles */
.qa-ask-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #42210B;
    letter-spacing: 0.05em;
}

.required {
    color: #e74c3c;
    margin-left: 0.25rem;
}

.form-control {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #53834F;
    box-shadow: 0 0 0 3px rgba(83, 131, 79, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 200px;
    line-height: 1.6;
}

.form-help {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.btn-submit {
    background: #53834F;
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(83, 131, 79, 0.3);
    letter-spacing: 0.05em;
}

.btn-submit:hover {
    background: #456f42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(83, 131, 79, 0.4);
}

.btn-cancel {
    background: white;
    color: #666;
    border: 2px solid #E0E0E0;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    display: inline-block;
}

.btn-cancel:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .qa-ask-hero-section {
        padding: 3rem 1.5rem;
    }

    .qa-ask-title {
        font-size: 32px;
        letter-spacing: 0.05em;
    }

    .qa-dot {
        width: 10px;
        height: 10px;
    }

    .qa-ask-content-section {
        padding: 3rem 1.5rem;
    }

    .qa-ask-container {
        padding: 0 1rem;
    }

    .qa-ask-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-label {
        font-size: 16px;
    }

    .form-control {
        font-size: 15px;
        padding: 0.875rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-submit,
    .btn-cancel {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .qa-ask-title {
        font-size: 28px;
    }

    .qa-ask-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .form-control {
        font-size: 14px;
    }
}

