.gowan-contact-page {
    position: relative;
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 5.5rem;
    overflow: hidden;
}

.gowan-contact-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border: 1px solid #ffe4a0;
    border-radius: 1.5rem;
    box-shadow: 0 16px 45px rgba(255, 184, 0, 0.16);
    padding: 1.5rem;
}

.gowan-contact-header {
    margin-bottom: 1rem;
}

.gowan-contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #fff4d2;
    color: #8a6400;
    border-radius: 9999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.gowan-contact-chip i {
    width: 14px;
    height: 14px;
}

.gowan-contact-header h1 {
    color: #1f2937;
    font-size: clamp(1.5rem, 3.6vw, 2.25rem);
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.gowan-contact-text {
    color: #374151;
    font-size: 1rem;
    line-height: 1.9;
    margin: 0 0 1.5rem;
}

.gowan-contact-dm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 62px;
    padding: 0.9rem 1.1rem;
    border-radius: 9999px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    background: linear-gradient(135deg, #feda75 0%, #fa7e1e 30%, #d62976 62%, #962fbf 82%, #4f5bd5 100%);
    box-shadow: 0 14px 24px rgba(214, 41, 118, 0.26);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.gowan-contact-dm-button:hover,
.gowan-contact-dm-button:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 30px rgba(214, 41, 118, 0.34);
    filter: saturate(1.1);
}

.gowan-contact-dm-button:focus-visible {
    outline: 3px solid #ffb800;
    outline-offset: 3px;
}

.gowan-contact-dm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gowan-contact-dm-icon i {
    width: 20px;
    height: 20px;
}

.gowan-contact-note {
    margin-top: 0.75rem;
    color: #6b7280;
    text-align: center;
    font-size: 0.84rem;
}

@media (max-width: 767px) {
    .gowan-contact-page {
        min-height: calc(100vh - 180px);
        padding: 1.25rem 0.9rem 6rem;
    }

    .gowan-contact-card {
        border-radius: 1.2rem;
        padding: 1.15rem;
    }

    .gowan-contact-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}
