/* पेज को लेफ्ट-राइट भागने से रोकने का सबसे सेफ तरीका */
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; /* इमेज पर क्लिक भी नहीं होगा */
}



/* ============================================================
   MASTER DISTRIBUTOR PAGE - COMPLETE CSS
   ============================================================ */

:root {
    --primary-teal: #00897B;
    --primary-green: #67C949;
    --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;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Text Helpers */
.text-primary-teal { color: var(--primary-teal); }
.text-primary-green { color: var(--primary-green); }
.text-dark { color: var(--dark); }

/* ================================
   HERO SECTION
   ================================ */

.md-hero-section {
    padding: 50px 0 40px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.md-hero-section::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: -150px;
    opacity: 0.6;
}

.md-hero-section::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: -100px;
    opacity: 0.6;
}

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

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

.md-hero-badge i {
    margin-right: 6px;
    color: var(--warning);
}

.md-hero-content h1 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.md-highlight {
    color: var(--primary-green);
    text-shadow: 0 0 20px rgba(103, 201, 73, 0.5);
}

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

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

.md-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.md-feature-item i {
    color: var(--primary-green);
    font-size: 18px;
}

.md-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

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

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

.btn-md-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: var(--white);
}

.md-hero-stats-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.md-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    padding: 20px;
    transition: all 0.3s ease;
}

.md-stat-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.md-stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    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);
}

.md-stat-info h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--white);
}

.md-stat-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.md-floating-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    background: var(--white);
    padding: 10px 20px;
    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: smoothFloat 4s ease-in-out infinite;
    will-change: transform;
}

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

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

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

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

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

.md-hero-stats-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 35px 30px;
    background: transparent;
    border-radius: 20px;
    position: relative;  /* ✅ Position context */
    z-index: 1;  /* ✅ Ensure visibility */
}

.md-hero-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;  /* ✅ Position for stacking */
    z-index: 2;  /* ✅ Above other elements */
    pointer-events: auto;  /* ✅ Enable pointer events */
}

.md-hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;  /* ✅ Bring to front on hover */
}

.md-hero-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #67C949, #5ab33d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
    pointer-events: none;  /* ✅ Don't block parent hover */
}

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

.md-hero-stat-content {
    pointer-events: none;  /* ✅ Don't block parent hover */
}

.md-hero-stat-content h3 {
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin: 0;
    line-height: 1.2;
    transition: all 0.3s ease;
}

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

.md-hero-stat-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.3;
}


/* Agar hero section me koi background element hai */
.md-hero-section::before,
.md-hero-section::after {
    pointer-events: none !important;  /* ✅ Don't block clicks */
}

/* Agar floating badge overlap kar raha hai */
.md-floating-badge {
    pointer-events: none;
}

/* Agar buttons overlap kar rahe hain */
.md-hero-buttons {
    position: relative;
    z-index: 1;
}



@media (max-width: 991px) {
    .md-hero-content h1 { 
        font-size: 36px; 
    }
    
    .md-hero-stats-box { 
        padding: 30px 25px;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        z-index: 2;
    }
    
    .md-hero-stat-item {
        padding: 12px;
        z-index: 3;
    }
    
    .md-hero-stat-item:hover {
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-4px);
        z-index: 10;
    }
    
    .md-hero-stat-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .md-hero-stat-content h3 {
        font-size: 22px;
    }
    
    .md-hero-stat-content p {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .md-hero-section { 
        padding: 40px 0 35px; 
    }
    
    .md-hero-content h1 { 
        font-size: 30px; 
    }
    
    .md-hero-subtitle { 
        font-size: 16px; 
    }
    
    .md-hero-features { 
        grid-template-columns: 1fr; 
    }
    
    .md-hero-buttons { 
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-md-primary, 
    .btn-md-secondary { 
        width: 100%; 
        justify-content: center; 
    }
    
    .md-floating-badge {
        display: none;
    }
    
    .md-hero-stats-box { 
        padding: 25px 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .md-hero-stat-item {
        padding: 12px 10px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .md-hero-stat-item:hover {
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-3px);
    }
    
    .md-hero-stat-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .md-hero-stat-content h3 {
        font-size: 20px;
    }
    
    .md-hero-stat-item:hover .md-hero-stat-content h3 {
        transform: translateY(-2px);
    }
    
    .md-hero-stat-content p {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .md-hero-content h1 { 
        font-size: 26px; 
    }
    
    .md-hero-badge { 
        font-size: 12px; 
        padding: 6px 16px; 
    }
    
    .md-hero-stats-box { 
        padding: 20px 15px;
        gap: 12px;
    }
    
    .md-hero-stat-item {
        padding: 10px 8px;
    }
    
    .md-hero-stat-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .md-hero-stat-content h3 {
        font-size: 18px;
    }
    
    .md-hero-stat-content p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .md-hero-stats-box { 
        padding: 18px 12px;
        gap: 10px;
    }
    
    .md-hero-stat-item {
        padding: 8px 6px;
    }
    
    .md-hero-stat-icon {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }
    
    .md-hero-stat-content h3 {
        font-size: 16px;
    }
    
    .md-hero-stat-content p {
        font-size: 9px;
    }
}



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

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

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

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

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

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

.md-points-wrapper {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.md-point-item i {
    font-size: 16px;
    color: var(--primary-green);
    flex-shrink: 0;
}

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

/* What Is Section Responsive */
@media (max-width: 767px) {
    .md-what-content h2 { 
        font-size: 30px; 
    }
}

@media (max-width: 576px) {
    .md-what-content h2 { 
        font-size: 26px; 
    }
}

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

.md-details-section {
    padding: 60px 0;
    background: var(--white);
}

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

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

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

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

.md-detail-points {
    margin-bottom: 30px;
}

.md-point-card {
    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;
}

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

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

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

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

.md-detail-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

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

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

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

.md-details-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.md-details-image img {
    width: 90%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

/* Details Section Responsive */
@media (max-width: 991px) {
    .md-details-image { 
        margin-top: 30px; 
    }
}

@media (max-width: 767px) {
    .md-details-content h2 { 
        font-size: 32px; 
    }
    .md-details-image img {
        width: 90%;
    }
}

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

/* ================================
   COMPARISON TABLE
   ================================ */

.md-comparison-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-teal) 100%);
}

.md-comparison-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
}

.md-comparison-section p {
    font-size: 18px;
    color: var(--gray);
}

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

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

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

.md-comparison-table thead {
    background: var(--primary-teal);
}

.md-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;
}

.md-comparison-table thead th.highlight-md {
    background: var(--primary-green);
    position: relative;
}

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

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

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

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

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

.md-comparison-table tbody td.highlight-md {
    background: rgba(103, 201, 73, 0.08);
    font-weight: 500;
    color: var(--primary-green);
}

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

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



/* Comparison Section Responsive */
@media (max-width: 767px) {
    .md-comparison-section h2 { 
        font-size: 32px; 
    }
    
    .md-comparison-table-wrapper { 
        overflow-x: auto; 
    }
    
    .md-comparison-table { 
        min-width: 700px; 
    }
    
    /* TEXT SIZE CHHOTA */
    .md-comparison-table thead th {
        padding: 18px 12px;
        font-size: 15px;  /* ← Header text */
    }
    
    .md-comparison-table tbody td {
        padding: 16px 12px;
        font-size: 13px;  /* ← Body text */
    }
}

@media (max-width: 576px) {
    .md-comparison-section h2 { 
        font-size: 28px; 
    }
    
    .md-comparison-table { 
        min-width: 600px; 
    }
    
    /* AUR BHI CHHOTA */
    .md-comparison-table thead th {
        padding: 15px 10px;
        font-size: 14px;  /* ← Aur chhota */
    }
    
    .md-comparison-table tbody td {
        padding: 14px 10px;
        font-size: 12px;  /* ← Aur chhota */
    }
}


/* ================================
   BENEFITS SECTION
   ================================ */

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

.md-benefits-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 15px;
}

.md-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%;
}

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

.md-benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 18px;
    background: var(--primary-green);
    color: var(--white);
}

.md-benefit-card:nth-child(even) .md-benefit-icon {
    background: var(--primary-teal);
}

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

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

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

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

.md-benefit-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 900;
    font-size: 16px;
}

/* Benefits Section Responsive - No Extra Media Query Needed */



/* ================================
   HOW IT WORKS SECTION (COMPACT)
   ================================ */

.md-how-it-works-section {
    padding: 20px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--light-teal) 100%);
}

.md-how-it-works-section h2 {
    font-size: 38px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
}

.md-section-subtitle {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.md-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 10px 0;
    position: relative;
}

.md-step-card {
    background: var(--white);
    padding: 28px 22px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.md-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.md-step-card:hover::before {
    transform: scaleX(1);
}

.md-step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(103, 201, 73, 0.2);
}

.md-step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(103, 201, 73, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--primary-green);
}

.md-step-icon {
    width: 65px;
    height: 65px;
    background: var(--primary-teal);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    margin: 0 auto 18px;
}

.md-step-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.md-step-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.md-step-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.md-step-features span {
    font-size: 12px;
    color: var(--dark);
    font-weight: 600;
}

.md-step-features i {
    color: var(--primary-green);
    margin-right: 5px;
    font-size: 11px;
}

.md-step-arrow {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--primary-green);
    z-index: 10;
}

.md-step-card:last-child .md-step-arrow {
    display: none;
}

.md-process-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.md-process-stat {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.md-process-stat:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.md-process-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(103, 201, 73, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-green);
    margin: 0 auto 12px;
}

.md-process-stat h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 5px;
}

.md-process-stat p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* How It Works Responsive */
@media (max-width: 991px) {
    .md-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .md-step-arrow {
        display: none;
    }
    
    .md-process-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .md-how-it-works-section h2 {
        font-size: 30px;
    }
    
    .md-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .md-process-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .md-how-it-works-section h2 {
        font-size: 26px;
    }
    
    .md-step-card {
        padding: 22px 18px;
    }
    
    .md-step-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .md-process-stat h3 {
        font-size: 20px;
    }
}




/* ================================
   SUCCESS STORIES (MOBILE FIXED)
   ================================ */

.md-success-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa, #E8F5E9);
}

.md-success-section h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
}

.md-success-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.md-success-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.md-success-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.md-success-stat .stat-content h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--dark);
    margin: 0;
}

.md-success-stat .stat-content p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

.md-success-testimonials-wrapper {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.md-testimonials-scroll {
    display: flex;
    gap: 30px;
    animation: testimonial-scroll 30s linear infinite;
    width: max-content;
}

.md-testimonials-scroll:hover {
    animation-play-state: paused;
}

@keyframes testimonial-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2 - 15px));
    }
}

.md-testimonials-scroll .md-testimonial-card {
    flex: 0 0 380px;
    width: 380px;
}

.md-testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.md-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 137, 123, 0.15);
    border-color: var(--primary-teal);
}

.md-testimonial-card.featured {
    border: 2px solid var(--warning);
    background: linear-gradient(135deg, #FFFBEA, var(--white));
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--warning);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}

.featured-badge i {
    margin-right: 5px;
}

.md-test-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.md-test-header img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--success);
    object-fit: cover;
    flex-shrink: 0;
}

.md-test-info h4 {
    font-size: 18px;
    font-weight: 900;
    color: var(--dark);
    margin: 0 0 5px 0;
}

.md-test-info p {
    font-size: 13px;
    color: var(--danger);
    margin: 0 0 8px 0;
}

.md-test-info p i {
    margin-right: 5px;
}

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

.md-rating i {
    font-size: 14px;
    color: var(--warning);
}

.md-test-quote {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-teal);
    margin-bottom: 15px;
}

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

.md-test-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: auto;
}

.md-test-stat {
    padding: 10px;
    background: linear-gradient(135deg, var(--light-teal), #F1F8F4);
    border-radius: 10px;
    text-align: center;
}

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

.md-test-stat .value {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: var(--primary-teal);
}

/* ========== RESPONSIVE (FIXED) ========== */

/* Tablets (991px se kam) */
@media (max-width: 991px) {
    .md-success-stats { 
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .md-testimonials-scroll .md-testimonial-card {
        flex: 0 0 340px;
        width: 340px;
    }
}

/* Mobile (767px se kam) - MAIN FIX */
@media (max-width: 767px) {
    .md-success-section { 
        padding: 40px 0; 
    }
    
    .md-success-section h2 { 
        font-size: 28px; 
    }
    
    /* Stats Grid - 2x2 Layout */
    .md-success-stats { 
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px 15px;
    }
    
    /* Stats Item - Vertical Layout */
    .md-success-stat {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px 10px;
    }
    
    .md-success-stat .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .md-success-stat .stat-content h3 {
        font-size: 20px;
    }
    
    .md-success-stat .stat-content p {
        font-size: 11px;
    }
    
    /* Testimonials */
    .md-testimonials-scroll .md-testimonial-card {
        flex: 0 0 300px;
        width: 300px;
    }
    
    .md-testimonials-scroll {
        gap: 20px;
    }
    
    @keyframes testimonial-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% / 2 - 10px));
        }
    }
}

/* Small Mobile (576px se kam) */
@media (max-width: 576px) {
    .md-success-section h2 { 
        font-size: 24px; 
    }
    
    /* Stats Grid - Compact 2x2 */
    .md-success-stats {
        gap: 12px;
        padding: 18px 12px;
    }
    
    .md-success-stat {
        padding: 12px 8px;
    }
    
    .md-success-stat .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .md-success-stat .stat-content h3 {
        font-size: 18px;
    }
    
    .md-success-stat .stat-content p {
        font-size: 10px;
    }
    
    /* Testimonials */
    .md-testimonials-scroll .md-testimonial-card {
        flex: 0 0 280px;
        width: 280px;
        padding: 20px;
    }
    
    .md-test-header {
        gap: 12px;
    }
    
    .md-test-header img {
        width: 60px;
        height: 60px;
    }
    
    .md-test-info h4 {
        font-size: 16px;
    }
    
    .md-test-quote {
        padding: 12px;
    }
    
    .md-test-quote p {
        font-size: 13px;
    }
    
    .md-test-stat .value {
        font-size: 13px;
    }
}

/* Extra Small (480px se kam) */
@media (max-width: 480px) {
    .md-success-stats {
        gap: 10px;
        padding: 15px 10px;
    }
    
    .md-success-stat {
        padding: 10px 6px;
    }
    
    .md-success-stat .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .md-success-stat .stat-content h3 {
        font-size: 16px;
    }
    
    .md-success-stat .stat-content p {
        font-size: 9px;
    }
}





/* ================================
   CONTACT FORM SECTION
   ================================ */

.md-contact-section {
    padding: 20px 0;
    background: var(--light-gray);
}

.md-contact-section h2 {
    font-size: 40px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 15px;
}

.md-section-subtitle {
    font-size: 17px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.md-contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.md-contact-form-wrapper:hover {
    border-color: var(--primary-green);
    box-shadow: 0 20px 70px rgba(103, 201, 73, 0.15);
}

.md-form-header {
    text-align: center;
    margin-bottom: 35px;
}

.md-form-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin: 0 auto 18px;
    box-shadow: 0 8px 30px rgba(103, 201, 73, 0.3);
}

.md-form-header h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.md-form-header p {
    font-size: 15px;
    color: var(--gray);
    margin: 0;
}

.md-form-group {
    margin-bottom: 0;
}

.md-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.md-form-group label i {
    color: var(--primary-green);
    margin-right: 6px;
    font-size: 14px;
}

.md-form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: var(--dark);
    background: var(--light-gray);
    transition: all 0.3s ease;
    outline: none;
}

.md-form-control:focus {
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(103, 201, 73, 0.1);
}

.md-form-control::placeholder {
    color: #aaa;
}

textarea.md-form-control {
    resize: vertical;
    min-height: 110px;
}

select.md-form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2367C949' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.md-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.md-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.md-checkbox-group label {
    font-size: 14px;
    color: var(--gray);
    cursor: pointer;
    margin: 0;
}

.btn-md-contact-submit {
    width: 100%;
    padding: 16px 30px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(103, 201, 73, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-md-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(103, 201, 73, 0.5);
    background: #5ab33d;
}

.btn-md-contact-submit i {
    transition: transform 0.3s ease;
}

.btn-md-contact-submit:hover i {
    transform: translateX(5px);
}

.md-form-footer {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid #e5e7eb;
}

.md-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.md-contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.md-contact-info-item:hover {
    background: rgba(103, 201, 73, 0.05);
    transform: translateY(-3px);
}

.md-contact-info-item i {
    font-size: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.md-contact-info-item strong {
    display: block;
    font-size: 13px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 3px;
}

.md-contact-info-item p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

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

/* Base Grid */
.md-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

/* Contact Info Card */
.md-contact-info-item {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.md-contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 137, 123, 0.15);
}

/* Icon */
.md-contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

/* Content */
.md-contact-info-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 5px 0;
}

.md-contact-info-content p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}



/* Tablets (991px se kam) - 2 COLUMNS */
@media (max-width: 991px) {
    .md-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .md-contact-info-item {
        padding: 22px 18px;
    }
    
    .md-contact-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* Mobile (767px se kam) - 2 COLUMNS FIXED */
@media (max-width: 767px) {
    .md-contact-section h2 {
        font-size: 32px;
    }
    
    .md-contact-form-wrapper {
        padding: 32px 25px;
    }
    
    .md-form-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
    
    .md-form-header h3 {
        font-size: 22px;
    }
    
    /* INFO GRID - 2x2 LAYOUT */
    .md-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .md-contact-info-item {
        padding: 20px 15px;
    }
    
    .md-contact-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .md-contact-info-content h4 {
        font-size: 15px;
    }
    
    .md-contact-info-content p {
        font-size: 13px;
    }
}

/* Small Mobile (576px se kam) - 2 COLUMNS COMPACT */
@media (max-width: 576px) {
    .md-contact-section h2 {
        font-size: 28px;
    }
    
    .md-contact-form-wrapper {
        padding: 28px 20px;
    }
    
    .md-form-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    
    .md-form-header h3 {
        font-size: 20px;
    }
    
    .md-form-control {
        padding: 13px 16px;
    }
    
    .btn-md-contact-submit {
        padding: 15px 25px;
        font-size: 16px;
    }
    
    /* INFO GRID - 2x2 COMPACT */
    .md-contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .md-contact-info-item {
        padding: 18px 12px;
    }
    
    .md-contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .md-contact-info-content h4 {
        font-size: 14px;
    }
    
    .md-contact-info-content p {
        font-size: 12px;
    }
}

/* Extra Small (480px se kam) */
@media (max-width: 480px) {
    .md-contact-info-grid {
        gap: 10px;
    }
    
    .md-contact-info-item {
        padding: 16px 10px;
    }
    
    .md-contact-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
    
    .md-contact-info-content h4 {
        font-size: 13px;
    }
    
    .md-contact-info-content p {
        font-size: 11px;
    }
}



/* WhatsApp Button Enhancement */
.btn-md-contact-submit.whatsapp-mode {
    background: #25D366 !important;
}

.btn-md-contact-submit.whatsapp-mode:hover {
    background: #20BA5A !important;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5) !important;
}



/* ================================
   FAQ SECTION
   ================================ */

.md-faq-section {
    padding: 60px 0;
    background: var(--white);
}

.md-faq-section h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
}

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

.md-faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.md-faq-checkbox {
    display: none;
}

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

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

.md-faq-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s ease;
}

.md-faq-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.md-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--light-gray);
}

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

.md-faq-checkbox:checked ~ .md-faq-question {
    border-color: var(--primary-teal);
}

.md-faq-checkbox:checked ~ .md-faq-question .md-faq-text {
    color: var(--primary-teal);
}

.md-faq-checkbox:checked ~ .md-faq-question .md-faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-teal);
}

.md-faq-checkbox:checked ~ .md-faq-answer {
    max-height: 500px;
}

.md-faq-item:has(.md-faq-checkbox:checked) {
    border-color: var(--primary-teal);
    box-shadow: 0 4px 20px rgba(0, 137, 123, 0.15);
}

/* FAQ Section Responsive */
@media (max-width: 767px) {
    .md-faq-section h2 { 
        font-size: 28px; 
    }
}

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

/* ================================
   FINAL CTA
   ================================ */

.md-final-cta {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-teal) 0%, var(--light-green) 100%);
}

.md-final-cta-box {
    background: var(--white);
    border-radius: 25px;
    padding: 35px 40px;
    box-shadow: 0 20px 60px rgba(0, 137, 123, 0.15);
    border: 3px solid rgba(0, 137, 123, 0.1);
}

.md-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--danger);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.3);
}

.md-final-cta-box h2 {
    font-size: 34px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
}

.md-final-cta-box p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.md-final-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.btn-md-final-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-green);
    color: var(--white);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(103, 201, 73, 0.4);
    transition: all 0.3s ease;
}

.btn-md-final-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(103, 201, 73, 0.5);
    color: var(--white);
}

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

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

.md-trust-indicators {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.md-trust-indicators .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}

.md-trust-indicators .trust-item i {
    font-size: 18px;
    color: var(--primary-green);
}

.md-final-info-card {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-green));
    border-radius: 20px;
    padding: 30px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 137, 123, 0.3);
}

.md-final-info-card .info-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.md-final-info-card .info-icon i {
    font-size: 36px;
    color: var(--warning);
}

.md-final-info-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
	color: var(--white);
}

.md-final-info-card .info-list {
    text-align: left;
    margin-bottom: 20px;
}

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

.md-final-info-card .info-item i {
    color: var(--warning);
    font-size: 16px;
}

.md-final-info-card .trust-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.md-final-info-card .trust-badge i {
    color: var(--warning);
    font-size: 18px;
}

.md-final-info-card .trust-badge span {
    font-weight: 700;
    font-size: 13px;
}

/* Final CTA Responsive */
@media (max-width: 991px) {
    .md-final-cta-box { 
        padding: 30px 28px; 
    }
    .md-final-info-card { 
        margin-top: 30px; 
    }
}

@media (max-width: 767px) {
    .md-final-cta-box { 
        padding: 25px 22px; 
    }
    .md-final-cta-box h2 { 
        font-size: 28px; 
    }
    .md-final-cta-box p { 
        font-size: 15px; 
    }
    .md-final-cta-buttons { 
        flex-direction: column; 
    }
    .btn-md-final-primary, 
    .btn-md-final-secondary { 
        width: 100%; 
        justify-content: center; 
    }
}

@media (max-width: 576px) {
    .md-final-cta-box { 
        padding: 22px 20px; 
    }
    .md-final-cta-box h2 { 
        font-size: 24px; 
    }
    .md-final-cta-box p { 
        font-size: 14px; 
    }
    .md-cta-badge { 
        font-size: 11px; 
        padding: 5px 15px; 
    }
    .md-final-info-card { 
        padding: 25px 20px; 
    }
    .md-final-info-card .info-icon { 
        width: 60px; 
        height: 60px; 
    }
    .md-final-info-card .info-icon i { 
        font-size: 30px; 
    }
    .md-final-info-card h3 { 
        font-size: 20px; 
    }
}



/* ================================
   WHATSAPP CHAT WIDGET STYLES
   ================================ */

.whatsapp-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Toggle Button */
.whatsapp-toggle-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #20BA5A);
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-toggle-btn:active {
    transform: scale(0.95);
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #FF0000;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: pulse 1.5s infinite;
}

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

/* Popup Container */
.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 340px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    display: none;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.whatsapp-popup.active {
    display: block;
}

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

/* Header */
.whatsapp-header {
    background: linear-gradient(135deg, #075E54, #128C7E);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-header-content img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
}

.whatsapp-header-content h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
	color: white;
}

.whatsapp-header-content p {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
}

.close-popup {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-popup:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Body */
.whatsapp-body {
    padding: 20px 15px;
    background: #ECE5DD;
    max-height: 400px;
    overflow-y: auto;
}

/* Message Bubble */
.whatsapp-message {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.whatsapp-message::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 0;
    border-color: transparent white transparent transparent;
}

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

.message-time {
    font-size: 11px;
    color: #999;
}

/* Options */
.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-option {
    background: white;
    border: none;
    padding: 14px 16px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.whatsapp-option:hover {
    background: #E5F5E1;
    transform: translateX(-3px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-option i {
    font-size: 18px;
    color: #25D366;
    width: 24px;
}

.whatsapp-option span {
    flex: 1;
    font-weight: 500;
}

/* Footer */
.whatsapp-footer {
    padding: 12px 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-custom-btn {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-custom-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Scrollbar Styling */
.whatsapp-body::-webkit-scrollbar {
    width: 6px;
}

.whatsapp-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.whatsapp-body::-webkit-scrollbar-thumb {
    background: #25D366;
    border-radius: 10px;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .whatsapp-popup {
        width: 300px;
        bottom: 75px;
        right: -10px;
    }
    
    .whatsapp-toggle-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-chat-widget {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 375px) {
    .whatsapp-popup {
        width: 280px;
    }
}

