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

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

.hero-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

.btn-hero-primary {
    background: linear-gradient(135deg, #FDCB6E, #E17055);
    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(253, 203, 110, 0.5),
                0 0 20px rgba(253, 203, 110, 0.3),
                0 0 40px rgba(253, 203, 110, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(253, 203, 110, 0.6),
                0 0 30px rgba(253, 203, 110, 0.4),
                0 0 60px rgba(253, 203, 110, 0.3);
    color: #ffffff;
}

.btn-hero-primary i {
    position: relative;
    z-index: 1;
}

.btn-hero-primary span,
.btn-hero-primary {
    position: relative;
    z-index: 1;
}

.btn-hero-secondary {
    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-hero-secondary: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-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
    }
}

/* ============================
   Currency Converter Section
   ============================ */

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

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

.converter-card {
    background: #101033;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(132, 94, 247, 0.4);
}

.converter-group {
    margin-bottom: 1rem;
}

.converter-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #a5b4ff;
}

.converter-input-group {
    display: flex;
    align-items: stretch;
    border-radius: 999px;
    overflow: hidden;
    background: #151542;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.converter-amount {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    padding: 0.9rem 1.2rem;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
}

.converter-amount:focus {
    outline: none;
}

.converter-amount[readonly] {
    cursor: default;
}

.converter-select {
    flex: 0 0 55%;
    border: none;
    padding: 0.9rem 1.2rem;
    background: #1f1f4f;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.converter-select:focus {
    outline: none;
    box-shadow: none;
}

.converter-rate {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #9da3ff;
}

.converter-swap-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #6c5ce7, #a55eea);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-top: 1.9rem;
}

.converter-swap-btn i {
    font-size: 1.2rem;
}

.converter-swap-btn:hover {
    transform: rotate(180deg) scale(1.05);
    box-shadow: 0 14px 32px rgba(108, 92, 231, 0.7);
}

.converter-info {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 1.4rem;
}

.converter-info .info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    color: #d1d5ff;
    font-size: 0.9rem;
}

.converter-info .info-item i {
    color: #fddb92;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .converter-card {
        padding: 2rem 1.5rem;
    }

    .converter-swap-btn {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .converter-card {
        padding: 1.8rem 1.2rem;
    }

    .converter-input-group {
        flex-direction: column;
        border-radius: 18px;
    }

    .converter-select {
        flex: 1 1 auto;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }
}

/* ============================
   Cryptocurrency Prices Section
   ============================ */

.crypto-prices-section {
    padding: 60px 0;
    background: #05051c;
}

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

.crypto-prices-container {
    display: flex;
    justify-content: center;
}

.crypto-prices-widget-wrapper {
    max-width: 480px; /* close to widget width so there is no large extra white space */
    width: 100%;
    margin: 0 auto;
}

.crypto-prices-widget-wrapper .livecoinwatch-widget-3 {
    width: 100% !important;
}

/* ============================
   About & How It Works Sections
   ============================ */

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

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

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

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

.how-it-works-section .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;
}

.how-it-works-section .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);
}

.how-it-works-section .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);
    position: relative;
    z-index: 2;
}

.how-it-works-section .step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(165, 94, 234, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(108, 92, 231, 0.4);
}

.how-it-works-section .step-icon i {
    font-size: 2.5rem;
    color: #a55eea;
}

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

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

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

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

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

.plans-preview-section .plan-preview-card {
    background: #101033;
    color: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    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%;
    position: relative;
}

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

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

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

.plans-preview-section .plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    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);
}

.plans-preview-section .plan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(165, 94, 234, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(108, 92, 231, 0.4);
}

.plans-preview-section .plan-icon i {
    font-size: 2rem;
    color: #a55eea;
}

.plans-preview-section .plan-preview-card h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plans-preview-section .plan-return {
    font-size: 3rem;
    font-weight: 800;
    color: #FDCB6E;
    margin: 1rem 0;
    background: linear-gradient(135deg, #FDCB6E, #E17055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plans-preview-section .plan-range,
.plans-preview-section .plan-duration,
.plans-preview-section .plan-ideal {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.plans-preview-section .plan-range {
    font-weight: 600;
    color: #a55eea;
    font-size: 1.1rem;
}

.plans-preview-section .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);
}

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

.plans-preview-section .btn-primary.btn-lg {
    background: linear-gradient(135deg, #6c5ce7, #a55eea);
    border: none;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

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

/* ============================
   Testimonials Section
   ============================ */

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

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

.testimonials-section .testimonial-card {
    background: #101033;
    color: #ffffff;
}

/* ============================
   Contact Section
   ============================ */

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

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

.contact-section .contact-card {
    background: #101033;
    color: #ffffff;
}

.contact-section .contact-item h6,
.contact-section .contact-item p {
    color: #ffffff;
}

/* ============================
   Payment Methods Section
   ============================ */

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

.payment-methods-section .section-title,
.payment-methods-section .section-text {
    color: #ffffff;
}

.payment-methods-section .payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.payment-methods-section .payment-icon {
    background: #101033;
    border: 1px solid rgba(132, 94, 247, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 140px;
    transition: all 0.3s ease;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.payment-methods-section .payment-icon:hover {
    transform: translateY(-5px);
    border-color: rgba(132, 94, 247, 0.6);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
    background: #151542;
}

.payment-methods-section .payment-icon i {
    font-size: 2.5rem;
    color: #a55eea;
    transition: all 0.3s ease;
}

.payment-methods-section .payment-icon:hover i {
    color: #FDCB6E;
    transform: scale(1.1);
}

.payment-methods-section .payment-icon span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 768px) {
    .payment-methods-section .payment-icons {
        gap: 1rem;
    }
    
    .payment-methods-section .payment-icon {
        min-width: 120px;
        padding: 1.25rem 1.5rem;
    }
    
    .payment-methods-section .payment-icon i {
        font-size: 2rem;
    }
}


