/**
 * SublioStore Marketing & SEO Styles v1.2.5
 * Reviews, Testimonials, Live Counter, Referral Program
 */

/* Live Order Counter */
.live-counter-section {
    padding: 2rem 0;
    background: rgba(99, 102, 241, 0.05);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.live-counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gradient-card);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease;
}

.live-counter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    animation: shimmerSweep 3s infinite;
}

@keyframes shimmerSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.live-pulse {
    width: 15px;
    height: 15px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
    animation: pulseLive 2s infinite;
}

.live-pulse::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #10b981;
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes pulseLive {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.live-counter-box > i {
    font-size: 3rem;
    color: var(--primary-green);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.counter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    animation: countUp 1s ease;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.counter-sublabel {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Customer Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.03) 0%, transparent 100%);
}

.reviews-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.reviews-section .section-title i {
    color: #fbbf24;
    animation: starRotate 3s ease-in-out infinite;
}

@keyframes starRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-normal);
    animation: fadeInUp 0.6s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(99, 102, 241, 0.1);
    font-family: Georgia, serif;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-glow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
}

.review-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

.review-verified i {
    font-size: 1rem;
}

.review-content {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-content p {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.review-date,
.review-product {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-product i {
    font-size: 1rem;
}

.reviews-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gradient-card);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    animation: fadeIn 0.8s ease;
}

.reviews-cta p {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.reviews-cta .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Referral Program removed per request */

/* Bundle Deals Section */
.bundle-deals-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.bundle-deals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 59, 59, 0.1), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.1), transparent 50%);
    pointer-events: none;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.bundle-card {
    background: var(--gradient-card);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bundle-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bundle-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.bundle-card:hover::before {
    opacity: 1;
}

.featured-bundle {
    border: 3px solid var(--primary-green);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.bundle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: pulse 2s infinite;
}

.anime-badge {
    background: linear-gradient(135deg, #F47521, #FF8C42);
}

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

.bundle-header {
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bundle-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bundle-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.bundle-card:hover .bundle-icon {
    transform: scale(1.1) rotate(5deg);
}

.netflix-icon {
    background: linear-gradient(135deg, #E50914, #B20710);
}

.spotify-icon {
    background: linear-gradient(135deg, #1DB954, #1AA34A);
}

.youtube-icon {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.disney-icon {
    background: linear-gradient(135deg, #113CCF, #0D2E9E);
}

.crunchyroll-icon {
    background: linear-gradient(135deg, #F47521, #E86A1F);
}

.bundle-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.bundle-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bundle-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bundle-pricing {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bundle-original-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.crossed-price {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.save-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

.bundle-current-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.savings-percent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #10b981;
}

.bundle-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.bundle-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.bundle-features li:last-child {
    border-bottom: none;
}

.bundle-features i {
    color: #10b981;
    font-size: 1.1rem;
}

.btn-bundle {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-bundle:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.bundle-info-box {
    background: var(--gradient-card);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.bundle-info-box i {
    font-size: 2.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.bundle-info-box h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bundle-info-box p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 70%);
    animation: contactGlow 15s linear infinite;
}

@keyframes contactGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-section .section-header h2 i {
    color: var(--primary-green);
    font-size: 2.5rem;
}

.contact-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: var(--gradient-card);
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

.contact-icon.snapchat {
    background: linear-gradient(135deg, #FFFC00, #FFC700);
}

.contact-icon.instagram {
    background: linear-gradient(135deg, #E1306C, #F56040, #FCAF45);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.contact-link i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .bundle-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .live-counter-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .reviews-section .section-title {
        font-size: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }

    .bundle-deals-section {
        padding: 3rem 0;
    }

    .bundle-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bundle-card {
        padding: 1.5rem;
    }

    .bundle-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .bundle-title {
        font-size: 1.3rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .bundle-info-box {
        flex-direction: column;
        text-align: center;
    }

    .contact-section .section-header h2 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .live-counter-box > i {
        font-size: 2rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}
