/* =============================================
   ENHANCED HERO SECTION - AGYAPA TILES
   With social proof, countdown, CTAs, and trust badges
   ============================================= */

/* Keep all your existing hero styles and add these: */

/* =============================================
   SOCIAL PROOF (Stats below title)
   ============================================= */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUpOnce 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(131, 24, 24, 0.95);
    font-size: 0.95rem;
    font-weight: 600;
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-divider {
    width: 1px;
    height: 25px;
    background: rgba(246,173,85,0.5);
}

/* =============================================
   COUNTDOWN TIMER (40% OFF Banner)
   ============================================= */
.promo-banner {
    background: linear-gradient(135deg, #F6AD55, #ED8936);
    padding: 1rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(246,173,85,0.4);
    opacity: 0;
    animation: slideUpOnce 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.7s;
}

.promo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: rgb(109, 29, 29);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-text .discount {
    font-size: 2rem;
    color: #1A202C;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.countdown-boxes {
    display: flex;
    gap: 0.5rem;
}

.countdown-box {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    min-width: 60px;
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: rgb(114, 45, 45);
    line-height: 1;
}

.countdown-unit {
    display: block;
    font-size: 0.7rem;
    color: rgba(180, 43, 43, 0.8);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* =============================================
   MULTIPLE BUTTONS (Shop Now + Get Quote)
   ============================================= */
.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    
}


.hero .btn-secondary {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    opacity: 0;
    animation: slideUpOnce 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1s;
    
}

.hero .btn-secondary:hover {
    background: white;
    color: #1A202C;
    transform: translateY(-5px);
}

/* =============================================
   TRUST BADGES (Below buttons)
   ============================================= */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    opacity: 0;
    animation: slideUpOnce 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 1.1s;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    margin-top: 5rem;
    margin: 5rem;
    margin-bottom: -40rem;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: rgba(246,173,85,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid rgba(246,173,85,0.4);
    transition: all 0.3s ease;
}

.trust-badge:hover .badge-icon {
    background: rgba(246,173,85,0.4);
    border-color: #F6AD55;
    box-shadow: 0 8px 20px rgba(246,173,85,0.3);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.3;
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    /* Social Proof */
    .hero-stats {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Promo Banner */
    .promo-banner {
        padding: 0.75rem 1.25rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }
    
    .promo-text {
        font-size: 1rem;
    }
    
    .promo-text .discount {
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .countdown-box {
        min-width: 50px;
        padding: 0.4rem 0.6rem;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .countdown-unit {
        font-size: 0.65rem;
    }
    
    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero .btn-primary,
    .hero .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Trust Badges */
    .trust-badges {
        gap: 1.5rem;
    }
    
    .badge-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .promo-text {
        font-size: 0.9rem;
    }
    
    .promo-text .discount {
        font-size: 1.3rem;
    }
    
    .countdown-boxes {
        gap: 0.4rem;
    }
    
    .countdown-box {
        min-width: 45px;
        padding: 0.35rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.1rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
}