/* --- DESIGN "DE CE NOI" 2026 --- */

.why-us-section {
    background-color: #ffffff;
}

/* 1. Header Elements */
.feature-badge {
    display: inline-flex;
    align-items: center;
    background: #fdf2e9;
    color: #e67e22;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.pulse-dot {
    height: 8px; width: 8px;
    background: #e67e22;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(230, 126, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0); }
}

.gradient-text {
    background: linear-gradient(90deg, #e67e22, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 2. Advantage Cards */
.advantage-card {
    background: #fff;
    border-radius: 25px;
    height: 100%;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #e67e22;
}

.active-border {
    border-bottom: 4px solid #e67e22;
}

/* 3. Card Image & Icon */
.card-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
}

.card-img-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.advantage-card:hover .card-img-box img {
    transform: scale(1.1);
}

.icon-floating {
    position: absolute;
    top: 15px; right: 15px;
    width: 50px; height: 50px;
    background: #fff;
    color: #e67e22;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

/* 4. Text & Keywords Highlight */
.card-body-custom {
    padding: 25px 10px 10px 10px;
}

.card-body-custom h4 {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.25rem;
}

.card-body-custom p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-word {
    color: #e67e22;
    font-weight: 700;
    background: rgba(230, 126, 34, 0.05);
    padding: 1px 4px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .advantage-card { margin-bottom: 20px; }
    .display-5 { font-size: 2.2rem; }
}
