.contact-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8e7db 0%, #f4dcca 48%, #f7e6da 100%);
    overflow: hidden;
}

.contact-page::before,
.contact-page::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.4;
    pointer-events: none;
}

.contact-page::before {
    width: 36rem;
    height: 36rem;
    top: -10rem;
    right: -8rem;
    background: #f1cfba;
}

.contact-page::after {
    width: 30rem;
    height: 30rem;
    bottom: 4rem;
    left: -8rem;
    background: #edc8b5;
}

.contact-section {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 12rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.contact-page__intro {
    text-align: center;
    max-width: 70rem;
}

.contact-page__title {
    margin: 0;
    font-size: clamp(3rem, 5vw, 4.6rem);
    line-height: 1.1;
    color: #1a1f26;
    letter-spacing: -0.02em;
}

.contact-page__description {
    margin: 1.2rem 0 0;
    color: #4e5661;
    line-height: 1.5;
    font-size: 1.7rem;
}

.contact-page__form-card {
    width: min(62rem, 96vw);
    border: 1px solid #d9dfe8;
    border-radius: 1.4rem;
    background: #fcfcfc;
    box-shadow: 0 16px 34px rgba(24, 31, 44, 0.14);
    padding: 2rem;
}

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

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-row label {
    font-size: 1.4rem;
    color: #3a424d;
    font-weight: 600;
}

.form-row input,
.form-row textarea {
    border: 1px solid #d7dce5;
    border-radius: 1rem;
    background: #fff;
    padding: 1rem 1.2rem;
    color: #20252d;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #b7c1d2;
    box-shadow: 0 0 0 3px rgba(181, 195, 218, 0.25);
}

.form-textarea {
    min-height: 16rem;
    resize: vertical;
    font-family: var(--font-primary);
}

.form-button {
    border: 0;
    border-radius: 999px;
    background: #2f3742;
    color: #f6f7f9;
    padding: 1rem 1.8rem;
    margin-top: 0.6rem;
    cursor: pointer;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.form-button:hover {
    background: #3d4653;
    transform: translateY(-1px);
}

.form-button:active {
    transform: translateY(0);
}
