/* Reseller Section Container */
.reseller-section {
    padding: 40px 0;
    background: transparent;
}

.reseller-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reseller Card for Homepage */
.reseller-card {
    background: linear-gradient(135deg, #1a0f5e 0%, #2d1bae 50%, #4c38fc 100%);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(45, 27, 174, 0.3);
}

.reseller-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.reseller-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(76, 56, 252, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.reseller-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.reseller-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #4c38fc 0%, #6b5cff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(76, 56, 252, 0.4);
    animation: float 3s ease-in-out infinite;
}

.reseller-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #e0d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reseller-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.reseller-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reseller-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.reseller-feature i {
    color: #7aff7a;
    font-size: 18px;
}

.reseller-cta {
    display: block !important;
    padding: 24px 60px !important;
    background: #FFD700 !important; /* Bright gold color */
    border: 2px solid #FFC600 !important;
    border-radius: 35px !important;
    color: #000 !important;
    font-weight: 900 !important;
    font-size: 20px !important;
    margin: 35px auto !important;
    cursor: pointer !important;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6) !important;
    position: relative !important;
    overflow: hidden !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    max-width: 450px !important;
    z-index: 10 !important;
    text-shadow: 0 1px 1px rgba(255,255,255,0.5) !important;
}

/* Mirror reflection animation */
.reseller-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -200px;
    width: 80px;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.8);
    transform: rotate(35deg);
    transition: 0.5s;
    opacity: 0.7;
    pointer-events: none;
}

.reseller-cta:hover::before,
.reseller-cta:active::before {
    left: 120%;
    transition: 0.7s ease-in-out;
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.9);
}

@keyframes pulseClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.98); }
    100% { transform: scale(1); }
}

.reseller-cta:active {
    animation: pulseClick 0.3s ease-in-out;
}

/* No hover color change, just slight scale */
.reseller-cta:hover {
    background: #FFD700; /* Keep same gold color on hover */
    color: #333;
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.5);
}

.reseller-cta .fa-arrow-right {
    margin-left: 10px;
    transition: transform 0.3s;
}

.reseller-cta:hover .fa-arrow-right {
    transform: translateX(5px);
}

.reseller-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Reseller Page Styles */
.reseller-hero {
    background: linear-gradient(135deg, #1a0f5e 0%, #2d1bae 50%, #4c38fc 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.reseller-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,117.3C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
    background-size: cover;
}

.reseller-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title span {
    background: linear-gradient(135deg, #7aff7a 0%, #4cff4c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #7aff7a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* Chart text in purple */
.chart-title, .chart-value, .chart-label, .chart-legend {
    color: #764ba2;
    font-weight: 600;
}

.chart-value {
    font-size: 24px;
}

/* Pricing Section */
.reseller-pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a0f5e;
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 20px;
    color: #666;
}

.reseller-pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.reseller-price-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.reseller-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2d1bae 0%, #4c38fc 100%);
}

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

.reseller-price-card.popular {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(45, 27, 174, 0.2);
}

.reseller-price-card.popular::before {
    height: 100%;
    opacity: 0.05;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-codes {
    font-size: 36px;
    font-weight: 700;
    color: #2d1bae;
    margin-bottom: 10px;
}

.package-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.package-price {
    font-size: 48px;
    font-weight: 700;
    color: #1a0f5e;
    margin-bottom: 5px;
}

.package-price sup {
    font-size: 24px;
}

.price-per {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #4cff4c;
    font-size: 16px;
}

.package-order-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #2d1bae 0%, #4c38fc 100%);
    color: white;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 27, 174, 0.3);
}

.contact-card {
    background: linear-gradient(135deg, #1a0f5e 0%, #2d1bae 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-card .package-codes {
    color: white;
}

.contact-card .package-label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: #7aff7a;
}

.contact-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #2d1bae;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Benefits Section */
.reseller-benefits {
    padding: 80px 0;
    background: white;
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f0f0ff 0%, #e0d9ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #4c38fc;
}

.benefit-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a0f5e;
    margin-bottom: 15px;
}

.benefit-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .reseller-title {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .reseller-pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .reseller-price-card.popular {
        transform: scale(1);
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .reseller-features {
        flex-direction: column;
        gap: 20px;
    }
}
