/* =================================================================
   FMCG MLM Website - Premium CSS with Glassmorphism & Animations
   ================================================================= */

/* =================================================================
   1. RESET & BASE STYLES
   ================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #2563EB;
    --secondary: #FB923C;
    --accent: #F97316;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --black: #000000;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563EB, #FB923C);
    --gradient-overlay: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(251, 146, 60, 0.9));
    --gradient-bg: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(251, 146, 60, 0.1));
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased; /* Better font rendering */
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* =================================================================
   2. TYPOGRAPHY
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--secondary);
}

/* Image Optimization for All Devices */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Prevent Horizontal Scroll on Mobile */
* {
    max-width: 100%;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Gradient Text */
.gradient-text-animated {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* =================================================================
   3. SCROLL PROGRESS INDICATOR
   ================================================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width var(--transition-normal);
    box-shadow: var(--shadow-glow);
}

/* =================================================================
   4. HEADER & NAVIGATION
   ================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: var(--shadow-glow);
}

.logo-text {
    font-size: 1.5rem;
}

.logo-accent {
    color: var(--accent);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* =================================================================
   5. BUTTONS - Touch Optimized
   ================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    min-height: 44px; /* iOS recommended touch target */
    min-width: 44px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation; /* Prevents double-tap zoom */
    user-select: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: scale(0.98);
}

/* Primary Button */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Button with Glow */
.btn-glow {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-white {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* Button Sizes */
.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Pulse Animation */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(37, 99, 235, 0); }
}

/* Add Cart Button */
.btn-add-cart {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-add-cart:hover::before {
    left: 100%;
}

.btn-add-cart:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
}

.btn-add-cart:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-add-cart i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-add-cart:hover i {
    transform: scale(1.1);
}

/* =================================================================
   6. GLASSMORPHISM EFFECT
   ================================================================= */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.glass-effect:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

/* =================================================================
   7. GRADIENT BACKGROUND
   ================================================================= */
.gradient-bg {
    background: var(--gradient-primary);
    color: var(--white);
}

/* =================================================================
   8. SECTION HEADERS
   ================================================================= */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-title {
    margin-bottom: 1rem;
}

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

/* =================================================================
   9. HERO SECTION
   ================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(251, 146, 60, 0.85));
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2%, transparent 0%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 2%, transparent 0%);
    background-size: 60px 60px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1.5s;
}

.card-title {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
}

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

/* Hero Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation: rotate 15s linear infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
    animation: rotate 20s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.8;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    animation: arrowMove 2s infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(5px, 5px); }
}

/* =================================================================
   10. FEATURES SECTION
   ================================================================= */
.features {
    padding: var(--section-padding);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-normal);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.feature-link a {
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-link a:hover {
    gap: 0.8rem;
}

/* Background Shapes */
.features-bg-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-bg);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

.shape-left {
    top: 10%;
    left: -200px;
}

.shape-right {
    bottom: 10%;
    right: -200px;
}

/* =================================================================
   11. PRODUCTS SECTION
   ================================================================= */
.products-section {
    padding: var(--section-padding);
    background: var(--white);
}

/* Product Categories */
.product-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #E5E7EB;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-btn.active,
.category-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    border-radius: var(--radius-md);
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.product-badge.badge-new {
    background: linear-gradient(135deg, #10B981, #059669);
}

.product-badge.badge-hot {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: var(--white);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

/* Product Info */
.product-category {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.product-rating i {
    color: #FCD34D;
    font-size: 0.9rem;
}

.product-rating span {
    margin-left: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-decoration: line-through;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
}

.products-footer {
    text-align: center;
}

/* =================================================================
   12. HOW IT WORKS SECTION
   ================================================================= */
.how-it-works {
    padding: var(--section-padding);
    position: relative;
    background: var(--bg-light);
}

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

.step-item {
    position: relative;
    padding: 2rem;
    margin-bottom: 3rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.step-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.step-title {
    margin-bottom: 1rem;
}

.step-desc {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.step-features {
    list-style: none;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.step-features i {
    color: #10B981;
}

.step-connector {
    position: absolute;
    left: 50%;
    bottom: -30px;
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.how-it-works-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-note {
    margin-top: 1rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* =================================================================
   13. MLM BENEFITS SECTION
   ================================================================= */
.mlm-benefits {
    padding: var(--section-padding);
    background: var(--white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.benefit-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Benefits Center */
.benefits-center {
    position: relative;
}

.benefits-image-wrapper {
    position: relative;
}

.benefits-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.benefits-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefits-badge i {
    font-size: 2rem;
    color: var(--primary);
}

.badge-1 {
    top: 10%;
    right: -10%;
}

.badge-2 {
    bottom: 10%;
    left: -10%;
}

.badge-label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.badge-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Pulse Circle */
.pulse-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: pulse-ring 3s ease-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 10%;
    animation-delay: 1.5s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Benefits Stats */
.benefits-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* =================================================================
   14. INCOME PREVIEW SECTION
   ================================================================= */
.income-preview {
    padding: var(--section-padding);
    background: var(--bg-light);
    position: relative;
}

.income-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.income-level {
    padding: 2rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition-normal);
}

.income-level.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}

.level-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.level-icon {
    width: 80px;
    height: 80px;
    margin: 1rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.level-title {
    text-align: center;
    margin-bottom: 1rem;
}

.level-income {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.level-period {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.level-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.level-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.level-features i {
    color: #10B981;
}

.level-requirement {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.level-requirement small {
    color: var(--text-gray);
}

/* Income Calculator */
.income-calculator {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    border-radius: var(--radius-md);
}

.calculator-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.calculator-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.calculator-form {
    display: grid;
    gap: 1.5rem;
}

.calc-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.calc-input-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.calc-input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.calculator-result {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gradient-bg);
    border-radius: var(--radius-md);
    text-align: center;
}

.result-header {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.result-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.result-breakdown {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.result-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.income-cta {
    text-align: center;
    margin-top: 3rem;
}

.income-cta h3 {
    margin-bottom: 0.5rem;
}

.income-cta p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* =================================================================
   15. TESTIMONIALS SECTION
   ================================================================= */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem;
    border-radius: var(--radius-md);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    position: relative;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    border: 3px solid var(--white);
}

.testimonial-name {
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.testimonial-location {
    color: var(--text-light);
    font-size: 0.85rem;
}

.testimonial-rating {
    margin-left: auto;
    color: #FCD34D;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

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

.t-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.t-stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E5E7EB;
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    background: var(--gradient-primary);
    width: 30px;
    border-radius: 5px;
}

/* Video Testimonials */
.video-testimonials {
    margin-top: 4rem;
}

.video-title {
    text-align: center;
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.video-info {
    padding: 1rem;
}

.video-info h4 {
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* =================================================================
   16. CTA SECTION
   ================================================================= */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 2%, transparent 0%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 2%, transparent 0%);
    background-size: 50px 50px;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.cta-title {
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-urgency {
    margin-top: 2rem;
}

.urgency-badge {
    display: inline-block;
    background: rgba(239, 68, 68, 0.9);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Floating Elements */
.cta-float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    animation: float 4s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.element-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

/* =================================================================
   17. FOOTER
   ================================================================= */
.footer {
    background: linear-gradient(135deg, #1F2937, #111827);
    color: var(--white);
    position: relative;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

/* Footer Links */
.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links i {
    font-size: 0.75rem;
    color: var(--secondary);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 5px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* =================================================================
   18. PAGE HERO (Generic for inner pages)
   ================================================================= */
.page-hero {
    position: relative;
    padding: 150px 0 100px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb i {
    font-size: 0.75rem;
}

/* =================================================================
   19. ABOUT PAGE STYLES
   ================================================================= */
.our-story {
    padding: var(--section-padding);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.story-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.badge-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.story-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

/* Mission & Vision */
.mission-vision {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.mv-title {
    margin-bottom: 1rem;
}

.mv-desc {
    color: var(--text-gray);
}

/* Why Choose Us */
.why-choose-us {
    padding: var(--section-padding);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.choose-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.choose-card h3 {
    margin-bottom: 1rem;
}

.choose-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.team-social a:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.team-info {
    padding: 1.5rem;
}

.team-name {
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.team-desc {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Certifications */
.certifications {
    padding: var(--section-padding);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cert-item i {
    font-size: 3rem;
    color: var(--primary);
}

.cert-item span {
    font-weight: 600;
    text-align: center;
}

/* =================================================================
   20. PRODUCTS PAGE STYLES
   ================================================================= */
.product-categories-section {
    padding: var(--section-padding);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-box {
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-normal);
}

.category-box:hover {
    transform: translateY(-10px);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.category-box h3 {
    margin-bottom: 0.5rem;
}

.category-box p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.product-count {
    display: inline-block;
    background: var(--gradient-bg);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Product Benefits */
.product-benefits {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

/* How to Use */
.how-to-use {
    padding: var(--section-padding);
}

.usage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.usage-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.usage-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-num {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.usage-step h3 {
    margin-bottom: 0.5rem;
}

.usage-step p {
    color: var(--text-gray);
}

/* Product Reviews */
.product-testimonials {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    padding: 2rem;
    border-radius: var(--radius-md);
}

.review-rating {
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.review-author span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* =================================================================
   21. MLM PLAN PAGE STYLES
   ================================================================= */
.plan-overview {
    padding: var(--section-padding);
}

.income-streams {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.stream-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.stream-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.stream-card h3 {
    margin-bottom: 1rem;
}

.stream-percentage {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stream-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.stream-features {
    list-style: none;
    text-align: left;
}

.stream-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stream-features i {
    color: #10B981;
}

/* Rank Levels */
.rank-levels {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.ranks-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.rank-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.rank-badge {
    min-width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #CD7F32, #A0522D);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #C0C0C0, #808080);
}

.rank-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.rank-badge.diamond {
    background: linear-gradient(135deg, #B9F2FF, #00CED1);
}

.rank-content {
    flex: 1;
    padding: 2rem;
    border-radius: var(--radius-md);
}

.rank-title {
    margin-bottom: 1rem;
}

.rank-income {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.rank-requirements,
.rank-benefits {
    margin-bottom: 1.5rem;
}

.rank-requirements p,
.rank-benefits p {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.rank-requirements ul,
.rank-benefits ul {
    list-style: none;
}

.rank-requirements li,
.rank-benefits li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rank-requirements i {
    color: var(--primary);
}

.rank-benefits i {
    color: #10B981;
}

/* Commission Structure */
.commission-structure {
    padding: var(--section-padding);
}

.table-wrapper {
    border-radius: var(--radius-md);
    padding: 2rem;
    overflow-x: auto;
}

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

.commission-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.commission-table th,
.commission-table td {
    padding: 1rem;
    text-align: left;
}

.commission-table tbody tr {
    border-bottom: 1px solid #E5E7EB;
}

.commission-table tbody tr:hover {
    background: var(--gradient-bg);
}

.commission-table tfoot {
    background: var(--gradient-bg);
    font-weight: 600;
}

.badge-percent {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
}

.table-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #FEF3C7;
    border-left: 4px solid #F59E0B;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.table-note i {
    color: #F59E0B;
    font-size: 1.5rem;
}

/* Bonus & Rewards */
.bonus-rewards {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reward-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.reward-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.reward-card h3 {
    margin-bottom: 1rem;
}

.reward-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.reward-card p {
    color: var(--text-gray);
}

/* Plan Comparison */
.plan-comparison {
    padding: var(--section-padding);
}

.comparison-table-wrapper {
    border-radius: var(--radius-md);
    padding: 2rem;
    overflow-x: auto;
}

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

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.comparison-table .featured {
    background: var(--gradient-bg);
    font-weight: 600;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #E5E7EB;
}

.text-success {
    color: #10B981;
}

.text-danger {
    color: #EF4444;
}

/* =================================================================
   22. JOIN PAGE STYLES
   ================================================================= */
.registration-section {
    padding: var(--section-padding);
}

.registration-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.registration-benefits h2 {
    margin-bottom: 2rem;
}

.benefits-title {
    font-size: 2rem;
}

.benefit-list {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-bg);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

/* Registration Form */
.registration-form-wrapper {
    padding: 2rem;
    border-radius: var(--radius-md);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-gray);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
}

/* Success Process */
.success-process {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.process-step .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.process-step .step-icon {
    width: 80px;
    height: 80px;
    margin: 1.5rem auto 1.5rem;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.process-step h3 {
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-gray);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
}

/* =================================================================
   23. CONTACT PAGE STYLES
   ================================================================= */
.contact-info-section {
    padding: var(--section-padding);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.info-card h3 {
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.info-card a {
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    padding: 2rem;
    border-radius: var(--radius-md);
}

/* Map Container */
.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.map-container iframe {
    display: block;
}

/* Working Hours */
.working-hours {
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.working-hours h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.working-hours ul {
    list-style: none;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.working-hours li:last-child {
    border-bottom: none;
}

/* Social Connect */
.social-connect {
    padding: 2rem;
    border-radius: var(--radius-md);
}

.social-connect h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.social-link-box:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px);
}

.social-link-box i {
    font-size: 1.5rem;
}

/* Regional Offices */
.regional-offices {
    padding: var(--section-padding);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.office-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.office-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.office-card h3 {
    margin-bottom: 1rem;
}

.office-card p {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

.office-card i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

/* Support Options */
.support-options {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.support-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.support-card h3 {
    margin-bottom: 0.5rem;
}

.support-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* =================================================================
   24. ANIMATIONS & EFFECTS
   ================================================================= */
/* Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide In from Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In from Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Zoom In */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* AOS Animation Support */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"].aos-animate {
    animation: fadeIn 0.6s ease forwards;
}

[data-aos="fade-left"].aos-animate {
    animation: slideInRight 0.6s ease forwards;
}

[data-aos="fade-right"].aos-animate {
    animation: slideInLeft 0.6s ease forwards;
}

[data-aos="zoom-in"].aos-animate {
    animation: zoomIn 0.6s ease forwards;
}

/* =================================================================
   25. RESPONSIVE DESIGN - Enhanced Mobile View
   ================================================================= */

/* Tablet & Medium Devices (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content,
    .story-content,
    .benefits-content,
    .usage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .registration-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .income-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
        --container-padding: 0 20px;
    }
    
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Header & Navigation */
    .header {
        padding: 1rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem 1.5rem;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-menu a {
        padding: 1rem 0;
        display: block;
        font-size: 1.1rem;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .nav-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-toggle {
        display: flex;
        font-size: 1.5rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 80px 0 50px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-card {
        min-width: 140px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-cards {
        display: none; /* Hide floating cards on mobile for cleaner look */
    }
    
    /* Page Hero */
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    /* How It Works */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step::before {
        display: none; /* Hide connecting lines on mobile */
    }
    
    /* Income Levels */
    .income-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .income-calculator {
        padding: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials-slider {
        padding: 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Benefits Section */
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-left,
    .benefits-right {
        order: 2;
    }
    
    .benefits-center {
        order: 1;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    /* Team Grid */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-control {
        font-size: 16px; /* Prevent iOS zoom on input focus */
    }
    
    /* Tables */
    .comparison-table-wrapper,
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .commission-table {
        min-width: 600px;
    }
    
    /* Rank Items */
    .rank-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .rank-icon {
        margin-bottom: 1rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    /* Scroll to Top */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* CTA Section */
    .cta-content {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .cta-float-element {
        display: none; /* Hide floating elements on mobile */
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    :root {
        --section-padding: 40px 0;
    }
    
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .btn-large {
        padding: 0.9rem 1.75rem;
        font-size: 1.05rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-card {
        min-width: 120px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Cards */
    .feature-card,
    .product-card,
    .benefit-card {
        padding: 1.25rem;
    }
    
    /* Product Categories */
    .product-categories {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .category-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    /* Income Calculator */
    .calc-input {
        font-size: 1rem;
    }
    
    /* Contact Cards */
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    /* Registration Steps */
    .step-nav {
        gap: 0.5rem;
    }
    
    .step-indicator {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Modal */
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    /* Testimonial Navigation */
    .testimonial-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Footer */
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices (360px and below) - Common Android phones */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .stat-card {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Landscape Mode Optimization for Phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .page-hero {
        padding: 80px 0 40px;
    }
    
    :root {
        --section-padding: 40px 0;
    }
    
    .hero-stats {
        display: none; /* Hide stats in landscape for space */
    }
}

/* iPad Mini and similar tablets (744px - 834px) */
@media (min-width: 744px) and (max-width: 834px) {
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid,
    .income-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Tablets and iPad Pro (834px - 1024px) */
@media (min-width: 834px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* iPhone 12/13/14 Pro Max (428px) */
@media (max-width: 428px) and (min-width: 391px) {
    .container {
        padding: 0 18px;
    }
    
    .stat-card {
        min-width: 130px;
    }
}

/* iPhone 12/13/14 (390px) */
@media (max-width: 390px) and (min-width: 376px) {
    .container {
        padding: 0 16px;
    }
    
    .stat-card {
        min-width: 125px;
    }
}

/* iPhone SE / Small Androids (375px) */
@media (max-width: 375px) and (min-width: 361px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .stat-card {
        min-width: 115px;
    }
}

/* Very wide screens (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Ultra-wide screens (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .scroll-top,
    .cta-section,
    .mobile-toggle {
        display: none;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .page-hero {
        padding: 20px 0;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed */
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High DPI Screens (Retina Display) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimized for high resolution displays */
    body {
        -webkit-font-smoothing: subpixel-antialiased;
    }
}

/* =================================================================
   26. PRODUCT DETAIL PAGE
   ================================================================= */

/* Product Detail Section */
.product-detail-section {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.product-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 10;
}

.badge-hot {
    background: linear-gradient(135deg, #FF6B6B, #FF1744);
    color: var(--white);
}

.badge-new {
    background: linear-gradient(135deg, #00E676, #00C853);
    color: var(--white);
}

.image-zoom-icon {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.image-zoom-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition-normal);
}

.thumbnail.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.thumbnail:hover {
    transform: translateY(-3px);
}

/* Product Info */
.product-info {
    padding: 2rem 0;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.product-breadcrumb a {
    color: var(--text-gray);
    transition: var(--transition-normal);
}

.product-breadcrumb a:hover {
    color: var(--primary);
}

.product-breadcrumb i {
    font-size: 0.7rem;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-rating .stars {
    color: #FFA500;
}

.rating-text {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.separator {
    color: var(--text-light);
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.stock-status.in-stock {
    color: #00C853;
}

.stock-status.out-of-stock {
    color: #FF1744;
}

.product-excerpt {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Pricing */
.product-pricing {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(251, 146, 60, 0.05));
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-gray);
    text-decoration: line-through;
}

.discount-badge {
    background: linear-gradient(135deg, #00E676, #00C853);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Product Variants */
.product-variants {
    margin-bottom: 2rem;
}

.variant-group {
    margin-bottom: 1.5rem;
}

.variant-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.variant-options {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.variant-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    font-weight: 500;
    color: var(--text-dark);
}

.variant-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.variant-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.variant-color {
    min-width: 100px;
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
}

.variant-color span {
    position: relative;
    z-index: 1;
}

.variant-color.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Quantity Section */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.quantity-selector input {
    width: 60px;
    height: 45px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.stock-info {
    color: #FF6B6B;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-icon {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1.3rem;
    color: var(--text-dark);
}

.btn-icon:hover {
    background: #FF1493;
    color: var(--white);
    border-color: #FF1493;
}

/* Product Highlights */
.product-highlights {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.product-highlights h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.highlights-list {
    list-style: none;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.highlights-list i {
    color: #00C853;
    font-size: 1.1rem;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.badge-item {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.badge-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.badge-item span {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Product Tabs Section */
.product-tabs-section {
    padding: 80px 0;
    background: var(--white);
}

.tabs-wrapper {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tab-navigation {
    display: flex;
    background: var(--white);
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-gray);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: var(--bg-light);
}

.tab-content {
    display: none;
    padding: 3rem;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.tab-content h4 {
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

/* Description Features */
.description-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.desc-feature {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-normal);
}

.desc-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.desc-feature i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.desc-feature h4 {
    margin: 1rem 0 0.5rem;
}

.desc-feature p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.specs-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.specs-table th,
.specs-table td {
    padding: 1rem;
    text-align: left;
}

.specs-table th {
    font-weight: 600;
    color: var(--text-dark);
    width: 30%;
    background: rgba(37, 99, 235, 0.05);
}

.specs-table td {
    color: var(--text-gray);
}

/* Ingredients */
.ingredients-intro {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.ingredient-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
}

.ingredient-name {
    font-weight: 500;
    color: var(--text-dark);
}

.ingredient-amount {
    color: var(--primary);
    font-weight: 600;
}

.ingredients-note {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(251, 146, 60, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    margin-top: 2rem;
}

.ingredients-note i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Usage Steps */
.usage-steps {
    margin: 2rem 0;
}

.usage-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.usage-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
}

.step-content p {
    margin: 0;
    color: var(--text-gray);
}

.usage-warnings {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #FF6B6B;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin-top: 2rem;
}

.usage-warnings h4 {
    color: #FF6B6B;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
}

.usage-warnings ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 0;
}

.usage-warnings li {
    padding: 0.25rem 0;
    color: var(--text-dark);
}

/* Reviews */
.reviews-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.rating-overview {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
}

.average-rating {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.average-rating h2 {
    font-size: 4rem;
    margin: 0;
    color: var(--primary);
}

.average-rating .stars {
    color: #FFA500;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.average-rating p {
    margin: 0.5rem 0 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-row {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    gap: 1rem;
    align-items: center;
}

.rating-row span:first-child {
    color: var(--text-gray);
    font-weight: 500;
}

.rating-row span:last-child {
    text-align: right;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.rating-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50px;
    transition: width 0.5s ease;
}

/* Reviews List */
.reviews-list {
    margin-top: 2rem;
}

.review-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.review-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin: 0 0 0.25rem 0;
}

.review-stars {
    color: #FFA500;
    margin: 0.25rem 0;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.review-content h5 {
    margin: 0 0 0.75rem 0;
    color: var(--text-dark);
}

.review-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-helpful {
    margin-top: 1rem;
}

.helpful-btn {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    color: var(--text-dark);
}

.helpful-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.load-more-reviews {
    display: block;
    margin: 2rem auto 0;
}

/* Related Products */
.related-products-section {
    background: var(--bg-light);
}

/* Responsive - Product Detail */
@media (max-width: 1024px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        position: static;
    }
    
    .rating-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 100px 0 50px;
    }
    
    .main-image img {
        height: 350px;
    }
    
    .product-title {
        font-size: 1.75rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tab-navigation {
        flex-wrap: nowrap;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-content {
        padding: 2rem 1.5rem;
    }
    
    .description-features {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }

}

@media (max-width: 480px) {
    .image-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .thumbnail img {
        height: 70px;
    }
    
    .variant-options {
        flex-direction: column;
    }
    
    .variant-btn {
        width: 100%;
        justify-content: center;
    }
    
    .quantity-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        font-size: 0.85rem;
        padding: 1rem;
    }
}

/* =================================================================
   END OF CSS
   ================================================================= */
