/* social media icons */

.social-icons {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 5px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: transparent;
    transition: transform 0.3s;
}

.social-icon svg {
    width: 30px;
    height: 30px;
    fill: #f6f6f6;
    transition: fill 0.3s;
}

.social-icon:hover {
    transform: translateY(-8px);
}

.social-icon:hover svg {
    fill: #ffffff;
}

/* footer "get in touch" contact icons */

.contact-icon {
    width: 15px;
    height: 15px;
    fill: #f6f6f6;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 2px;
}

.contact-icon--info {
    width: 13px;
    height: 13px;
    margin-right: 0;
    opacity: 0.8;
}

.phone-row {
    position: relative;
}

.info-tooltip {
    display: inline-block;
    cursor: help;
}

.info-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    width: 300px;
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
    padding: 8px 10px;
    background-color: #2c2e30;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
    white-space: normal;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
    pointer-events: none;
    z-index: 10;
}

.info-tooltip:hover::after,
.info-tooltip:focus::after {
    opacity: 1;
    visibility: visible;
}

/* footer headings */

footer h3 {
    font-weight: 500;
}

/* footer body text color */

footer {
    color: #f6f6f6;
}

/* footer certified badges */

.certified-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.certified-badges img {
    max-width: 100px;
    height: auto;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
