/* Homepage-specific styles (hero, converter, prices, etc.) */

/* ============================
   Hero Section
   ============================ */

.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 13, 43, 0.95) 0%, rgba(25, 25, 60, 0.95) 100%);
    min-height: 100vh;
    color: #ffffff;
}

.hero-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.6;
}

.hero-section .hero-content {
    color: #ffffff;
}

.hero-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.feature-item i {
    color: #FDCB6E;
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(16, 16, 51, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(132, 94, 247, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

.floating-card i {
    font-size: 2.5rem;
    color: #a55eea;
    margin-bottom: 0.5rem;
}

.floating-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.floating-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* ============================
   Hero Section Buttons
   ============================ */

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.5);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.6);
    color: #ffffff;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
    }
}

/* ============================
   About Section
   ============================ */

.about-section {
    padding: 80px 0;
    background: #05051c;
    color: #ffffff;
}

.about-section .section-title,
.about-section .section-subtitle,
.about-section .section-text {
    color: #ffffff;
}

.about-section .feature-card {
    background: #101033;
    border: 1px solid rgba(132, 94, 247, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
}

.about-section .feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(132, 94, 247, 0.6);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
}

.about-section .feature-card h4 {
    color: #ffffff;
    margin-top: 1rem;
}

.about-section .feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

.about-section .feature-icon {
    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);
}

.about-section .feature-icon i {
    color: #a55eea;
}

/* ============================
   Features Section
   ============================ */

.features-section {
    padding: 80px 0;
    background: #05051c;
    color: #ffffff;
}

.features-section .section-title,
.features-section .section-subtitle {
    color: #ffffff;
}

.feature-box {
    background: #101033;
    border: 1px solid rgba(132, 94, 247, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    color: #ffffff;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: rgba(132, 94, 247, 0.6);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
}

.feature-box i {
    font-size: 3rem;
    color: #a55eea;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-box h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* ============================
   Investment Plans Section
   ============================ */

.plans-section {
    padding: 80px 0;
    background: #05051c;
    color: #ffffff;
}

.plans-section .section-title,
.plans-section .section-subtitle {
    color: #ffffff;
}

.plan-card {
    background: #101033;
    border: 1px solid rgba(132, 94, 247, 0.3);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    color: #ffffff;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
    border-color: rgba(132, 94, 247, 0.6);
}

.plan-card.featured {
    border-color: rgba(253, 203, 110, 0.5);
    box-shadow: 0 10px 30px rgba(253, 203, 110, 0.2);
}

.plan-card.featured:hover {
    border-color: rgba(253, 203, 110, 0.8);
    box-shadow: 0 15px 40px rgba(253, 203, 110, 0.3);
}

.plan-header {
    position: relative;
    margin-bottom: 2rem;
}

.plan-header h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FDCB6E, #E17055);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.4);
}

.plan-body {
    color: #ffffff;
}

.plan-return {
    margin: 2rem 0;
}

.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;
}

.return-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 0.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.plan-features li i {
    color: #FDCB6E;
    margin-right: 0.75rem;
}

.btn-plan {
    background: linear-gradient(135deg, #6c5ce7, #a55eea);
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    width: 100%;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.5);
    color: #ffffff;
}

/* ============================
   How It Works Section
   ============================ */

.how-it-works-section {
    padding: 80px 0;
    background: #05051c;
    color: #ffffff;
}

.how-it-works-section .section-title,
.how-it-works-section .section-subtitle {
    color: #ffffff;
}

.step-card {
    background: #101033;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    border: 1px solid rgba(132, 94, 247, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    color: #ffffff;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
    border-color: rgba(132, 94, 247, 0.6);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c5ce7, #a55eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}

.step-card h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* ============================
   CTA Section
   ============================ */

.cta-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;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.cta-card {
    background: #101033;
    border: 1px solid rgba(132, 94, 247, 0.3);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.cta-card h2 {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-light {
    background: #ffffff;
    color: #6C5CE7;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: #6C5CE7;
}

.cta-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================
   Section Titles
   ============================ */

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

/* ============================
   Responsive Design
   ============================ */

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-image {
        height: 400px;
        margin-top: 2rem;
    }
    
    .floating-card {
        position: relative;
        margin-bottom: 1rem;
    }
    
    .cta-card {
        padding: 2.5rem 2rem;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-features {
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .plan-card {
        padding: 2rem 1.5rem;
    }
    
    .return-amount {
        font-size: 2.5rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-card h2 {
        font-size: 1.75rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-light,
    .cta-buttons .btn-outline-light {
        width: 100%;
    }
}
