/* ===================================
   GROUP PROMOTION SECTION
   =================================== */

.group-promotion-section {
    padding: 60px 0 0 0;
    background: linear-gradient(135deg, #0B2C54 0%, #1E4D8B 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* Background Pattern (Optional) */
.group-promotion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 25%);
    pointer-events: none;
}

.promotion-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
    padding-bottom: 60px;
    /* Add padding here since section padding is gone */
}

.promotion-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotion-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.promotion-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.promotion-logos {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px 30px;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.promotion-logo-item img {
    height: 40px;
    width: auto;
    display: block;
}

.promotion-logo-divider {
    width: 1px;
    height: 30px;
    background: #E5E7EB;
}

/* Image Content */
.promotion-image-container {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    /* Align to bottom */
    justify-content: center;
    padding-left: 0;
}

.promotion-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.promotion-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide Decorative Elements */
.promo-decoration {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .promo-row {
        flex-direction: column-reverse;
    }

    .promotion-content {
        padding-right: 0;
        text-align: center;
        margin-top: 60px;
        padding-bottom: 60px;
    }

    .promotion-description {
        margin: 0 auto 40px;
    }

    .promotion-image-container {
        height: 400px;
        min-height: auto;
        padding-left: 0;
        margin-top: 0;
    }
}

/* Custom Buttons */
.btn-outline-orange {
    color: #FF6B35;
    background-color: transparent;
    border: 2px solid #FF6B35;
    padding: 12px 36px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-outline-orange:hover {
    color: #FFFFFF;
    background-color: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Promotion Statistics */
.promotion-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.promo-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.promo-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.promo-stat-icon {
    font-size: 28px;
    color: #FF6B35;
    display: flex;
    align-items: center;
}

.promo-stat-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.promo-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
}

.promo-stat-label {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .promotion-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .promo-stat-item {
        width: 100%;
        justify-content: center;
    }
}