/* Distributor Page Custom Styles */

/* Global Styles */
:root {
    --primary-color: #ff7100;
    --secondary-color: #ff2100; 
    --accent-color: #f6ad55; 
    --text-primary: #2d3748;
    --text-secondary: #4a5568; 
    --bg-light: #f7fafc; 
    --bg-dark: #ff7100;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

/* Hero Section Enhancements */
.hero-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 50%, #ff8533 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* 添加动态背景效果 */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.hero-section-title {
    color: white;
    font-weight: 800;
    font-size: 3.2rem;
    margin-bottom: 1.8rem;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
}

.hero-section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.hero-cta {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.hero-cta .btn {
    padding: 16px 40px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-cta .btn-primary {
    background: linear-gradient(45deg, var(--accent-color), #ffd700);
    color: var(--text-primary);
    margin-right: 20px;
    box-shadow: 0 8px 25px rgba(246, 173, 85, 0.4);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(246, 173, 85, 0.6);
    background: linear-gradient(45deg, #ffd700, var(--accent-color));
    color: var(--text-primary);
}

.hero-cta .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    backdrop-filter: blur(10px);
}

.hero-cta .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Hero Stats 统计数据样式 */
.hero-stats {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-stats .col-4 {
    position: relative;
}

.hero-stats .col-4:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-stats h3 {
    color: var(--accent-color) !important;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.hero-stats small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.banner-vid {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover .banner-vid {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 113, 0, 0.2), rgba(255, 33, 0, 0.2));
    border-radius: 20px;
    pointer-events: none;
}

/* Benefits Section */
.distri-list {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff  100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.distri-list::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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff7100" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.5;
}

.section-heading {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    color: var(--text-primary);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-transform: capitalize;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.highlight-text {
    color: var(--secondary-color);
    position: relative;
}

.highlight-text:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 3px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.distri-items {
    position: relative;
    z-index: 2;
}

.distri-items .item {
    display: flex;
    margin-bottom: 40px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(255, 113, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.distri-items .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.distri-items .item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 113, 0, 0.15);
}

.distri-items .item:hover::before {
    transform: scaleX(1);
}

.distri-items .item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 25px;
    padding-top: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.distri-items .item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.distri-items .item .right h2 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.distri-items .item:hover .right h2 {
    color: var(--primary-color);
}

.distri-items .item .right p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Pricing Section */
.pricing-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--bg-dark) 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.pricing-banner h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    color:#fff;
}

.pricing-banner p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.pricing-price {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.pricing-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}

.pricing-center .item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 280px;
    border: 1px solid #e2e8f0;
    margin: 0 15px 30px;
    height: auto;
}

.pricing-center .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-center .item .title {
    background-color: var(--primary-color);
    color: white; 
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--text-primary);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-center .item .price { 
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-center .item .price span { 
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 5px;
}

.pricing-center .item .active {
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center; 
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    border-radius: 4px; 
}

.pricing-center .item .active:hover {
    background-color:var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pricing-center .item .includes {
    padding: 20px;
}

.pricing-center .item .includes p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-center .item .includes .el-icon-check {
    color: #38a169;
    margin-right: 8px;
}

.pricing-center .item .includes .el-icon-close {
    color: #e53e3e;
    margin-right: 8px;
}

 
 
/* Payment Dialog */
.el-dialog {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.el-dialog__title {
    color: var(--text-primary);
    font-weight: 700;
}

.payment h5 {
    color: var(--text-primary);
}

.payment .el-form-item__label {
    color: var(--text-secondary);
}

.payment .el-input__inner {
    border-radius: var(--border-radius);
}

.payment .pay {
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 10px;
    margin-right: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment .pay.active {
    border-color: var(--accent-color);
}

.payment .pay img {
    max-height: 30px;
    object-fit: contain;
}

.payment-info {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.el-button--primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-primary);
    font-weight: 600;
    border-radius: var(--border-radius);
}

.el-button--primary:hover {
    background-color: #e69b31;
    border-color: #e69b31;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0;
        min-height: 75vh;
    }
    
    .hero-section-title {
        font-size: 2.8rem;
    }
    
    .hero-section-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
        padding: 25px 20px;
    }
    
    .hero-image {
        transform: none;
    }
    
    .banner-vid {
        height: 350px;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .distri-items .item {
        margin-bottom: 30px;
        padding: 30px;
    }
    
    .distri-items .item i {
        font-size: 2.8rem;
        margin-right: 20px;
    }
    
    .pricing-center {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-section-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-section-subtitle {
        text-align: center;
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        padding: 14px 30px;
    }
    
    .hero-cta .btn-primary {
        margin-right: 0;
    }
    
    .hero-stats {
        padding: 20px 15px;
    }
    
    .hero-stats h3 {
        font-size: 1.8rem;
    }
    
    .hero-stats .col-4:not(:last-child)::after {
        display: none;
    }
    
    .hero-image {
        margin-top: 40px;
        transform: none;
    }
    
    .banner-vid {
        height: 280px;
    }
    
    .distri-list {
        padding: 80px 0;
    }
    
    .section-heading {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .distri-items .item {
        margin-bottom: 25px;
        padding: 25px;
        border-radius: 15px;
    }
    
    .distri-items .item i {
        font-size: 2.5rem;
    }
    
    .distri-items .item .right h2 {
        font-size: 1.2rem;
    }
    
    .pricing-banner h2 {
        font-size: 1.8rem; 
    }
    
    .pricing-center .item {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 575px) {
    .hero-section-title {
        font-size: 1.9rem;
    }
    
    .hero-section-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        padding: 15px 10px;
    }
    
    .hero-stats h3 {
        font-size: 1.5rem;
    }
    
    .hero-stats small {
        font-size: 0.75rem;
    }
    
    .banner-vid {
        height: 220px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .distri-items .item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .distri-items .item i {
        margin-right: 0;
        margin-bottom: 20px;
        font-size: 2.2rem;
        padding-top: 0;
    }
    
    .distri-items .item .right h2 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .distri-items .item .right p {
        font-size: 0.9rem;
    }
}