/* Modern Promosi Section - Balanced Design */

#promosi {
    position: relative;
    padding: 80px 0;
    background: #0066cc 0%;
    overflow: hidden;
}

/* Container */
.container {
    position: relative;
    z-index: 1;
}

/* Header Section */
.promosi-header {
    margin-bottom: 4rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.header-badge i {
    color: #ffd700;
    font-size: 1.1rem;
}

.section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefit Cards */
.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00baff, #0066cc, #00baff);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(10px);
}

.benefit-card:hover .card-glow {
    opacity: 0.6;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Icon Wrapper */
.icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.benefit-card:hover .icon-bg {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Discount Icon Styling */
.percentage-display {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
}

.percentage-display .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.percentage-display .symbol {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-left: 2px;
}

.icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.4);
}

/* Main Icons */
.main-icon {
    font-size: 2.5rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.icon-text {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

/* Guarantee Display */
.guarantee-display {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.guarantee-display .main-icon {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.guarantee-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 0.2rem 0.8rem;
    line-height: 1;
    letter-spacing: 0.5px;
}

/* Coverage Dots */
.coverage-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.coverage-dots .dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.coverage-dots .dot:nth-child(1) { animation-delay: 0s; }
.coverage-dots .dot:nth-child(2) { animation-delay: 0.3s; }
.coverage-dots .dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.card-benefit {
    display: block;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: #ffffff;
}

.card-benefit i {
    color: #00ff88;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* Animasi masuk — ditangani AOS (data-aos di HTML) */

/* Focus States */
.benefit-card:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    #promosi {
        padding: 60px 0;
    }
    
    .promosi-header {
        margin-bottom: 3rem;
    }
    
    .header-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .percentage-display .number {
        font-size: 2rem;
    }
    
    .percentage-display .symbol {
        font-size: 1.2rem;
    }
    
    .main-icon {
        font-size: 2rem;
    }
    
    .guarantee-display .main-icon {
        font-size: 2rem;
    }
    
    .guarantee-number {
        font-size: 1rem;
        padding: 0.15rem 0.6rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .header-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .card-benefit {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .guarantee-display .main-icon {
        font-size: 1.8rem;
    }
    
    .guarantee-number {
        font-size: 0.9rem;
        padding: 0.1rem 0.5rem;
    }
}