/* Social links page */
.social-inline-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    border-top: 1px solid rgba(29, 112, 182, 0.08);
}

.social-inline-heading {
    max-width: 650px;
    margin: 0 auto 28px;
    text-align: center;
}

.social-inline-heading h2 {
    margin: 8px 0;
    color: var(--brand-navy);
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.social-inline-heading p {
    color: var(--text-muted);
}

.social-inline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.social-inline-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 62px;
    padding: 14px 12px;
    border: 1px solid rgba(27, 41, 74, 0.08);
    border-radius: 8px;
    background: #ffffff;
    color: var(--social-color);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(27, 41, 74, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-inline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(27, 41, 74, 0.1);
}

.social-inline-card i {
    font-size: 18px;
}

.social-page {
    background: #f7fbff;
}

.social-hero {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    display: flex;
    align-items: center;
    background: #101d3a;
    color: #ffffff;
}

.social-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: linear-gradient(90deg, #e15b26, #f8a529, #1d70b6);
}

.social-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding-top: 100px;
    padding-bottom: 78px;
}

.social-hero-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.28;
}

.social-hero-glow-one {
    top: -190px;
    right: 8%;
    background: #1d70b6;
}

.social-hero-glow-two {
    bottom: -240px;
    left: 12%;
    background: #e15b26;
}

.social-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #ffd39a;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.social-hero h1 {
    max-width: 760px;
    margin: 22px 0 18px;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.social-hero h1 span {
    color: #ffad62;
}

.social-hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.social-links-section {
    padding: 88px 0 110px;
}

.social-links-container {
    max-width: 1000px;
}

.social-section-heading {
    max-width: 670px;
    margin: 0 auto 42px;
    text-align: center;
}

.social-section-heading h2 {
    margin: 10px 0 12px;
    color: var(--brand-navy);
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.social-section-heading p {
    color: var(--text-muted);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.social-link-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 112px;
    padding: 22px 24px;
    overflow: hidden;
    border: 1px solid rgba(27, 41, 74, 0.08);
    border-radius: 8px;
    background: #ffffff;
    color: var(--brand-navy);
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(27, 41, 74, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.social-link-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--social-color);
}

.social-link-card:hover {
    transform: translateY(-4px);
    border-color: var(--social-color);
    box-shadow: 0 18px 34px rgba(27, 41, 74, 0.12);
}

.social-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--social-soft-color);
    color: var(--social-color);
    font-size: 22px;
}

.social-link-copy {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.social-link-copy strong {
    font-size: 1.05rem;
}

.social-link-copy small {
    overflow-wrap: anywhere;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.social-arrow {
    color: var(--social-color);
    font-size: 14px;
}

.social-facebook {
    --social-color: #1877f2;
    --social-soft-color: #eaf3ff;
}

.social-instagram {
    --social-color: #d62976;
    --social-soft-color: #fff0f6;
}

.social-linkedin {
    --social-color: #0a66c2;
    --social-soft-color: #eaf4ff;
}

.social-email {
    --social-color: #e15b26;
    --social-soft-color: #fff2ea;
}

@media screen and (max-width: 640px) {
    .social-inline-section {
        padding: 55px 0;
    }

    .social-inline-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-hero {
        min-height: 500px;
    }

    .social-hero-inner {
        padding-top: 110px;
        padding-bottom: 76px;
    }

    .social-hero p {
        font-size: 1rem;
    }

    .social-links-section {
        padding: 65px 0 80px;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .social-link-card {
        padding: 18px;
    }
}
