/* Modern Homepage Enhancements */

/* ============================
   Statistics Section
   ============================ */

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(165, 94, 234, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(165, 94, 234, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(16, 16, 51, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(132, 94, 247, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6C5CE7, #A29BFE);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
    border-color: rgba(132, 94, 247, 0.6);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(165, 94, 234, 0.2));
    border: 2px solid rgba(108, 92, 231, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #a55eea;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.3), rgba(165, 94, 234, 0.3));
    border-color: rgba(108, 92, 231, 0.6);
}

.stat-content {
    color: #ffffff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ============================
   Price Widgets
   ============================ */

.widget-card {
    min-height: 180px;
}

.widget-card .stat-icon {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(165, 94, 234, 0.2));
}

.widget-card .stat-icon i.fab.fa-bitcoin {
    color: #F7931A;
}

.widget-card .stat-icon i.fas.fa-chart-bar {
    color: #00B894;
}

.widget-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.75rem 0;
    line-height: 1.2;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget-change {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.widget-change.positive {
    color: #00B894;
    background: rgba(0, 184, 148, 0.1);
}

.widget-change.negative {
    color: #E17055;
    background: rgba(225, 112, 85, 0.1);
}

/* ============================
   Trust Section
   ============================ */

.trust-section {
    padding: 80px 0;
    background: #05051c;
    color: #ffffff;
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(16, 16, 51, 0.5);
    border: 1px solid rgba(132, 94, 247, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(16, 16, 51, 0.8);
    border-color: rgba(132, 94, 247, 0.4);
    transform: translateX(10px);
}

.trust-item i {
    font-size: 1.75rem;
    color: #a55eea;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.trust-badge {
    background: rgba(16, 16, 51, 0.8);
    border: 1px solid rgba(132, 94, 247, 0.3);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    border-color: rgba(132, 94, 247, 0.6);
}

.trust-badge i {
    font-size: 2.5rem;
    color: #a55eea;
}

.trust-badge span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================
   Testimonials Section
   ============================ */

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(13, 13, 43, 0.95) 0%, rgba(25, 25, 60, 0.95) 100%);
    color: #ffffff;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: #ffffff;
}

.testimonial-card {
    background: rgba(16, 16, 51, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(132, 94, 247, 0.3);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(108, 92, 231, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
    border-color: rgba(132, 94, 247, 0.6);
}

.testimonial-rating {
    color: #FDCB6E;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================
   Enhanced Hero Section
   ============================ */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* ============================
   Enhanced Plan Cards
   ============================ */

.plan-card {
    position: relative;
    overflow: hidden;
}

.plan-range {
    margin: 1.5rem 0;
    text-align: center;
}

.plan-amount-range {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.plan-duration {
    margin: 1rem 0;
    text-align: center;
}

.plan-duration p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.plan-description {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(108, 92, 231, 0.1);
    border-left: 3px solid #6C5CE7;
    border-radius: 5px;
    text-align: center;
}

.plan-description p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.plan-return {
    margin: 2rem 0;
    text-align: center;
}

.return-amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FDCB6E, #E17055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.plan-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover::after {
    opacity: 1;
}

.plan-card.featured {
    position: relative;
}

.plan-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: 20px;
    left: -30px;
    background: linear-gradient(135deg, #FDCB6E, #E17055);
    color: #ffffff;
    padding: 0.5rem 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(-45deg);
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.4);
    z-index: 10;
}

/* ============================
   Animated Counter
   ============================ */

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animated {
    animation: countUp 0.6s ease-out;
}

/* ============================
   Responsive Design
   ============================ */

@media (max-width: 992px) {
    /* 4 plans become 2 columns on tablets */
    #investmentPlans .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .trust-title {
        font-size: 2rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    /* 4 plans become 1 column on mobile */
    #investmentPlans .col-md-3,
    #investmentPlans .col-md-4,
    #investmentPlans .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .plan-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .trust-title {
        font-size: 1.75rem;
    }
    
    .trust-item {
        padding: 1.25rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* ============================
   Footer Social Icons
   ============================ */

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #6C5CE7;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ============================
   Scroll Animations
   ============================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

.plan-card:nth-child(1) { transition-delay: 0.1s; }
.plan-card:nth-child(2) { transition-delay: 0.2s; }
.plan-card:nth-child(3) { transition-delay: 0.3s; }

.step-card:nth-child(1) { transition-delay: 0.1s; }
.step-card:nth-child(2) { transition-delay: 0.2s; }
.step-card:nth-child(3) { transition-delay: 0.3s; }
.step-card:nth-child(4) { transition-delay: 0.4s; }

.testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

/* ============================
   Enhanced Visual Effects
   ============================ */

.hero-section {
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(165, 94, 234, 0.15) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Gradient text enhancement */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6C5CE7, #A29BFE);
    border-radius: 2px;
}

/* Enhanced button hover effects */
.btn-primary, .btn-plan {
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-plan::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .btn-plan:hover::before {
    width: 300px;
    height: 300px;
}

/* ============================
   Loading States
   ============================ */

.stat-number:not(.animated) {
    opacity: 0.5;
}

.stat-number.animated {
    opacity: 1;
}




