/* Trade Depot Page Styles */
.trade-hero {
    height: 80vh;
    background: linear-gradient(135deg, #1a472a 0%, var(--theme-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.trade-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/trade-bg.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    letter-spacing: -1px;
}

.hero-content > p {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-description p {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary-outline, .btn-secondary-green {
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-primary-outline {
    background: rgba(255,255,255,0.95);
    color: var(--theme-color);
    border: 2px solid transparent;
}

.btn-primary-outline:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.3);
}

.btn-secondary-green {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
}

.btn-secondary-green:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.2);
}

/* Partner Benefits Section */
.partner-benefits-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partner-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.partner-intro p {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary-blue {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}

.btn-primary-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,123,255,0.4);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1a472a, var(--theme-color));
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(26, 71, 42, 0.2);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a472a, var(--theme-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(26, 71, 42, 0.3);
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Partner Network Section */
.partner-network-section {
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.partner-carousel {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 60px;
}

.partner-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.partner-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Price List Banner */
.price-list-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--theme-color), #1a472a);
    color: white;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.banner-text h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Trade Program Section */
.trade-program-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.program-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-top: 4px solid var(--theme-color);
}

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

.program-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--theme-color), #1a472a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.faq-question i {
    color: var(--theme-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 25px 30px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Partner Application Section */
.partner-application-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.application-content {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.requirements-list li {
    padding: 18px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.1rem;
}

.requirements-list i {
    color: var(--theme-color);
    font-size: 1.3rem;
    width: 25px;
}

.contact-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--theme-color);
}

.contact-info h4 {
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.3rem;
}

.contact-info p {
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

/* Trade Form */
.trade-form {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-top: 4px solid var(--theme-color);
}

.trade-form h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 4px rgba(214, 34, 35, 0.1);
    background: white;
}

.submit-btn-blue {
    background: linear-gradient(135deg, var(--theme-color), #1a472a);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(214, 34, 35, 0.4);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a472a 0%, var(--theme-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/trade-bg.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--theme-color);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,255,255,0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-3px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .application-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-grid,
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 250px;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .trade-form {
        padding: 30px 20px;
    }
    
    .benefits-grid,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .benefit-card,
    .category-card {
        padding: 30px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
}



