/* Contact Section */

.contact-hero {
    min-height: 50vh;
    background-color: var(--black);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    text-align: center;
    padding: 120px 24px 80px;
}

.contact-hero h1 {
    color: var(--white);
    font-size: 3.8rem;
    font-family: var(--heading-font);
    margin-bottom: 1rem;
}

.contact-hero p {
    color: var(--white);
    font-family: var(--font-body);
    max-width: 650px;
}

/* Contact Form Section */

.contact-form-section {
    background-color: var(--bg);
    padding: 100px 24px;
}

.contact-form-section form {
    max-width: 800px;
    margin: 0 auto;

    padding: 3rem;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea {
    width: 100%;
    padding: 1rem 1.2rem;

    background-color: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;

    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;

    transition: border-color 0.3s ease;
}

.contact-form-section input::placeholder,
.contact-form-section textarea::placeholder {
    color: var(--muted);
}

.contact-form-section input:focus,
.contact-form-section select:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.contact-form-section button {
    margin-top: 1rem;
    cursor: pointer;
    border: none;
}

.budget-class {
    width: 100%;
    padding: 14px 3.5rem 14px 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: var(--white);
    background-color: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23f5620a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    background-size: 18px 18px;
    cursor: pointer;
}

/* Mobile */

@media (max-width: 768px) {

    .contact-hero h1 {
        font-size: 2.8rem;
    }

    .contact-form-section {
        padding: 80px 18px;
    }

    .contact-form-section form {
        padding: 1.5rem;
    }

    .contact-form-section button {
        width: 100%;
    }
}