/* Homepage Specific Styles */

/* Hero Content Styling */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
}

/* Hero Section Updates */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FDCB6E, #E17055);
    color: #2D3436;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.3);
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(253, 203, 110, 0.4);
    color: #2D3436;
}

.btn-hero-secondary {
    background: #2D3436;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 52, 54, 0.3);
    border: none;
}

.btn-hero-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(45, 52, 54, 0.4);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.stat-item span {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-calculator {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    z-index: 2;
}

.calculator-card-hero {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
    animation: fadeInUp 1s ease;
}

.calculator-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.calculator-title i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-group {
    display: flex;
    flex-direction: column;
}

.calc-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-group-calc {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-control-calc {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #F8F9FA;
    outline: none;
}

.form-control-calc:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.form-select-calc {
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    cursor: pointer;
    outline: none;
    min-width: 100px;
}

.form-select-calc:focus {
    border: none;
    outline: none;
}

.calc-rate {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    padding-left: 0.5rem;
}

.calc-swap {
    text-align: center;
    margin: 0.5rem 0;
}

.btn-swap-calc {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-swap-calc:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.btn-calc-convert {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-calc-convert:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 92, 231, 0.4);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-illustration {
    text-align: center;
}

.illustration-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 2rem auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.step-card h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Plans Preview Section */
.plans-preview-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
}

.plan-preview-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.plan-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.plan-preview-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.plan-preview-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.5rem 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.plan-preview-card .plan-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.plan-preview-card.bronze .plan-icon {
    background: linear-gradient(135deg, #CD7F32, #B87333);
    color: white;
}

.plan-preview-card.silver .plan-icon {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: white;
}

.plan-preview-card.gold .plan-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.plan-preview-card h3 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-return {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.plan-range {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-plan {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-weight: 700;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 92, 231, 0.4);
    color: white;
}

/* Cryptocurrency Prices Section */
.crypto-prices-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
}

.crypto-prices-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.crypto-prices-table-wrapper {
    overflow-x: auto;
}

.crypto-prices-table {
    margin: 0;
    width: 100%;
    min-width: 800px;
}

.crypto-prices-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.crypto-prices-table thead th {
    border: none;
    padding: 1.5rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

.crypto-prices-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    background: var(--card-bg);
}

.crypto-prices-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.01);
}

.crypto-prices-table tbody td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
    color: #FFFFFF;
    background: var(--card-bg);
}

.crypto-rank {
    font-weight: 700;
    color: var(--text-light);
    font-size: 0.9rem;
}

.crypto-name-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.crypto-logo-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.crypto-symbol {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 400;
    margin-left: 0.5rem;
}

.crypto-price-cell {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.crypto-change-cell {
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
}

.crypto-change-cell.positive {
    color: #00B894;
    background: rgba(0, 184, 148, 0.1);
}

.crypto-change-cell.negative {
    color: #D63031;
    background: rgba(214, 48, 49, 0.1);
}

.crypto-volume,
.crypto-marketcap {
    color: var(--text-dark);
    font-weight: 500;
}

.crypto-mini-chart {
    width: 100px;
    height: 40px;
}

/* Loading and error states */
.crypto-prices-table tbody td.text-center {
    padding: 3rem 1rem;
}

.crypto-prices-table tbody td.text-center i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-gradient-start), white);
    border-radius: 15px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.payment-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.payment-icon span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: white;
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card .stars {
    color: #FDCB6E;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonial-author small {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.newsletter-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.newsletter-card h2 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.newsletter-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
    border: 2px solid #E9ECEF;
    padding: 1rem 1.5rem;
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 1rem 2rem;
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    transform: translateX(-2px);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .plan-preview-card.featured {
        transform: scale(1);
    }
    
    .payment-icons {
        gap: 1rem;
    }
    
    .calculator-card-hero {
        padding: 1.5rem;
    }
    
    .crypto-prices-table {
        font-size: 0.85rem;
    }
    
    .crypto-prices-table thead th,
    .crypto-prices-table tbody td {
        padding: 1rem 0.5rem;
    }
}

