/* Contact Page Main Layout */
.contact-page-main {
    min-height: calc(100vh - 82px);
    min-height: calc(100dvh - 82px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
    box-sizing: border-box;
    background: linear-gradient(180deg, #161616 0%, #1c1c1c 100%);
}

.contact-form-section {
    width: 100%;
    max-width: 650px;
}

.contact-form-container {
    /* background-color: #1f1f1f; */
    border-radius: 16px;
    padding: 2.5rem 2rem;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); */
    box-sizing: border-box;
}

.contact-form-container h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.contact-form-container .subtitle {
    font-size: 1rem;
    color: #cccccc;
    text-align: center;
    margin: 0 0 2rem 0;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

/* Required Star Style */
.required-star {
    color: #e44343;
    margin-left: 2px;
}

/* Field Subtitle Style */
.field-subtitle {
    font-size: 0.825rem;
    color: #a0a0a0;
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background-color: #161616;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e44343;
    box-shadow: 0 0 0 2px rgba(228, 67, 67, 0.2);
}

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

.submit-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #e44343;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.submit-btn:hover {
    transform: scale(1.01);
}

.submit-btn:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem 1.25rem;
    }

    .contact-form-container h1 {
        font-size: 2rem;
    }

    .contact-form-container .subtitle {
        font-size: 0.95rem;
    }
}

.alternative-contact {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.divider {
    display: flex;
    align-items: center;
    width: 100%;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #2a2a2a;
}

.divider-text {
    padding: 0 1rem;
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: lowercase;
}

.email-direct {
    text-align: center;
}

.email-label {
    color: #cccccc;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 0.35rem 0;
}

.email-link {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    display: inline-block;
    transition: color 0.2s ease, opacity 0.2s ease;
}