.featured-section {
    padding: 8rem 0;
    background-image: url('../img/REAL DEAL.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: visible;
    margin-top: -60px;
    margin-bottom: -60px;
    z-index: 10;
    /* clip-path removed to straighten edges */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.featured-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none; /* Overlay removed for new background */
    z-index: 1;
}

.featured-header-container {
    text-align: center;
    margin-bottom: 4rem;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #F3471F, #d53a18);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(243, 71, 31, 0.3);
}

.featured-badge i {
    font-size: 0.8rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.featured-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: #F3471F;
    margin-bottom: 0.5rem;
}

.featured-title {
    font-family: 'Poppins', sans-serif;
    color: #0A4697;
    text-transform: uppercase;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.featured-description {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.featured-logos-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.logo-spotlight {
    flex: 1;
    max-width: 300px;
    min-width: 250px;
}

.logo-container-enhanced {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.logo-container-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.logo-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 71, 31, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo-container-enhanced:hover .logo-glow {
    opacity: 1;
}

.featured-logo-enhanced {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.logo-container-enhanced:hover .featured-logo-enhanced {
    filter: grayscale(0%);
}

.logo-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #0A4697;
    margin-bottom: 0.5rem;
}

.logo-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.featured-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F3471F, transparent);
}

.divider-icon {
    background: #F3471F;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.featured-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #F3471F;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #0A4697;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .featured-logos-showcase {
        flex-direction: column;
        gap: 2rem;
    }
    
    .featured-divider {
        transform: rotate(90deg);
    }
    
    .divider-line {
        width: 40px;
    }
    
    .featured-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
