/* ============================================
   SOCIAL CTA SECTION STYLES
   ============================================ */

.social-cta-section {
    padding: 5rem 0;
    background-color: #001a33;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social-cta-section .max-w-4xl {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-cta-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.social-cta-description {
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: rgba(191, 219, 254, 0.7);
    max-width: 36rem;
    margin-bottom: 2.5rem;
}

.social-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 42rem;
}

.social-cta-btn {
    outline: none;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 11.5rem;
    padding: 0.9rem 1.75rem;
    border-radius: 500px;
    overflow: hidden;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05rem;
    color: #ffffff;
    background: #002956;
    border: none;
    text-decoration: none;
}

.social-cta-btn span,
.social-cta-btn i {
    position: relative;
    z-index: 10;
    transition: color 0.4s ease;
    color: #ffffff;
}

.social-cta-btn i {
    font-size: 1.35rem;
    line-height: 1;
}

.social-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    z-index: 0;
    background: #002956;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.social-cta-btn--instagram {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.social-cta-btn--facebook {
    background: #1877f2;
}

.social-cta-btn--youtube {
    background: #ff0000;
}

.social-cta-btn:hover::before {
    transform: translate3d(100%, 0, 0) skew(30deg);
}

.social-cta-btn:hover span,
.social-cta-btn:hover i {
    color: #ffffff;
}

/* Mobile: iPhone 12/13/14 (390x844) */
@media (max-width: 390px) and (max-height: 844px) {
    .social-cta-section {
        padding: 4rem 24px;
    }

    .social-cta-section > .max-w-4xl {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%;
        width: 100%;
    }

    .social-cta-title {
        font-size: 32px !important;
        margin-bottom: 1rem;
    }

    .social-cta-description {
        font-size: 16px !important;
        margin-bottom: 2rem;
    }

    .social-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
    }

    .social-cta-btn {
        width: 100%;
        max-width: 18rem;
    }
}

@media (max-width: 768px) {
    .social-cta-title {
        font-size: 32px;
    }
}
