/* Amazon Business Models Section Styles */
.amazon-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #232F3E;
    margin-bottom: 1rem;
}

.main-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layout - 3 Cards Per Row */
.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
    margin-top: 2rem;
}

/* Card Base Styles */
.model-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Private Label Hover Effects */
.private-label:hover {
    background: linear-gradient(135deg, #ff9500, #ff6b35);
    color: white;
}

.private-label:hover .card-title,
.private-label:hover .card-description,
.private-label:hover .card-features li {
    color: white;
}

.private-label:hover .card-features li i {
    color: white;
}

.private-label:hover .card-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.private-label:hover .profit-badge {
    background: white !important;
    color: #ff9500 !important;
}

/* FBA Management Hover Effects */
.fba-model:hover {
    background: linear-gradient(135deg, #232F3E, #37475A);
    color: white;
}

.fba-model:hover .card-title,
.fba-model:hover .card-description,
.fba-model:hover .card-features li {
    color: white;
}

.fba-model:hover .card-features li i {
    color: white;
}

.fba-model:hover .card-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.fba-model:hover .prime-badge {
    background: white !important;
    color: #232F3E !important;
}

/* Wholesale Hover Effects */
.wholesale-model:hover {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.wholesale-model:hover .card-title,
.wholesale-model:hover .card-description,
.wholesale-model:hover .card-features li {
    color: white;
}

.wholesale-model:hover .card-features li i {
    color: white;
}

.wholesale-model:hover .card-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.wholesale-model:hover .launch-badge {
    background: white !important;
    color: #28a745 !important;
}

/* Online Arbitrage Hover Effects */
.arbitrage-model:hover {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
}

.arbitrage-model:hover .card-title,
.arbitrage-model:hover .card-description,
.arbitrage-model:hover .card-features li {
    color: white;
}

.arbitrage-model:hover .card-features li i {
    color: white;
}

.arbitrage-model:hover .card-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.arbitrage-model:hover .investment-badge {
    background: white !important;
    color: #6f42c1 !important;
}

/* Retail Arbitrage Hover Effects */
.retail-model:hover {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
}

.retail-model:hover .card-title,
.retail-model:hover .card-description,
.retail-model:hover .card-features li {
    color: white;
}

.retail-model:hover .card-features li i {
    color: white;
}

.retail-model:hover .card-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.retail-model:hover .instant-badge {
    background: white !important;
    color: #dc3545 !important;
}

/* Dropshipping Hover Effects */
.dropship-model:hover {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
}

.dropship-model:hover .card-title,
.dropship-model:hover .card-description,
.dropship-model:hover .card-features li {
    color: white;
}

.dropship-model:hover .card-features li i {
    color: white;
}

.dropship-model:hover .card-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.dropship-model:hover .zero-badge {
    background: white !important;
    color: #17a2b8 !important;
}

/* Card Icon Styles */
.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.card-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    margin-top: 10px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.card-features li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.card-features li i {
    margin-right: 8px;
    width: 16px;
}

.card-badge {
    margin-top: 1.5rem;
}

.card-badge span {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
    display: inline-block;
}

/* Private Label Card */
.private-label {
    border-left-color: #ff9500;
}

.private-label .card-icon {
    background: linear-gradient(135deg, #ff9500, #ff6b35);
}

.private-label .card-features li i {
    color: #ff9500;
}

.profit-badge {
    background: #ff9500 !important;
}

/* FBA Management Card */
.fba-model {
    border-left-color: #232F3E;
}

.fba-model .card-icon {
    background: linear-gradient(135deg, #232F3E, #37475A);
}

.fba-model .card-features li i {
    color: #232F3E;
}

.prime-badge {
    background: #232F3E !important;
}

/* Wholesale Card */
.wholesale-model {
    border-left-color: #28a745;
}

.wholesale-model .card-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.wholesale-model .card-features li i {
    color: #28a745;
}

.launch-badge {
    background: #28a745 !important;
}

/* Online Arbitrage Card */
.arbitrage-model {
    border-left-color: #6f42c1;
}

.arbitrage-model .card-icon {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
}

.arbitrage-model .card-features li i {
    color: #6f42c1;
}

.investment-badge {
    background: #6f42c1 !important;
}

/* Retail Arbitrage Card */
.retail-model {
    border-left-color: #dc3545;
}

.retail-model .card-icon {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
}

.retail-model .card-features li i {
    color: #dc3545;
}

.instant-badge {
    background: #dc3545 !important;
}

/* Dropshipping Card */
.dropship-model {
    border-left-color: #17a2b8;
}

.dropship-model .card-icon {
    background: linear-gradient(135deg, #17a2b8, #20c997);
}

.dropship-model .card-features li i {
    color: #17a2b8;
}

.zero-badge {
    background: #17a2b8 !important;
}


/* Steps Section Styling */
.steps-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-timeline {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.steps-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.steps-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    width: 45%;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.step-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 1;
    border: 3px solid var(--white);
}

.step-heading {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .steps-timeline::before {
        left: 20px;
        transform: none;
    }

    .steps-item, .steps-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .step-content {
        width: 100%;
        margin-left: 50px;
        padding: 1rem;
    }

    .step-marker {
        left: 20px;
        transform: translateY(-50%);
    }
}

@media (max-width: 480px) {
    .step-content {
        margin-left: 40px;
        padding: 0.8rem;
    }

    .step-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .model-card {
        padding: 1.5rem;
    }
    
    .amazon-section {
        padding: 60px 0;
    }
}
/* Results Section (Card-Based with Animation) */
        .results-section {
            background: var(--gradient-dark);
            color: white;
            padding: 80px 0;
        }

        .results-section .section-title {
            color: white;
        }

        .results-section .section-subtitle {
            color: #ccc;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .result-card {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .result-card:hover {
            border-color: var(--primary-blue);
            transform: translateY(-10px);
        }

        .result-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--white);
            margin-bottom: 0.5rem;
            animation: countUp 2s ease-out forwards;
        }

        .result-card p {
            color: #ccc;
            font-size: 1rem;
        }

        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

 /* Process Section Styling */
.process-section {
    padding: 80px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-title {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-description {
    color: #666;
    font-size: 1rem;
}