/**
 * Contact Section Block Styles
 *
 * Full-width white section with a centered title, a short teal accent line,
 * a description paragraph and email / phone contact links beside teal icons.
 *
 * Reference design: child-theme-sections-screenshots/contact-section.png
 *
 * @package ACF Child Theme
 */

:root {
    --color-grey: #f3f3f3;
    --color-navy: #0d1e3b;
    --color-teal: #17abc1;
    --color-text: #252525;
    --color-blue: #004e95;
    --color-white: #ffffff;
    --font-primary: 'Montserrat', sans-serif;
}

/* Section wrapper - full-width white background
   ========================================================================== */
.contact-section {
    width: 100%;
    margin: 0;
    padding: 70px 0;
    background-color: var(--color-white, #ffffff);
    font-family: var(--font-primary), 'Montserrat', sans-serif;
    text-align: center;
}

.contact-section__container {
    max-width: var(--theme-normal-container-max-width, 1290px);
    width: var(--theme-container-width, 100%);
    margin: 0 auto;
    padding: 0 20px;
}

/* Title and accent line
   ========================================================================== */
.contact-section__title {
    margin: 0 0 16px 0;
    color: var(--color-navy, #0d1e3b);
    font-weight: 700;
}

.contact-section__line {
    display: block;
    width: 90px;
    height: 4px;
    margin: 0 auto 28px auto;
    background-color: var(--color-teal, #17abc1);
    border-radius: 2px;
}

/* Description
   ========================================================================== */
.contact-section__description {
    max-width: 820px;
    margin: 0 auto;
    color: var(--color-text, #252525);
}

.contact-section__description p {
    margin: 0 0 14px 0;
}

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

/* Contact details (email + phone)
   ========================================================================== */
.contact-section__details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 60px;
    list-style: none;
    margin: 36px 0 0 0;
    padding: 0;
}

.contact-section__detail {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.contact-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    color: var(--color-teal, #17abc1);
}

.contact-section__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-section__link {
    color: var(--color-navy, #0d1e3b);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-section__link:hover,
.contact-section__link:focus-visible {
    opacity: 0.7;
    outline: none;
}

/* Responsive - Tablet
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1023px) {
    .contact-section {
        padding: 60px 0;
    }
}

/* Responsive - Mobile (stack email above phone)
   ========================================================================== */
@media (max-width: 768px) {
    .contact-section {
        padding: 45px 0;
    }

    .contact-section__details {
        flex-direction: column;
        gap: 20px;
    }
}
