.contact-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 170px 0 90px;
    background:
        radial-gradient(circle at 18% 22%, rgba(214, 40, 40, 0.22), transparent 34%),
        radial-gradient(circle at 80% 26%, rgba(10, 69, 131, 0.32), transparent 36%),
        linear-gradient(135deg, #07111f, #0b1220);
    color: #ffffff;
}

.contact-container {
    width: min(860px, 92%);
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    max-width: 760px;
    margin: 0 auto 34px;
}

.contact-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 15px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: "Jason Becker Light", Arial, sans-serif;
}

.contact-intro h1 {
    margin: 24px 0 18px;
    font-family: "Grandview", Arial, sans-serif;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.contact-intro p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.76);
    font-family: "GrandviewLightItalic", Arial, sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.24rem);
    line-height: 1.7;
    font-style: italic;
}

.contact-methods {
    display: grid;
    gap: 14px;
    max-width: 640px;
    margin: 0 auto 34px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-height: 82px;
    padding: 18px 22px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    text-align: left;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 48px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(57, 255, 136, 0.32);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 22px 56px rgba(0, 0, 0, 0.28);
}

.contact-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(57, 255, 136, 0.10);
    border: 1px solid rgba(57, 255, 136, 0.24);
    color: #39ff88;
}

.contact-icon svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.contact-method-text {
    display: grid;
    gap: 4px;
}

.contact-method-text strong {
    font-family: "Grandview", Arial, sans-serif;
    font-size: 1.24rem;
    line-height: 1.1;
    font-weight: 700;
}

.contact-method-text small {
    color: rgba(255, 255, 255, 0.68);
    font-family: "GrandviewLightItalic", Arial, sans-serif;
    font-size: 0.98rem;
    line-height: 1.4;
    font-style: italic;
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 48px rgba(0, 0, 0, 0.24);
    text-align: left;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-field {
    display: grid;
    gap: 9px;
    margin-bottom: 16px;
}

.contact-field label {
    color: rgba(255, 255, 255, 0.82);
    font-family: "Grandview", Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(5, 13, 25, 0.72);
    color: #ffffff;
    font-family: "GrandviewLightItalic", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.45;
    outline: none;
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
}

.contact-field input {
    min-height: 52px;
    padding: 0 16px;
}

.contact-field textarea {
    resize: vertical;
    min-height: 150px;
    padding: 16px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(57, 255, 136, 0.46);
    background: rgba(5, 13, 25, 0.86);
    box-shadow: 0 0 0 4px rgba(57, 255, 136, 0.08);
}

.contact-submit {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.contact-form-status {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-family: "GrandviewLightItalic", Arial, sans-serif;
    text-align: center;
}

@media (max-width: 700px) {
    .contact-page {
        align-items: flex-start;
        padding: 155px 0 70px;
    }

    .contact-container {
        width: min(92%, 640px);
    }

    .contact-intro {
        margin-bottom: 28px;
    }

    .contact-method {
        min-height: 76px;
        padding: 16px;
        border-radius: 22px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .contact-form {
        padding: 22px;
        border-radius: 26px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}