/* Contact Us Page Specific Styles */

/* Hero Section */
.contact-hero {
    background: #F5F4F0;
    text-align: center;
    padding: 50px 20px;
}

.contact-hero h1 {
    font-family: var(--font-serif);
    font-size: 60px;
    font-weight: 400;
    color: #3C3D42;
    line-height: 1.3;
    margin-bottom: 25px;
}

.contact-hero p {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 400;
    color: #6D6E71;
    line-height: 1.3;
    margin: 0;
}

/* Form Container */
.contact-form-container {
    background: #F5F4F0;
    padding: 0 20px 100px;
}

.contact-form-wrapper {
    max-width: 812px;
    margin: 0 auto;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 20px;
    background: rgba(206, 206, 208, 0.25);
    border: 1px solid #CECED0;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 500;
    color: #6D6E71;
    line-height: 1.3;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6D6E71;
    opacity: 1;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #E56B4D;
    background: rgba(206, 206, 208, 0.15);
}

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

/* Submit Button */
.btn-submit {
    width: 100%;
    background: #3C3D42;
    color: #FFFFFF;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    padding: 20px 30px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
    background: #2a2b2f;
    transform: translateY(-2px);
}

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

/* Quiz Banner styles moved to global style.css */

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero h1 {
        font-size: 44px;
    }

    .contact-hero p {
        font-size: 24px;
    }

    .form-input,
    .form-textarea {
        font-size: 20px;
        padding: 18px;
    }

    .btn-submit {
        font-size: 20px;
        padding: 18px 28px;
    }
}

@media (max-width: 575px) {
    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-hero p {
        font-size: 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-input,
    .form-textarea {
        font-size: 18px;
        padding: 16px;
    }

    .form-textarea {
        min-height: 150px;
    }

    .btn-submit {
        font-size: 18px;
        padding: 16px 24px;
    }
}
