/*
Theme Name: Ronish Bioceuticals
Theme URI: https://www.ronishbioceuticals.com
Author: Custom Theme
Author URI: https://www.ronishbioceuticals.com
Description: Conversion-optimized WordPress theme for Ronish Bioceuticals - India's trusted WHO-GMP certified PCD Pharma Franchise company. Built with SEO best practices, lead generation funnels, WhatsApp integration, and trust-building design.
Version: 2.0.0
Requires at least: 5.5
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: ronish
Tags: pharmaceutical, franchise, healthcare, business, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, conversion-optimized
*/

/* ===========================================
   CSS VARIABLES - BRAND COLORS FROM LOGO
=========================================== */
:root {
    /* Primary brand colors extracted from Ronish logo */
    --primary: #7814A0;
    --primary-dark: #5A0F7A;
    --primary-light: #9B3FC4;
    --primary-50: #F5EBFA;
    --primary-100: #E8D1F2;
    --primary-200: #D4A8E5;
    
    /* Secondary brand color (Orange from BIOCEUTICALS) */
    --accent: #F07800;
    --accent-dark: #D66A00;
    --accent-light: #FF9933;
    --accent-50: #FFF4E6;
    
    /* Functional colors */
    --success: #10b981;
    --whatsapp: #25D366;
    --whatsapp-dark: #1DA851;
    --error: #dc2626;
    
    /* Neutrals */
    --dark: #1A1A2E;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-purple: 0 10px 30px -10px rgba(120, 20, 160, 0.3);
    --shadow-orange: 0 10px 30px -10px rgba(240, 120, 0, 0.3);
    
    /* Spacing */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-display: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* ===========================================
   RESET & BASE
=========================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 0.5em;
    font-weight: 800;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===========================================
   BUTTONS - High-conversion CTAs
=========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(120, 20, 160, 0.5);
    color: var(--white);
}
.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(240, 120, 0, 0.5);
    color: var(--white);
}
.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}
.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-large { padding: 18px 36px; font-size: 16px; }

/* ===========================================
   STICKY WHATSAPP BUTTON (Audit Requirement)
=========================================== */
.sticky-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    background: var(--whatsapp);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    font-size: 30px;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
.sticky-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    color: var(--white);
}
.sticky-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--whatsapp);
    opacity: 0.4;
    animation: ripple 2s infinite;
}
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8); }
}
@keyframes ripple {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Sticky Call Button */
.sticky-call {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 9998;
    background: var(--accent);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(240, 120, 0, 0.5);
    font-size: 24px;
    transition: var(--transition);
}
.sticky-call:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* ===========================================
   HEADER
=========================================== */
.site-header { background: var(--white); position: sticky; top: 0; z-index: 1000; transition: var(--transition); }
.site-header.scrolled { box-shadow: var(--shadow-md); }

.top-bar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-info span { display: inline-flex; align-items: center; gap: 6px; }
.top-bar-info a { color: var(--white); font-weight: 600; }
.top-bar-cta { display: flex; gap: 12px; align-items: center; }
.top-bar-cta a {
    color: var(--white);
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}
.top-bar-cta a:hover { background: var(--accent); color: var(--white); }

.header-main { padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }

.site-branding img { max-height: 65px; width: auto; }
.site-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}
.site-title a { color: inherit; }

.main-navigation ul { display: flex; list-style: none; gap: 4px; align-items: center; }
.main-navigation a {
    color: var(--gray-900);
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    position: relative;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--primary);
    background: var(--primary-50);
}
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    min-width: 240px;
    padding: 8px;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--primary);
}
.main-navigation li { position: relative; }
.main-navigation li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.main-navigation ul ul a { width: 100%; display: block; }

.header-cta { display: flex; gap: 10px; align-items: center; }
.menu-toggle {
    display: none;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 18px;
}

/* ===========================================
   HERO SECTION - Audit: Strong USP + CTA
=========================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #faf5fc 0%, #f0e6f7 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(120,20,160,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240,120,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease-out;
    border: 1px solid var(--primary-100);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease-out 0.1s both;
}
.hero h1 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.hero h1 .highlight-orange { color: var(--accent); }
.hero h1 .underline {
    background: linear-gradient(120deg, var(--accent-50) 0%, var(--primary-50) 100%);
    padding: 0 8px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-700);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 580px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease-out 0.3s both;
}

.hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    box-shadow: var(--shadow-sm);
}
.trust-text strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}
.trust-text span { font-size: 12px; color: var(--gray-500); }

/* Hero Lead Form (Above-the-fold conversion) */
.hero-form {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
    border-top: 4px solid var(--accent);
}
.hero-form::before {
    content: 'LIMITED MONOPOLY SLOTS';
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}
.hero-form h3 {
    font-size: 22px;
    margin-bottom: 6px;
    color: var(--dark);
}
.hero-form .form-subtitle {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 20px;
}
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-900);
    transition: var(--transition);
    background: var(--gray-50);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(120,20,160,0.1);
}
.form-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 12px;
    justify-content: center;
}

/* ===========================================
   TRUST BAR (Audit: Section 2)
=========================================== */
.trust-bar {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--gray-100);
}
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}
.trust-stat { text-align: center; }
.trust-stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}
.trust-stat-label {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===========================================
   SECTIONS
=========================================== */
.section { padding: 90px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--dark); color: var(--gray-300); }
.section-purple {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 14px;
    background: var(--accent-50);
    border-radius: var(--radius-full);
}
.section-purple .section-tag,
.section-dark .section-tag { color: var(--accent-light); background: rgba(240,120,0,0.15); }
.section-title { margin-bottom: 16px; }
.section-purple .section-title,
.section-dark .section-title { color: var(--white); }
.section-description { color: var(--gray-500); font-size: 17px; }
.section-purple .section-description,
.section-dark .section-description { color: rgba(255,255,255,0.85); }

/* ===========================================
   THERAPEUTIC CATEGORIES (Audit: SEO Pages)
=========================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.category-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--gray-100);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-100);
}
.category-card:hover::before { transform: scaleX(1); }
.category-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 32px;
    transition: var(--transition);
}
.category-card:hover .category-icon {
    background: var(--primary);
    transform: scale(1.1) rotate(-5deg);
}
.category-card:hover .category-icon svg { fill: var(--white); }
.category-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--dark); }
.category-card p { color: var(--gray-500); font-size: 13px; margin: 0; }
.category-count {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
}

/* ===========================================
   WHY CHOOSE US
=========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.feature-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-100);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-purple);
}
.feature-icon.orange {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    box-shadow: var(--shadow-orange);
}
.feature-card h3 { font-size: 20px; margin-bottom: 12px; }
.feature-card p { color: var(--gray-500); font-size: 15px; margin: 0; line-height: 1.65; }

/* ===========================================
   DISTRIBUTOR BENEFITS
=========================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.benefits-list { list-style: none; padding: 0; }
.benefits-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    align-items: flex-start;
}
.benefits-list li:last-child { border-bottom: none; }
.benefit-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--success), #34d399);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}
.benefit-content h4 { font-size: 17px; margin-bottom: 4px; color: var(--dark); }
.benefit-content p { font-size: 14px; color: var(--gray-500); margin: 0; }

.benefits-visual {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent-50) 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
}
.benefits-stat-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}
.benefits-stat-card:last-child { margin-bottom: 0; }
.benefits-stat-card .num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}
.benefits-stat-card .label { font-size: 14px; color: var(--gray-700); font-weight: 600; }

/* ===========================================
   PRODUCTS SHOWCASE
=========================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-image {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--gray-50) 100%);
    padding: 32px;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-image img { max-height: 100%; object-fit: contain; }
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.product-info { padding: 22px; }
.product-category {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-info h3 { font-size: 17px; margin: 8px 0; }
.product-info p { color: var(--gray-500); font-size: 13px; margin-bottom: 14px; min-height: 40px; }
.product-info .product-cta {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ===========================================
   MANUFACTURING SECTION (Audit Recommendation)
=========================================== */
.manufacturing {
    background: linear-gradient(135deg, var(--dark) 0%, #2d1b3d 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.manufacturing::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(120,20,160,0.3) 0%, transparent 70%);
}
.manufacturing-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.manufacturing h2 { color: var(--white); }
.manufacturing p { color: rgba(255,255,255,0.85); }
.manufacturing-features {
    list-style: none;
    margin: 30px 0;
}
.manufacturing-features li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: rgba(255,255,255,0.95);
}
.manufacturing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.video-thumbnail {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    background: var(--primary-dark);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-button {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    animation: pulse-play 2s infinite;
    z-index: 2;
}
.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 22px solid var(--primary);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
}
@keyframes pulse-play {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255,255,255,0); }
}

/* ===========================================
   TESTIMONIALS - Distributor Success Stories
=========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0;
    right: 30px;
    font-family: 'Georgia', serif;
    font-size: 100px;
    color: var(--primary);
    opacity: 0.12;
    line-height: 1;
}
.testimonial-rating { color: var(--accent); margin-bottom: 14px; font-size: 18px; }
.testimonial-text { color: var(--gray-700); font-size: 15px; margin-bottom: 24px; line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}
.author-name { font-weight: 700; color: var(--dark); font-size: 15px; }
.author-role { font-size: 13px; color: var(--gray-500); }
.author-growth {
    font-size: 12px;
    color: var(--success);
    font-weight: 700;
    margin-top: 2px;
}

/* ===========================================
   CTA SECTION - Lead Capture
=========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 130%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.cta-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.cta-content h2 { color: var(--white); }
.cta-content p { font-size: 17px; opacity: 0.95; margin-bottom: 24px; }
.cta-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}
.cta-features-grid > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
}
.cta-features-grid > div::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.inquiry-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    color: var(--gray-700);
}
.inquiry-form h3 { color: var(--dark); margin-bottom: 8px; font-size: 24px; }
.inquiry-form .form-subtitle { color: var(--gray-500); font-size: 14px; margin-bottom: 22px; }
.inquiry-form .btn { width: 100%; justify-content: center; }

/* Success/Error Messages */
.form-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
}
.form-message.success { background: #d1fae5; color: #065f46; }
.form-message.error { background: #fee2e2; color: #991b1b; }

/* ===========================================
   CERTIFICATIONS
=========================================== */
.certifications {
    background: var(--white);
    padding: 50px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}
.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    align-items: center;
}
.cert-item {
    text-align: center;
    padding: 20px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 2px solid transparent;
}
.cert-item:hover {
    background: var(--white);
    border-color: var(--primary-100);
    transform: scale(1.05);
}
.cert-item .cert-icon { font-size: 40px; margin-bottom: 10px; }
.cert-item strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 2px;
}
.cert-item span { font-size: 12px; color: var(--gray-500); }

/* ===========================================
   STATE FRANCHISE MAP
=========================================== */
.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.state-pill {
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.state-pill:hover {
    border-color: var(--primary);
    background: var(--primary-50);
    color: var(--primary);
    transform: translateY(-2px);
}
.state-pill .available {
    background: var(--success);
    color: var(--white);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
}

/* ===========================================
   BLOG / POSTS
=========================================== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-thumbnail img { width: 100%; height: 220px; object-fit: cover; }
.post-content { padding: 26px; }
.post-meta { color: var(--gray-500); font-size: 13px; margin-bottom: 10px; }
.post-meta span { display: inline-flex; align-items: center; gap: 4px; margin-right: 12px; }
.post-title { font-size: 20px; margin-bottom: 12px; line-height: 1.3; }
.post-title a { color: var(--dark); }
.post-title a:hover { color: var(--primary); }
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    margin-top: 12px;
}

.entry-content { max-width: 800px; margin: 0 auto; padding: 40px 20px; font-size: 17px; line-height: 1.75; }
.entry-content h1, .entry-content h2, .entry-content h3 { margin-top: 1.5em; }
.entry-content img { border-radius: var(--radius-md); margin: 20px 0; }
.entry-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    background: var(--primary-50);
    margin: 24px 0;
    font-style: italic;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
}
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 1em; }

.widget {
    background: var(--white);
    padding: 26px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}
.widget-title { font-size: 18px; margin-bottom: 15px; color: var(--dark); }
.widget ul { list-style: none; }
.widget ul li { padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.widget ul li:last-child { border-bottom: none; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span {
    padding: 10px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-weight: 600;
}
.pagination .current { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===========================================
   FOOTER
=========================================== */
.site-footer { background: var(--dark); color: var(--gray-300); padding: 70px 0 0; position: relative; }
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-widget h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
}
.footer-widget p, .footer-widget li { color: var(--gray-300); font-size: 14px; line-height: 1.8; }
.footer-widget ul { list-style: none; }
.footer-widget ul li { padding: 5px 0; }
.footer-widget ul a { color: var(--gray-300); }
.footer-widget ul a:hover { color: var(--accent); padding-left: 5px; }
.footer-logo img { max-height: 60px; margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-contact span { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact .icon {
    width: 24px;
    color: var(--accent);
    flex-shrink: 0;
    font-size: 16px;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 0;
    text-align: center;
    font-size: 14px;
    color: var(--gray-400);
}
.footer-bottom a { color: var(--accent); }

/* ===========================================
   ANIMATIONS
=========================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===========================================
   RESPONSIVE
=========================================== */
@media (max-width: 992px) {
    .hero-inner, .cta-inner, .manufacturing-inner, .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .main-navigation > ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        box-shadow: var(--shadow-lg);
        gap: 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    .main-navigation.toggled > ul { display: flex; }
    .main-navigation ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        border-top: none;
    }
    .header-cta .btn { display: none; }
    .header-inner { position: relative; }
    .top-bar-info { gap: 12px; font-size: 12px; }
    .top-bar-cta { display: none; }
    .section { padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-features-grid { grid-template-columns: 1fr; }
    .hero { padding: 50px 0 70px; }
    .sticky-call { bottom: 90px; right: 20px; width: 52px; height: 52px; font-size: 22px; }
    .sticky-whatsapp { width: 52px; height: 52px; font-size: 26px; right: 20px; }
}

/* Utilities */
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin: 0 auto; }
.alignwide { max-width: 100%; }
.alignfull { max-width: 100vw; }
.text-center { text-align: center; }
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}
.wp-caption, .wp-caption-text, .gallery-caption, .bypostauthor, .sticky { display: block; }


/* ===========================================
   ELEMENTOR COMPATIBILITY
=========================================== */

/* Elementor pages mein theme ka padding reset */
.elementor-page .site-header + * {
    margin-top: 0;
}

/* Elementor section ke andar containers */
.elementor-section .container {
    max-width: 100%;
    padding: 0;
}

/* Elementor widgets brand colors use kar sakein */
.elementor-widget-button .elementor-button {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Page hero bar (non-Elementor pages) */
.page-hero-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 40px 0 32px;
}

.page-hero-bar .page-title {
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    margin: 0;
}

.page-content-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.page-featured-image {
    margin-bottom: 32px;
}

/* Entry content typography */
.entry-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    font-size: 1.6rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.entry-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 24px;
    margin-bottom: 10px;
}

.entry-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.entry-content a {
    color: var(--primary);
    text-decoration: underline;
}

.entry-content ul,
.entry-content ol {
    color: var(--gray-700);
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 16px;
}

/* Gutenberg / Block Editor alignment */
.alignwide {
    margin-left: -40px;
    margin-right: -40px;
}

.alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
}

@media (max-width: 768px) {
    .alignwide {
        margin-left: 0;
        margin-right: 0;
    }
}

/* ===========================================
   WOOCOMMERCE BREADCRUMB IN PAGE HEADER
=========================================== */
.page-hero-bar .woocommerce-breadcrumb {
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    margin-top: 8px;
}

.page-hero-bar .woocommerce-breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.page-hero-bar .woocommerce-breadcrumb a:hover {
    color: var(--white);
    text-decoration: underline;
}
