/* =====================================================
   CarryMen - Footer Styles
   Promotional CTA + Social Media Icons
   Stack: Bootstrap 5.3 + Font Awesome 6
   ===================================================== */

/* ---------- Promotional CTA Section ---------- */
.cm-promo {
    padding: 60px 0 0;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.cm-promo .container {
    max-width: 1320px;
}

.cm-promo-card {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    padding: 50px 60px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.25);
}

/* Decorative circles */
.cm-promo-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cm-promo-card::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cm-promo-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cm-promo-content {
    flex: 1 1 auto;
}

.cm-promo-content h2 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.cm-promo-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 680px;
}

.cm-promo-btn {
    flex: 0 0 auto;
    min-width: 180px;
    padding: 16px 32px;
    border-radius: 12px;
    border: 0;
    background: #ffffff;
    color: #F97316 !important;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cm-promo-btn:hover {
    background: #ffffff;
    color: #EA580C !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.cm-promo-btn i {
    font-size: 18px;
}

/* ---------- Footer Social Icons ---------- */
.cm-footer-social {
    text-align: left;
}

.cm-footer-social h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
    font-family: "Poppins", sans-serif;
}

.cm-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cm-social-icons li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cm-social-icons li a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #F56A00;
    transform: translateY(-3px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 991px) {
    .cm-promo-card {
        padding: 40px 36px;
    }

    .cm-promo-content h2 {
        font-size: 26px;
    }

    .cm-promo-row {
        flex-direction: column;
        text-align: center;
    }

    .cm-promo-content p {
        max-width: 100%;
    }

    .cm-footer-social {
        text-align: center;
    }

    .cm-social-icons {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .cm-promo-card {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .cm-promo-content h2 {
        font-size: 22px;
    }

    .cm-promo-content p {
        font-size: 14px;
    }

    .cm-promo-btn {
        width: 100%;
        min-width: 0;
    }
}
