/* पेज को लेफ्ट-राइट भागने से रोकने का सबसे सेफ तरीका */
body {
    inline-size: 100%;
    overflow-x: clip; /* hidden की जगह clip इस्तेमाल करें, इससे sticky menu नहीं बिगड़ता */
    margin: 0;
}

/* अगर कोई चीज़ जबरदस्ती बाहर भाग रही है तो उसे रोकने के लिए */
.main-container, main, section { 
    max-width: 100vw;
    overflow-x: hidden;
}



/* पूरे पेज पर टेक्स्ट सिलेक्शन बंद */
body {
    -webkit-user-select: none;  /* Chrome, Safari, Opera */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE/Edge */
    user-select: none;          /* Standard */
}

/* इमेज को ड्रैग या सेव करने से रोकना */
img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none; /* इमेज पर क्लिक भी नहीं होगा */
}



/* ================================
   DISTRIBUTOR PAGE - PAYSARAL COLORS
   ================================ */

:root {
    --primary-teal: #00897B;
    --primary-green: #00C853;
    --dark-teal: #00695C;
    --light-teal: #E0F2F1;
    --light-green: #B9F6CA;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --danger: #FF5252;
    --warning: #FFC107;
    --success: #4CAF50;
    --blue: #2196F3;
}


/* ================================
   HERO SECTION - DISTRIBUTOR (COMPLETE)
   ================================ */

.hero-section-distributor {
    background: linear-gradient(135deg, #00695C 0%, #00897B 50%, #67C949 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-section-distributor::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(103, 201, 73, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-section-distributor::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(103, 201, 73, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 6s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

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

.hero-badge {
    display: inline-block;
    background: #67C949;
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(103, 201, 73, 0.3);
}

.hero-badge i {
    margin-right: 6px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content h1 .highlight {
    color: #FFC107 !important;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--white);
}

.feature-item i {
    color: #FFC107;
    font-size: 18px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: #67C949;
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(103, 201, 73, 0.4);
    border: none;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(103, 201, 73, 0.5);
    background: #5ab83d;
    color: var(--white);
    text-decoration: none;
}

.btn-secondary-hero {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary-hero:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    color: var(--white);
    text-decoration: none;
}

/* ================================
   HERO STATS BOX - 2x2 GRID FORCED
   ================================ */

.hero-stats-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 25px;
    padding: 35px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto !important;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    width: 100% !important;
}

.hero-stats-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 25px;
    pointer-events: none;
    z-index: -1;
}

.stat-item {
    display: flex !important;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 20px;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    z-index: 1;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #67C949;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(103, 201, 73, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(103, 201, 73, 0.5);
}

.stat-info {
    flex: 1;
}

.stat-info h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 5px;
    margin-top: 0;
    color: var(--white);
    transition: all 0.3s ease;
    line-height: 1;
}

.stat-item:hover .stat-info h3 {
    transform: translateX(3px);
}

.stat-info p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: #67C949;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
}

.badge-text strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 2px;
}

.badge-text span {
    font-size: 12px;
    color: var(--gray);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Large Tablets (992px and below) */
@media (max-width: 992px) {
    .hero-section-distributor {
        padding: 50px 0 40px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-stats-box {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 30px;
        gap: 18px;
    }

    .stat-item {
        padding: 18px;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .stat-info h3 {
        font-size: 28px;
    }

    .stat-info p {
        font-size: 13px;
    }

    .floating-badge {
        display: none;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .hero-section-distributor {
        padding: 40px 0 35px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }

    .hero-stats-box {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 25px;
        gap: 15px;
        margin-top: 30px;
    }

    .stat-item {
        padding: 16px 12px !important;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        gap: 10px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .stat-info h3 {
        font-size: 24px;
    }

    .stat-info p {
        font-size: 11px;
    }

    .stat-item:hover .stat-info h3 {
        transform: translateY(-2px);
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .hero-section-distributor {
        padding: 35px 0 30px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 15px;
    }

    .hero-stats-box {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 20px;
        gap: 12px;
    }

    .stat-item {
        gap: 8px !important;
        padding: 14px 10px !important;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .stat-info h3 {
        font-size: 20px;
    }

    .stat-info p {
        font-size: 10px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-stats-box {
        padding: 18px;
        gap: 10px;
    }

    .stat-item {
        padding: 12px 8px !important;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .stat-info h3 {
        font-size: 18px;
    }

    .stat-info p {
        font-size: 9px;
    }
}





/* ================================
   WHAT IS DISTRIBUTOR SECTION
   ================================ */

.what-is-distributor-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.wid-content {
    position: relative;
    z-index: 1;
}

.wid-badge {
    display: inline-block;
    background: rgba(0, 137, 123, 0.08);
    color: var(--primary-teal);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 137, 123, 0.25);
}

.wid-badge i {
    margin-right: 6px;
}

.wid-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 30px;
}

.wid-content .wid-highlight-teal {
    color: #67C949;
}

.wid-desc {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
}

/* Points - Horizontal Alignment */
.wid-points-wrapper {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.wid-point-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--primary-teal);
}

.wid-point-item i {
    font-size: 16px;
    color: #67C949;
    flex-shrink: 0;
}

.wid-point-item strong {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .what-is-distributor-section {
        padding: 50px 0;
    }
    
    .wid-content h2 {
        font-size: 28px;
    }
    
    .wid-desc {
        font-size: 15px;
        text-align: left;
    }
    
    .wid-point-item {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .wid-content h2 {
        font-size: 24px;
    }
}



/* ================================
   DISTRIBUTOR DETAILS SECTION
   ================================ */

.distributor-details-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.distributor-details-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 137, 123, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

/* Details Content */
.details-content {
    position: relative;
    z-index: 1;
    padding-right: 20px;
}

.detail-badge {
    display: inline-block;
    background: rgba(103, 201, 73, 0.1);
    color: #67C949;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid rgba(103, 201, 73, 0.3);
}

.detail-badge i {
    margin-right: 6px;
}

.details-content h2 {
    font-size: 38px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.details-content h2 .highlight-green {
    color: #67C949;
}

.lead-text {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Detail Points */
.detail-points {
    margin-bottom: 30px;
}

.point-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.point-item:hover {
    background: rgba(0, 137, 123, 0.05);
    border-color: var(--primary-teal);
    transform: translateX(10px);
}

.point-icon {
    width: 60px;
    height: 60px;
    background: #67C949;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    flex-shrink: 0;
}

.point-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.point-text p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

/* Detail CTA Buttons */
.detail-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-detail-primary {
    background: var(--primary-teal);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 137, 123, 0.3);
}

.btn-detail-primary:hover {
    background: #67C949;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 137, 123, 0.4);
    color: var(--white);
}

.btn-detail-secondary {
    background: transparent;
    color: var(--primary-teal);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-teal);
}

.btn-detail-secondary:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: translateY(-3px);
}

/* Image Section - SHIFTED MORE RIGHT */
.details-image-wrapper {
    position: relative;
    z-index: 1;
    margin-left: 40px;
    transform: translateX(30px);
}

.image-card {
    position: relative;
    border-radius: 25px;
    overflow: visible;
    transition: all 0.3s ease;
}

.image-card:hover {
    transform: scale(1.02);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1200px) {
    .details-image-wrapper {
        margin-left: 20px;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .details-content {
        padding-right: 0;
    }
    
    .details-image-wrapper {
        margin-top: 40px;
        margin-left: 0;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .distributor-details-section {
        padding: 60px 0;
    }
    
    .details-content h2 {
        font-size: 32px;
    }
    
    .lead-text {
        font-size: 16px;
    }
    
    .point-item {
        padding: 15px;
    }
    
    .point-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .point-text h4 {
        font-size: 16px;
    }
    
    .detail-cta {
        flex-direction: column;
    }
    
    .btn-detail-primary,
    .btn-detail-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .details-content h2 {
        font-size: 28px;
    }
}




/* ================================
   COMPARISON SECTION - COMPLETE
   ================================ */

.comparison-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #E0F2F1 100%);
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(103, 201, 73, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50px;
    right: 50px;
    z-index: 0;
}

/* SECTION HEADER*/

.section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* Distributor - Teal Color */
.section-header h2 .highlight-teal {
    color: var(--primary-teal);
}

/* VS - Black Color */
.section-header h2 .vs-text {
    color: var(--dark);
    font-weight: 900;
}

/* Retailer - Green Color */
.section-header h2 .highlight-green {
    color: #67C949;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 0;
}

.section-header .subtitle-highlight {
    color: var(--primary-teal);
    font-weight: 600;
}

/* COMPARISON TABLE */

.comparison-table-wrapper {
    background: var(--white);
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.comparison-table-wrapper:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 20px 60px rgba(0,137,123,0.15);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

/* Table Header */
.comparison-table thead {
    background: var(--primary-teal);
}

.comparison-table thead th {
    color: var(--white);
    padding: 25px 20px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 3px solid rgba(255,255,255,0.1);
}

.comparison-table thead th:first-child {
    border-top-left-radius: 0;
}

.comparison-table thead th.highlight-col {
    background: #67C949;
    color: var(--white);
    position: relative;
}

.comparison-table thead th.highlight-col::after {
    content: 'RECOMMENDED';
    position: absolute;
    top: 8px;
    right: 20px;
    background: rgba(255,255,255,0.3);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.comparison-table thead th i {
    margin-right: 8px;
    font-size: 20px;
}

/* Table Body */
.comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(224,242,241,0.4);
    transform: scale(1.01);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody td {
    padding: 20px;
    font-size: 15px;
    color: var(--dark);
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    font-weight: 700;
    color: var(--dark);
    background: rgba(0,137,123,0.03);
}

.comparison-table tbody td.highlight-col {
    background: rgba(103, 201, 73, 0.08);
    font-weight: 500;
    color: #67C949;
    position: relative;
}

.comparison-table tbody td.highlight-col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #67C949;
}

.comparison-table tbody td i {
    margin-right: 10px;
    font-size: 16px;
}

.comparison-table tbody td strong {
    color: var(--primary-teal);
    font-size: 17px;
}

/* Color-coded Icons */
.comparison-table tbody td i.fa-rupee-sign {
    color: #67C949;
}

.comparison-table tbody td i.fa-users {
    color: #2196F3;
}

.comparison-table tbody td i.fa-chart-line {
    color: #FF9800;
}

.comparison-table tbody td i.fa-hand-holding-usd {
    color: #9C27B0;
}

.comparison-table tbody td i.fa-headset {
    color: #F44336;
}

.comparison-table tbody td i.fa-gift {
    color: #E91E63;
}

.comparison-table tbody td i.fa-graduation-cap {
    color: #3F51B5;
}

.comparison-table tbody td i.fa-mobile-alt {
    color: #00BCD4;
}

/* Custom Scrollbar */
.comparison-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-teal);
    border-radius: 10px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--dark-teal);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 992px) {
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 700px;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .comparison-table thead th.highlight-col::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .comparison-table thead th {
        font-size: 14px;
        padding: 15px 10px;
    }
    
    .comparison-table tbody td {
        font-size: 13px;
        padding: 12px 10px;
    }
}




/* ================================
   BENEFITS SECTION - COMPLETE
   ================================ */

.benefits-section {
    padding: 20px 0;
    background: var(--white);
}


.benefits-section h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 50px;
    text-align: center;
}

.benefits-section h2 .text-dark {
    color: var(--dark);
}

.benefits-section h2 .text-green {
    color: #67C949;
}


.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    height: 100%;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #67C949;
    box-shadow: 0 15px 50px rgba(103, 201, 73, 0.2);
}




/* Card 1 - Solid Teal */
.benefit-card:nth-child(1) .benefit-icon {
    background: #67C949;
    color: var(--white);
}

.benefit-card:nth-child(1):hover .benefit-icon {
    background: var(--primary-teal);
    transform: scale(1.15) rotate(-8deg);
}

/* Card 2 - Solid Green */
.benefit-card:nth-child(2) .benefit-icon {
    background: #67C949;
    color: var(--white);
}

.benefit-card:nth-child(2):hover .benefit-icon {
    background: var(--primary-teal);
    transform: scale(1.15) rotate(8deg);
}

/* Card 3 - Light Teal bg, Teal icon */
.benefit-card:nth-child(3) .benefit-icon {
    background: rgba(0, 137, 123, 0.1);
    color: var(--primary-teal);
    border: 3px solid var(--primary-teal);
}

.benefit-card:nth-child(3):hover .benefit-icon {
    background: var(--primary-teal);
    color: var(--white);
    transform: scale(1.15);
}

/* Card 4 - Light Green bg, Green icon */
.benefit-card:nth-child(4) .benefit-icon {
    background: rgba(103, 201, 73, 0.1);
    color: #67C949;
    border: 3px solid #67C949;
}

.benefit-card:nth-child(4):hover .benefit-icon {
    background: #67C949;
    color: var(--white);
    transform: scale(1.15);
}

/* Card 5 - Gradient */
.benefit-card:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, var(--primary-teal), #67C949);
    color: var(--white);
}

.benefit-card:nth-child(5):hover .benefit-icon {
    background: linear-gradient(135deg, #67C949, var(--primary-teal));
    transform: scale(1.15) rotate(-10deg);
}

/* Card 6 - White with shadow */
.benefit-card:nth-child(6) .benefit-icon {
    background: var(--white);
    color: var(--primary-teal);
    box-shadow: 0 5px 20px rgba(0, 137, 123, 0.3);
}

.benefit-card:nth-child(6):hover .benefit-icon {
    background: var(--white);
    color: #67C949;
    box-shadow: 0 8px 30px rgba(103, 201, 73, 0.4);
    transform: scale(1.15);
}

/* Common Icon Styles */
.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 18px;
    transition: all 0.4s ease;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.6;
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-card ul li {
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}

.benefit-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #67C949;
    font-weight: 900;
    font-size: 16px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .benefit-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
    }
    
    .benefit-card p {
        font-size: 13px;
    }
    
    .benefit-card ul li {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .benefits-section h2 {
        font-size: 28px;
    }
}




/*==============================
     SUCCESS STORIES SECTION 
 ===============================*/
.success-stories-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f5f7fa, #E8F5E9);
}

.success-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    color: #1a1a1a;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(255,193,7,0.3);
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 35px;
}

.text-teal { color: #00897B; }
.text-green { color: #67C949; }

/* Stats Bar */
.success-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    margin-bottom: 40px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00897B, #67C949);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.stat-content h3 {
    font-size: 22px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 2px 0;
}

.stat-content p {
    font-size: 11px;
    color: #666;
    margin: 0;
}

/* Testimonial Slider Wrapper */
.testimonial-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonial-slider {
    display: flex;
    gap: 18px;
    transition: transform 0.5s ease;
}

/* Testimonial Card - WIDER WIDTH */
.testimonial-card {
    flex: 0 0 360px;
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,137,123,0.12);
    border-color: #00897B;
}

.testimonial-card.featured {
    border: 2px solid #FFB300;
    background: linear-gradient(135deg, #FFFBEA, #fff);
}

/* Badges */
.badge-verified,
.badge-featured {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-verified {
    background: rgba(76, 175, 80, 0.12);
    color: #4CAF50;
}

.badge-featured {
    background: rgba(255, 179, 0, 0.12);
    color: #FF8F00;
}

/* Card Header */
.card-header {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.card-header img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 3px solid #4CAF50;
    object-fit: cover;
    flex-shrink: 0;
}

.header-info {
    flex: 1;
}

.header-info h3 {
    font-size: 16px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.header-info .location {
    font-size: 12px;
    color: #EF5350;
    margin: 0 0 7px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    font-size: 13px;
    color: #FFC107;
}

/* Quote Box */
.quote-box {
    background: #f8f8f8;
    padding: 14px;
    border-radius: 10px;
    border-left: 4px solid #00897B;
    margin-bottom: 14px;
    min-height: 70px;
}

.quote-box p {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    font-style: italic;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-item {
    padding: 10px;
    background: linear-gradient(135deg, #E8F5E9, #F1F8F4);
    border-radius: 8px;
    text-align: center;
}

.stat-item .label {
    display: block;
    font-size: 9px;
    color: #757575;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

.stat-item .value {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: #00897B;
}

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #00897B, #67C949);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,137,123,0.25);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #67C949, #4CAF50);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: -60px; }
.next-btn { right: -60px; }

/* CTA Button */
.btn-cta-success {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #67C949, #4CAF50);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(103,201,73,0.35);
    transition: all 0.3s ease;
}

.btn-cta-success:hover {
    background: linear-gradient(135deg, #00897B, #00695C);
    transform: translateY(-2px);
    color: #fff;
}

.text-center { text-align: center; }
.mt-5 { margin-top: 40px; }



/* ========== RESPONSIVE ========== */
/* Base Stats Bar */
.success-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 137, 123, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 137, 123, 0.1);
    transform: translateY(-3px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00897B, #67C949);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 24px;
    font-weight: 900;
    color: #00897B;
    margin: 0;
    line-height: 1.2;
}

.stat-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}


/* Tablets (992px and below) - 2x2 GRID */
@media (max-width: 992px) {
    .success-stats-bar { 
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .stat-item {
        padding: 12px;
        gap: 12px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .stat-content h3 {
        font-size: 22px;
    }
    
    .stat-content p {
        font-size: 12px;
    }
    
    /* Testimonial Cards */
    .testimonial-card { 
        flex: 0 0 340px; 
    }
}

/* Mobile (768px and below) - 2x2 COMPACT */
@media (max-width: 768px) {
    .section-title { 
        font-size: 28px; 
    }
    
    .success-stats-bar { 
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 18px;
    }
    
    .stat-item {
        padding: 12px 10px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .stat-content h3 {
        font-size: 20px;
    }
    
    .stat-content p {
        font-size: 11px;
    }
    
    /* Testimonial Cards */
    .testimonial-card { 
        flex: 0 0 320px;
        padding: 18px;
    }
    
    .card-header img {
        width: 60px;
        height: 60px;
    }
    
    .quote-box {
        min-height: 65px;
        padding: 12px;
    }
    
    .quote-box p {
        font-size: 12px;
    }
    
    .prev-btn { left: 0; }
    .next-btn { right: 0; }
}

/* Small Mobile (576px and below) - 2x2 VERY COMPACT */
@media (max-width: 576px) {
    .success-stats-bar { 
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
    }
    
    .stat-item {
        padding: 10px 8px;
    }
    
    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .stat-content h3 {
        font-size: 18px;
    }
    
    .stat-content p {
        font-size: 10px;
    }
    
    /* Testimonial Cards */
    .testimonial-card { 
        flex: 0 0 300px; 
    }
}

/* Extra Small (480px and below) */
@media (max-width: 480px) {
    .success-stats-bar { 
        gap: 8px;
        padding: 12px;
    }
    
    .stat-item {
        padding: 8px 6px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }
    
    .stat-content h3 {
        font-size: 16px;
    }
    
    .stat-content p {
        font-size: 9px;
    }
}





/* ================================
   FAQ SECTION - FIXED
   ================================ */

.faq-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f9fafb, #E8F5E9);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* FAQ Container - Unique Class */
.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.faq-header { 
    margin-bottom: 50px;
    text-align: center;
}

.faq-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00897B, #67C949);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(0, 137, 123, 0.25);
}

.faq-badge i { margin-right: 6px; }

.faq-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.text-teal { color: #00897B; }
.text-green { color: #67C949; }

.faq-subtitle {
    font-size: 16px;
    color: #666;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 2px solid #e8e8e8;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 137, 123, 0.1);
}

/* Hide Checkbox */
.faq-checkbox {
    display: none;
}

/* Question Label */
.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(0, 137, 123, 0.02);
}

.faq-question:hover .faq-text {
    color: #00897B;
}

.faq-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Toggle Button - GREEN by default */
.faq-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, #67C949, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(103, 201, 73, 0.3);
}

/* Answer - Hidden by default */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f9f9;
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    padding: 0 24px 24px 24px;
}

/* ================================
   WHEN CHECKBOX IS CHECKED
   ================================ */

/* Change border color */
.faq-checkbox:checked ~ .faq-question {
    border-color: #00897B;
}

.faq-item:has(.faq-checkbox:checked) {
    border-color: #00897B;
    box-shadow: 0 4px 20px rgba(0, 137, 123, 0.15);
}

/* Change text color to TEAL */
.faq-checkbox:checked ~ .faq-question .faq-text {
    color: #00897B;
}

/* Rotate icon and change to TEAL */
.faq-checkbox:checked ~ .faq-question .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #00897B, #00695C);
    box-shadow: 0 2px 8px rgba(0, 137, 123, 0.4);
}

/* Show answer */
.faq-checkbox:checked ~ .faq-answer {
    max-height: 800px;
}

/* CTA Section */
.faq-cta-section {
    margin-top: 50px;
    text-align: center;
}

.btn-faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #67C949, #4CAF50);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(103, 201, 73, 0.3);
}

.btn-faq-cta:hover {
    background: linear-gradient(135deg, #00897B, #00695C);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 137, 123, 0.4);
    color: #fff;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {
    .faq-section { padding: 50px 0; }
    .faq-title { font-size: 28px; }
    .faq-question { padding: 18px 20px; gap: 15px; }
    .faq-text { font-size: 14px; }
    .faq-toggle {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 12px;
    }
    .faq-answer p {
        font-size: 14px;
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 576px) {
    .faq-title { font-size: 24px; }
    .faq-text { font-size: 13px; }
    .faq-toggle {
        width: 26px;
        height: 26px;
        min-width: 26px;
    }
    .faq-answer p { font-size: 13px; }
}





/* ================================
   DISTRIBUTOR CONTACT CTA
   ================================ */

.dist-contact-cta {
    background: linear-gradient(135deg, #E0F2F1 0%, #B9F6CA 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.dist-contact-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 137, 123, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.dist-contact-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Main Box */
.dist-cta-box {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 137, 123, 0.15);
    position: relative;
    z-index: 1;
    border: 3px solid rgba(0, 137, 123, 0.1);
}

/* Icon Badge */
.cta-icon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFC107, #FF6B6B);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

.cta-icon-badge i {
    font-size: 18px;
}

/* Title */
.dist-cta-title {
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, #00897B, #00C853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.dist-cta-desc {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.dist-cta-desc strong {
    color: #00897B;
    font-weight: 700;
}

/* Button Group */
.dist-btn-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-dist-primary {
    background: linear-gradient(135deg, #00C853, #4CAF50);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.3);
    border: 2px solid transparent;
}

.btn-dist-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 200, 83, 0.5);
    border-color: #00C853;
    background: linear-gradient(135deg, #4CAF50, #00C853);
}

.btn-dist-primary i {
    font-size: 18px;
}

.btn-dist-call {
    background: #ffffff;
    color: #00897B;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #00897B;
}

.btn-dist-call:hover {
    background: #00897B;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 137, 123, 0.3);
}

.btn-dist-call i {
    font-size: 18px;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

/* Quick Contact Icons */
.quick-contact-icons {
    display: flex;
    gap: 15px;
}

.quick-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-icon {
    background: #25D366;
    color: #ffffff;
}

.whatsapp-icon:hover {
    background: #128C7E;
    transform: scale(1.1) rotate(5deg);
}

.email-icon {
    background: #EA4335;
    color: #ffffff;
}

.email-icon:hover {
    background: #c5221f;
    transform: scale(1.1) rotate(-5deg);
}

.chat-icon {
    background: #2196F3;
    color: #ffffff;
}

.chat-icon:hover {
    background: #1976D2;
    transform: scale(1.1) rotate(5deg);
}

/* ================================
   INFO CARD - RIGHT SIDE
   ================================ */

.dist-info-card {
    background: linear-gradient(135deg, #00897B, #00C853);
    border-radius: 20px;
    padding: 35px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 137, 123, 0.3);
    text-align: center;
}

.info-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.info-icon i {
    font-size: 40px;
    color: #FFC107;
    animation: pulse 2s infinite;
}

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

.dist-info-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Info List */
.info-list {
    text-align: left;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
}

.info-item i {
    color: #FFC107;
    font-size: 18px;
    flex-shrink: 0;
}

.info-item span {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* Trust Badge */
.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.trust-badge i {
    color: #FFC107;
    font-size: 20px;
}

.trust-badge span {
    font-weight: 700;
    font-size: 14px;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 992px) {
    .dist-cta-title {
        font-size: 32px;
    }
    
    .dist-cta-box {
        padding: 40px 30px;
    }
    
    .dist-info-card {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .dist-contact-cta {
        padding: 50px 0;
    }
    
    .dist-cta-box {
        padding: 35px 25px;
        border-radius: 25px;
    }
    
    .dist-cta-title {
        font-size: 28px;
    }
    
    .dist-cta-desc {
        font-size: 16px;
    }
    
    .dist-btn-group {
        flex-direction: column;
    }
    
    .btn-dist-primary,
    .btn-dist-call {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .dist-cta-box {
        padding: 30px 20px;
    }
    
    .dist-cta-title {
        font-size: 24px;
    }
    
    .dist-cta-desc {
        font-size: 15px;
    }
    
    .btn-dist-primary,
    .btn-dist-call {
        padding: 13px 28px;
        font-size: 15px;
    }
    
    .dist-info-card {
        padding: 30px 20px;
    }
}




/* ================================
   WHATSAPP WIDGET
   ================================ */

.whatsapp-chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.whatsapp-button {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.whatsapp-button i {
    font-size: 36px;
    color: white;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff0844, #ff4646);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    border: 3px solid white;
}

.whatsapp-chat-popup {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 360px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    display: none;
    overflow: hidden;
}

.whatsapp-chat-popup.active {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8), 
                    0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

.chat-header {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.profile-pic {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 28px;
}

.profile-details h4 {
    color: white;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.profile-details p {
    color: rgba(255,255,255,0.9);
    margin: 3px 0 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-body {
    padding: 20px;
    background: #ECE5DD;
    min-height: 180px;
}

.message-bubble {
    background: white;
    padding: 14px 16px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    margin-bottom: 15px;
}

.message-bubble p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}

.message-bubble .time {
    font-size: 11px;
    color: #999;
    margin-top: 8px;
    display: block;
    text-align: right;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-reply {
    background: white;
    border: 2px solid #25D366;
    color: #075E54;
    padding: 10px 14px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-reply:hover {
    background: #25D366;
    color: white;
}

.chat-footer {
    padding: 15px;
    background: #f0f0f0;
}

.start-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.start-chat-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    color: white;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-stats-box {
        margin-top: 40px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .process-timeline::before {
        left: 40px;
        transform: none;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
        padding-left: 110px;
    }
    
    .timeline-number {
        left: 40px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-section-distributor {
        padding: 80px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats-box {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .comparison-table-wrapper {
        padding: 20px;
    }
    
    .registration-card-dist {
        padding: 30px 25px;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .contact-btn-dist {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .pricing-card-dist {
        padding: 30px 25px;
    }
    
    .price .amount {
        font-size: 44px;
    }
}
