﻿.contact-page {
    background-color: #f3f3f3;
}

.contact-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    padding: 110px 0 90px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.contact-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.15));
}

.contact-hero__content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.contact-hero__title {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-hero__subtitle {
    font-size: 1.125rem;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-intro {
    padding: 60px 0;
}

.contact-intro .container {
    max-width: 820px;
    color: #4b4b4b;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}

.contact-page .section-6 {
    padding-top: 0;
    margin-top: -70px;
    position: relative;
    z-index: 3;
}

.contact-page .section-6 .container {
    background-color: #fff;
    padding: 60px 40px 90px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.contact-details {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.contact-details__title {
    margin-bottom: 0;
}

.contact-details__desc {
    color: #6c6c6c;
    max-width: 600px;
}

.contact-details__email {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-details__email-label {
    color: #6c6c6c;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-details__email-link {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.contact-details__email-link:hover,
.contact-details__email-link:focus-visible {
    border-color: #f4d713;
    outline: none;
}

@media (max-width: 991px) {
    .contact-hero {
        min-height: 280px;
        padding: 90px 0 70px;
        text-align: center;
    }

    .contact-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-page .section-6 {
        margin-top: -40px;
    }

    .contact-page .section-6 .container {
        padding: 40px 25px 70px;
    }

    .contact-details {
        padding: 0 10px;
    }
}

@media (max-width: 575px) {
    .contact-hero {
        padding: 80px 0 60px;
    }

    .contact-hero__title {
        font-size: 2rem;
    }

    .contact-details__email {
        flex-direction: column;
        gap: 0.4rem;
    }

    .contact-details__email-label {
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.06em;
    }
}
