.contact-hero {
    padding: 32px 0 48px 0;
}

.contact-heading {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.contact-copy {
    color: #d8dde6;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.contact-card {
    max-width: 560px;
    padding: 32px;
    border-radius: 20px;
    background: linear-gradient(180deg, #1d1f24 0%, #111318 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.contact-profile {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 28px;
}

.contact-profile-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--site-colour-orange);
}

.contact-profile h3 {
    color: var(--site-colour-orange);
    font-size: 2rem;
    margin-bottom: 6px;
}

.contact-profile h3 span {
    color: var(--site-colour-white);
}

.contact-profile p {
    color: var(--site-colour-white);
    margin: 0;
}

.contact-featured {
    display: grid;
    gap: 12px;
}

.contact-featured h4 {
    color: var(--site-colour-white);
    margin-bottom: 4px;
}

.contact-featured a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--site-colour-off-white);
    text-decoration: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: background 0.15s ease, transform 0.15s ease;
}

.contact-featured a:hover {
    color: var(--site-colour-white);
    background: rgba(230, 126, 35, 0.18);
    transform: translateY(-1px);
}

.contact-featured i {
    color: var(--site-colour-orange);
    width: 22px;
    text-align: center;
}

@media (max-width: 991px) {
    .contact-heading,
    .contact-copy {
        text-align: center;
    }

    .contact-card {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .contact-profile {
        flex-direction: column;
        text-align: center;
    }
}