.contact-page {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 12px 0 72px;
}

.contact-hero {
    max-width: 860px;
    margin: 0 auto 32px;
    text-align: center;
}

.contact-hero h1 {
    margin: 0 0 16px;
    line-height: 1.1;
    color: #ffffff;
}

.contact-intro {
    margin: 0 auto;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.contact-card,
.contact-feature {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(212, 175, 55 ,0.22);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.contact-card {
    padding: 26px 22px;
}

.contact-card::before,
.contact-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 35%);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 14px;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.08);
    font-size: 1.15rem;
}

.contact-card h2 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    color: #ffffff;
}

.contact-card p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.contact-card a {
    color: #d4af37;
    text-decoration: none;
    word-break: break-word;
}

.contact-card a:hover {
    color: #ffffff;
}

.contact-list {
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.contact-list li + li {
    margin-top: 4px;
}

.contact-socials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 10px 24px;
    align-items: start;
}

.contact-socials a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.contact-socials a i {
    color: #d4af37;
    width: 18px;
    text-align: center;
}

.contact-socials a:hover {
    color: #d4af37;
}

.contact-feature {
    padding: 34px 28px;
}

.contact-feature-content {
    max-width: 760px;
}

.contact-feature-label {
    margin: 0 0 10px;
    color: #d4af37;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-feature h2 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #ffffff;
}

.contact-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 680px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-family: "Gabriela", serif;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 300ms ease,
        border-color 300ms ease,
        background 300ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.contact-button:hover {
    transform: translateY(-1px);
}

.contact-button.primary {
    background: #d4af37;
    border: 1px solid #d4af37;
    color: #000000;
}

.contact-button.primary:hover {
    background: #f4deb0;
    border-color: #f4deb0;
    color: #000000;
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.18);
}

.contact-button.secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.26);
    color: #ffffff;
}

.contact-button.secondary:hover {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.06);
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-feature {
        padding: 28px 22px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 28px 20px 56px;
    }

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

    .contact-card {
        padding: 22px 18px;
    }

    .contact-socials {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-actions {
        flex-direction: column;
    }

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