/*
 * Trooworths Sell Products Page Styles
 * File: trooworths-sell-products.css
 */

/* Hero Section */
.sell-hero 
{
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.sell-hero::before 
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-overlay.png') repeat;
    opacity: 0.05;
    pointer-events: none;
}

.sell-hero h1 
{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sell-hero .lead 
{
    opacity: 0.9;
}

.sell-hero .hero-stats 
{
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.sell-hero .stat-item 
{
    text-align: center;
}

.sell-hero .stat-number 
{
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffc107;
    display: block;
    line-height: 1;
}

.sell-hero .stat-label 
{
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* CTA Banner */
.cta-banner 
{
    background: linear-gradient(135deg, #ffc107 0%, #ff9900 100%);
    padding: 30px 0;
    text-align: center;
}

.cta-banner h3 
{
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-banner p 
{
    color: #1a1a2e;
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-banner .btn-dark 
{
    background: #1a1a2e;
    border-color: #1a1a2e;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-banner .btn-dark:hover 
{
    background: #0f3460;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Sell Section */
.sell-section 
{
    padding: 60px 0;
}

/* Sell Card */
.sell-card 
{
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 35px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ffc107;
    transition: all 0.3s ease;
}

.sell-card:hover 
{
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.sell-heading 
{
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.sell-card p 
{
    color: #555555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.sell-card p:last-child 
{
    margin-bottom: 0;
}

.sell-card a 
{
    color: #0f3460;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sell-card a:hover 
{
    color: #ffc107;
    text-decoration: underline;
}

.sell-card strong 
{
    color: #1a1a2e;
}

.sell-card ul,
.sell-card ol 
{
    color: #555555;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 20px;
}

.sell-card li 
{
    margin-bottom: 10px;
}

/* Benefits Section */
.benefits-section 
{
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefits-section-header 
{
    text-align: center;
    margin-bottom: 50px;
}

.benefits-section-header h2 
{
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.benefits-section-header p 
{
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-card 
{
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover 
{
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #ffc107;
}

.benefit-card .benefit-icon 
{
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-card .benefit-icon i 
{
    font-size: 1.8rem;
    color: #ff9900;
}

.benefit-card h4 
{
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.benefit-card p 
{
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Steps Section */
.steps-section 
{
    padding: 70px 0;
    background: #ffffff;
}

.steps-section-header 
{
    text-align: center;
    margin-bottom: 50px;
}

.steps-section-header h2 
{
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.steps-section-header p 
{
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.step-card 
{
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-card .step-number 
{
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.step-card .step-icon 
{
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon 
{
    background: linear-gradient(135deg, #ffc107 0%, #ff9900 100%);
}

.step-card .step-icon i 
{
    font-size: 2rem;
    color: #0f3460;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon i 
{
    color: #1a1a2e;
}

.step-card h4 
{
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.step-card p 
{
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Connector Line */
.step-card::after 
{
    content: '';
    position: absolute;
    top: 50px;
    right: -10%;
    width: 20%;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #e9ecef);
    display: none;
}

@media (min-width: 768px) 
{
    .step-card::after 
    {
        display: block;
    }
    
    .step-card:last-child::after 
    {
        display: none;
    }
}

/* Categories Section */
.categories-section 
{
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.category-card 
{
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover 
{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #28a745;
}

.category-card .category-icon 
{
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.category-card .category-icon i 
{
    font-size: 1.5rem;
    color: #28a745;
}

.category-card h5 
{
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.category-card p 
{
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Prohibited Section */
.prohibited-section 
{
    padding: 70px 0;
    background: #ffffff;
}

.prohibited-card 
{
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #f5c6cb;
    transition: all 0.3s ease;
    height: 100%;
}

.prohibited-card:hover 
{
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.15);
}

.prohibited-card .prohibited-icon 
{
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.prohibited-card .prohibited-icon i 
{
    font-size: 1.5rem;
    color: #dc3545;
}

.prohibited-card h5 
{
    font-size: 1rem;
    font-weight: 700;
    color: #721c24;
    margin-bottom: 8px;
}

.prohibited-card p 
{
    color: #856404;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Warning Box */
.warning-box 
{
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 30px 0;
}

.warning-box .warning-header 
{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.warning-box .warning-icon 
{
    width: 50px;
    height: 50px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warning-box .warning-icon i 
{
    font-size: 1.5rem;
    color: #1a1a2e;
}

.warning-box h5 
{
    font-weight: 700;
    color: #856404;
    margin-bottom: 0;
}

.warning-box p 
{
    color: #856404;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Fees Section */
.fees-section 
{
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.fee-card 
{
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.fee-card:hover 
{
    border-color: #ffc107;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.fee-card.featured 
{
    border-color: #ffc107;
    position: relative;
}

.fee-card.featured::before 
{
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffc107 0%, #ff9900 100%);
    color: #1a1a2e;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
}

.fee-card .fee-title 
{
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.fee-card .fee-amount 
{
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 5px;
}

.fee-card .fee-period 
{
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.fee-card .fee-features 
{
    text-align: left;
    margin-bottom: 25px;
}

.fee-card .fee-features li 
{
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.9rem;
}

.fee-card .fee-features li:last-child 
{
    border-bottom: none;
}

.fee-card .fee-features li i 
{
    color: #28a745;
    margin-right: 10px;
}

/* Requirements Checklist */
.requirements-list 
{
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li 
{
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.requirements-list li:hover 
{
    background: #e9ecef;
}

.requirements-list li i 
{
    color: #28a745;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.requirements-list li.required i 
{
    color: #dc3545;
}

.requirements-list li span 
{
    color: #555;
    line-height: 1.5;
}

/* Important Notice Section */
.notice-section 
{
    background: #fff8e1;
    padding: 40px 0;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.notice-card 
{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.notice-card .notice-icon 
{
    width: 50px;
    height: 50px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-card .notice-icon i 
{
    font-size: 1.3rem;
    color: #1a1a2e;
}

.notice-card .notice-content h5 
{
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.notice-card .notice-content p 
{
    color: #555;
    margin-bottom: 0;
    line-height: 1.7;
}

/* CTA Section */
.cta-section 
{
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 
{
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-section .lead 
{
    opacity: 0.9;
}

.cta-section .btn-warning 
{
    background-color: #ffc107;
    border-color: #ffc107;
    color: #1a1a2e;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .btn-warning:hover 
{
    background-color: #ffcd39;
    border-color: #ffcd39;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.4);
}

/* Last Updated Banner */
.bg-light.border-bottom 
{
    background-color: #f8f9fa !important;
}

.bg-light.border-bottom .text-muted 
{
    font-size: 0.95rem;
}

.bg-light.border-bottom i 
{
    color: #ffc107;
}

/* Action Button in Cards */
.btn-action 
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-action.btn-primary-action 
{
    background: #1a1a2e;
    color: #ffffff;
}

.btn-action.btn-primary-action:hover 
{
    background: #0f3460;
    color: #ffc107;
}

.btn-action.btn-secondary-action 
{
    background: #f8f9fa;
    color: #1a1a2e;
    border: 1px solid #dee2e6;
}

.btn-action.btn-secondary-action:hover 
{
    background: #e9ecef;
    border-color: #ffc107;
}

.btn-action.btn-success-action 
{
    background: #28a745;
    color: #ffffff;
}

.btn-action.btn-success-action:hover 
{
    background: #218838;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) 
{
    .sell-hero 
    {
        padding: 80px 0 60px;
    }
    
    .sell-hero h1 
    {
        font-size: 2.5rem;
    }
    
    .sell-hero .hero-stats 
    {
        gap: 30px;
    }
    
    .sell-hero .stat-number 
    {
        font-size: 2rem;
    }
    
    .sell-section 
    {
        padding: 40px 0;
    }
    
    .sell-card 
    {
        padding: 25px;
    }
    
    .sell-heading 
    {
        font-size: 1.3rem;
    }
    
    .benefits-section,
    .steps-section,
    .categories-section,
    .prohibited-section,
    .fees-section 
    {
        padding: 50px 0;
    }
    
    .benefits-section-header h2,
    .steps-section-header h2 
    {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) 
{
    .sell-hero 
    {
        padding: 60px 0 40px;
    }
    
    .sell-hero h1 
    {
        font-size: 2rem;
    }
    
    .sell-hero .lead 
    {
        font-size: 1.1rem;
    }
    
    .sell-hero .hero-stats 
    {
        gap: 20px;
    }
    
    .sell-hero .stat-number 
    {
        font-size: 1.8rem;
    }
    
    .sell-hero .stat-label 
    {
        font-size: 0.8rem;
    }
    
    .sell-section 
    {
        padding: 30px 0;
    }
    
    .sell-card 
    {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .sell-heading 
    {
        font-size: 1.2rem;
    }
    
    .sell-card p 
    {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .benefits-section,
    .steps-section,
    .categories-section,
    .prohibited-section,
    .fees-section 
    {
        padding: 40px 0;
    }
    
    .benefits-section-header h2,
    .steps-section-header h2 
    {
        font-size: 1.5rem;
    }
    
    .benefit-card,
    .category-card,
    .prohibited-card 
    {
        margin-bottom: 20px;
    }
    
    .step-card::after 
    {
        display: none;
    }
    
    .fee-card 
    {
        margin-bottom: 30px;
    }
    
    .notice-card 
    {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .warning-box .warning-header 
    {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-section 
    {
        padding: 60px 0;
    }
    
    .cta-section h2 
    {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) 
{
    .sell-hero
    {
        margin-top: 136px;
    }
}

/* Print Styles */
@media print 
{
    .sell-hero 
    {
        background: #1a1a2e !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .sell-card 
    {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .cta-section,
    .cta-banner 
    {
        display: none;
    }
}

/* Smooth Scroll for Anchor Links */
html 
{
    scroll-behavior: smooth;
}

/* Accessibility Focus States */
.sell-card a:focus 
{
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}

.btn-action:focus,
.btn-warning:focus 
{
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}