/* ========================================
   Contacts page styles — PromBarrier
   ======================================== */

/* --- Contacts Header --- */

.contacts-header {
    background-color: var(--lighter-grey);
    padding: 2rem 0 2.5rem;
}

.contacts-header h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--dark-blue);
}

.contacts-header p {
    font-size: 1rem;
    color: var(--dark-grey);
    max-width: 700px;
    line-height: 1.6;
}

/* --- Contacts Cards --- */

.contacts-cards {
    padding: 2rem 0;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--lighter-grey);
    border-radius: 10px;
    border: 1px solid var(--light-grey);
    height: 100%;
}

.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--yellow);
    flex-shrink: 0;
}

.contact-card__icon i {
    font-size: 1.25rem;
    color: var(--yellow);
}

.contact-card__body {
    flex: 1;
    min-width: 0;
}

.contact-card__title {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--dark-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-card__value {
    font-family: 'Google Sans 17pt', 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--black);
    line-height: 1.4;
}

.contact-card__value a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card__value a:hover {
    color: var(--dark-yellow);
}

.contact-card__note {
    font-size: 0.8rem;
    color: var(--dark-grey);
    margin-top: 0.25rem;
}

/* --- Map --- */

.contacts-map {
    padding: 0 0 2rem;
}

.contacts-map__frame {
    width: 100%;
    height: 400px;
    border: 1px solid var(--light-grey);
    border-radius: 10px;
    overflow: hidden;
}

.contacts-map__frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Requisites --- */

.contacts-requisites {
    padding: 2rem 0;
}

.contacts-requisites h2 {
    font-size: 1.35rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

/* --- Responsive --- */

@media (max-width: 767.98px) {
    .contacts-map__frame {
        height: 300px;
    }
}
