/* Contact strip above footer */
.site-contact-strip {
    background-color: #141414;
    background-image: linear-gradient(180deg, #1a1a1a 0%, #131313 100%);
    border-radius: 10px;
    margin: 0.3rem 0.3rem 0;
    padding-block: 1.75rem;
    padding-inline: 0;
    position: relative;
    border: 1px solid rgba(220, 20, 60, 0.18);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.site-contact-strip__inner {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: 2rem;
    box-sizing: border-box;
}

.site-contact-strip__col {
    text-align: center;
}

.site-contact-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(220, 20, 60, 0.5) 20%,
        #ff1f4d 50%,
        rgba(220, 20, 60, 0.5) 80%,
        transparent 100%);
    pointer-events: none;
}

.site-contact-strip__heading {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(242, 110, 110, 0.95);
    margin-bottom: 0.85rem;
}

.site-contact-strip__text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.55;
    font-weight: 300;
}

.site-contact-strip__meta {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.site-contact-strip__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.site-contact-strip__socials {
    gap: 0.65rem;
}

.site-contact-strip .contact-social-link {
    font-size: 0.9rem;
    padding: 0.35rem 0.75rem;
}

@media (max-width: 575.98px) {
    .site-contact-strip {
        padding-block: 1.25rem;
    }

    .site-contact-strip__inner {
        padding-inline: 1.25rem;
    }

    .site-contact-strip__heading {
        margin-bottom: 0.6rem;
    }
}

/* Footer Section Styles */
.footer {
    background-color: #141414;
    background-image: linear-gradient(180deg, #131313 0%, #1a1a1a 100%);
    border-radius: 10px;
    margin: 0.3rem;
    padding: 1.25rem 2rem;
    position: relative;
    border: 1px solid rgba(220, 20, 60, 0.18);
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(220, 20, 60, 0.5) 20%,
        #ff1f4d 50%,
        rgba(220, 20, 60, 0.5) 80%,
        transparent 100%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.footer-content a {
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-content a:hover {
    color: #ff8a8a !important;
    text-shadow: 0 0 8px rgba(220, 20, 60, 0.55);
}

.footer-content p {
    margin: 0;
}
