/* Distributor Partnership Section */
.distributor-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.distributor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.distributor-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.distributor-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.distributor-section .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.distributor-content {
    position: relative;
    z-index: 1;
}

.distributor-advantages,
.distributor-products {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.distributor-advantages:hover,
.distributor-products:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.distributor-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.distributor-subtitle i {
    color: #3b82f6;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.advantage-list li:last-child {
    border-bottom: none;
}

.advantage-list li:hover {
    padding-left: 10px;
    color: #ffffff;
}

.advantage-list li i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-tag:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(16, 185, 129, 0.4) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
}

.product-tag i {
    color: #3b82f6;
}

.distributor-target {
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.distributor-target h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 10px;
}

.distributor-target p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.distributor-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.distributor-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.btn-distributor {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.btn-distributor:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.5);
    color: #ffffff;
}

.btn-distributor i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 991px) {
    .distributor-section {
        padding: 80px 0;
    }

    .distributor-section .section-title {
        font-size: 2rem;
    }

    .distributor-advantages,
    .distributor-products {
        margin-bottom: 30px;
        height: auto;
    }

    .distributor-content .row {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .distributor-section {
        padding: 60px 0;
    }

    .distributor-section .section-title {
        font-size: 1.75rem;
    }

    .distributor-advantages,
    .distributor-products {
        padding: 25px;
        margin-bottom: 25px;
        height: auto;
    }

    .distributor-content .row {
        gap: 25px;
    }

    .distributor-subtitle {
        font-size: 1.2rem;
    }

    .product-tag {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .distributor-cta {
        padding: 25px;
        margin-top: 40px;
    }

    .distributor-cta p {
        font-size: 1rem;
    }

    .btn-distributor {
        padding: 14px 30px;
        font-size: 1rem;
    }
}