/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1f4e46;
    --secondary-color: #e1f2ad;
    --accent-color: #2d7a6b;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(31, 78, 70, 0.1);
    --shadow-hover: 0 8px 30px rgba(31, 78, 70, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-logo img {
    width: 35px;
    height: 35px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(31, 78, 70, 0.1);
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hindi-text {
    display: block;
    font-size: 2.3rem;
    margin-bottom: 0.25rem;
}

.english-text {
    display: block;
    font-size: 1.3rem;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

/* Enhanced Button Spacing and Alignment */
.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    min-width: 200px;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary-color);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

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

/* WhatsApp Button Special Styling */
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    animation: whatsapp-pulse 2s infinite;
}

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

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

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

/* Checkout Page Buttons */
.checkout-actions {
    margin-top: 2rem;
}

.checkout-actions .btn {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.checkout-actions .btn:last-child {
    margin-bottom: 0;
}

.delivery-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #856404;
}

.btn-checkout-payment {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-checkout-payment:hover {
    background: #d4e89a;
    border-color: #d4e89a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 78, 70, 0.2);
}

.btn-checkout-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-checkout-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-checkout-continue {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-checkout-continue:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Sections */
.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.feature-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white);
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Products Preview */
.products-preview {
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Responsive fixes for products-preview section */
@media (max-width: 768px) {
    .products-preview .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .products-preview .product-card {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }
    
    .products-preview .product-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .products-preview .product-content {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .products-preview {
        padding: 2rem 0;
    }
    
    .products-preview .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .products-preview .product-card {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .products-preview .product-image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    .products-preview .product-content {
        padding: 0.875rem;
        width: 100%;
    }
}

.product-card {
    transition: box-shadow 0.35s cubic-bezier(.4,2,.3,1), transform 0.35s cubic-bezier(.4,2,.3,1);
    box-shadow: 0 2px 16px rgba(31, 78, 70, 0.10);
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 16px 48px rgba(31, 78, 70, 0.18);
    transform: translateY(-8px) scale(1.03);
    border-color: #b6e36a;
}

.product-image, .products-preview .product-image {
    background: linear-gradient(120deg, #e1f2ad 60%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 400px;
    height: 400px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 4px 24px rgba(31, 78, 70, 0.13);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.product-image img, .products-preview .product-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(31, 78, 70, 0.13);
    border: 2.5px solid #e1f2ad;
    transition: transform 0.35s cubic-bezier(.4,2,.3,1), box-shadow 0.35s cubic-bezier(.4,2,.3,1);
    cursor: pointer;
    display: block;
    margin: 0 auto;
}

.product-card:hover .product-image img, .product-card:hover .products-preview .product-image img {
    transform: scale(1.07);
    box-shadow: 0 12px 48px rgba(31, 78, 70, 0.22);
    border-color: #b6e36a;
}

.product-content {
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    background: #fff;
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease;
}

.product-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #1f4e46;
    letter-spacing: 0.01em;
}

.product-content p {
    color: #4a5a4a;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.01rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: #e1f2ad;
    color: #1f4e46;
    padding: 4px 14px;
    border-radius: 16px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: visible;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.product-specs {
    margin-bottom: 1.1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1f4e46;
    font-size: 0.97rem;
    margin-bottom: 0.3rem;
}

.wood-selection {
    margin-bottom: 1.1rem;
}

.wood-options {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.3rem;
}

.wood-option {
    background: #f5f8f4;
    color: #1f4e46;
    border: 1.5px solid #e1f2ad;
    border-radius: 18px;
    padding: 7px 18px;
    font-size: 0.98rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border 0.2s, color 0.2s;
    outline: none;
    box-shadow: 0 1px 4px rgba(31, 78, 70, 0.04);
}

.wood-option.active, .wood-option:focus {
    background: #e1f2ad;
    color: #1f4e46;
    border: 1.5px solid #1f4e46;
}

.price-calculator {
    background: #f8faf7;
    border-radius: 14px;
    padding: 1rem 1.2rem 0.7rem 1.2rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 1px 6px rgba(31, 78, 70, 0.04);
    border: 1px solid #e1f2ad;
}

.calculator-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.7rem;
    font-size: 1.01rem;
}

.calculator-row label {
    color: #1f4e46;
    font-weight: 500;
}

.calculator-row input.quantity {
    width: 60px;
    padding: 5px 8px;
    border-radius: 8px;
    border: 1.2px solid #c7e2b0;
    font-size: 1rem;
    text-align: center;
    background: #fff;
    color: #1f4e46;
    font-weight: 600;
}

.calculator-row .rate, .calculator-row .total {
    font-weight: 700;
    color: #1f4e46;
    font-size: 1.08rem;
}

.calculator-row.total {
    border-top: 1px solid #e1f2ad;
    padding-top: 0.6rem;
    margin-top: 0.5rem;
}

.product-actions {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.1rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1 1 100px;
    min-width: 90px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
}

@media (max-width: 900px) {
    .product-card {
        margin-bottom: 2rem;
    }
    .product-content {
        padding: 1.1rem 1.1rem 1rem 1.1rem;
    }
}

@media (max-width: 600px) {
    .product-card {
        border-radius: 16px;
        margin-bottom: 1.2rem;
    }
    .product-image, .products-preview .product-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 16px 16px 0 0;
        padding: 0;
    }
    .product-image img, .products-preview .product-image img {
        aspect-ratio: 1 / 1;
        object-fit: contain;
        border-radius: 14px;
    }
    .product-content {
        padding: 0.9rem 0.7rem 0.7rem 0.7rem;
    }
    .price-calculator {
        padding: 0.7rem 0.7rem 0.5rem 0.7rem;
    }
    .wood-options {
        gap: 0.4rem;
    }
    .product-actions {
        gap: 0.4rem;
    }
    .hero-title {
        font-size: 1.3rem;
    }
    .hindi-text {
        font-size: 1.4rem;
    }
    .english-text {
        font-size: 1rem;
    }
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-highlights {
    margin: 1.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

/* Brand Strength Section */
.brand-strength {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.brand-strength h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.brand-strength .strength-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.brand-strength .strength-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-strength .strength-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(31, 78, 70, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.brand-strength .strength-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 78, 70, 0.15);
}

.brand-strength .strength-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 12px;
    min-width: 60px;
    text-align: center;
}

.brand-strength .strength-details h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.brand-strength .strength-details p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.brand-strength .strength-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.brand-strength .image-container {
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(31, 78, 70, 0.15);
    transition: all 0.4s ease;
}

.brand-strength .image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(31, 78, 70, 0.25);
}

.brand-strength .image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.brand-strength .image-container:hover img {
    transform: scale(1.05);
}

/* Extra Strength Section */
.extra-strength {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

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

.extra-strength h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.extra-strength .extra-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.extra-strength .extra-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.extra-strength .highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.extra-strength .highlight-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.extra-strength .highlight-icon {
    margin-bottom: 1rem;
}

.extra-strength .highlight-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 50%;
    display: inline-block;
}

.extra-strength .highlight-card h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.extra-strength .highlight-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.extra-strength .extra-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.extra-strength .image-container {
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.extra-strength .image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.extra-strength .image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.extra-strength .image-container:hover img {
    transform: scale(1.05);
}

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

.about-bharat-dwaar h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: left;
}

.about-bharat-dwaar .main-description {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.about-bharat-dwaar .about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-bharat-dwaar .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(31, 78, 70, 0.08);
    transition: all 0.3s ease;
}

.about-bharat-dwaar .feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(31, 78, 70, 0.12);
}

.about-bharat-dwaar .feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--light-bg);
    padding: 0.75rem;
    border-radius: 10px;
    min-width: 50px;
    text-align: center;
}

.about-bharat-dwaar .feature-item span {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 500;
}

.about-bharat-dwaar .delivery-notice {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.about-bharat-dwaar .delivery-notice i {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.about-bharat-dwaar .about-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.about-bharat-dwaar .image-container {
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(31, 78, 70, 0.15);
    transition: all 0.4s ease;
}

.about-bharat-dwaar .image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(31, 78, 70, 0.25);
}

.about-bharat-dwaar .about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-bharat-dwaar .image-container:hover .about-img {
    transform: scale(1.05);
}

/* Add a subtle overlay effect */
.about-bharat-dwaar .image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 78, 70, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.about-bharat-dwaar .image-container:hover::before {
    opacity: 1;
}

/* Responsive Design for Brand Strength Section */
@media (max-width: 768px) {
    .brand-strength .strength-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brand-strength h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .brand-strength .strength-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .brand-strength .strength-item {
        padding: 1rem;
    }
    
    .brand-strength .strength-item i {
        font-size: 1.5rem;
        padding: 0.75rem;
        min-width: 50px;
    }
    
    .brand-strength .strength-details h4 {
        font-size: 1.1rem;
    }
    
    .brand-strength .strength-details p {
        font-size: 0.95rem;
    }
    
    .brand-strength .strength-images {
        gap: 1.5rem;
    }
    
    .brand-strength .image-container {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .brand-strength .strength-images {
        gap: 1rem;
    }
    
    .brand-strength .image-container {
        max-width: 300px;
    }
    
    .brand-strength .image-container:hover {
        transform: translateY(-4px);
    }
}

/* Responsive Design for Extra Strength Section */
@media (max-width: 768px) {
    .extra-strength .extra-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .extra-strength h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .extra-strength .extra-description {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .extra-strength .extra-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .extra-strength .highlight-card {
        padding: 1rem;
    }
    
    .extra-strength .highlight-icon i {
        font-size: 1.5rem;
        padding: 0.75rem;
    }
    
    .extra-strength .highlight-card h4 {
        font-size: 1rem;
    }
    
    .extra-strength .highlight-card p {
        font-size: 0.9rem;
    }
    
    .extra-strength .extra-images {
        gap: 1.5rem;
    }
    
    .extra-strength .image-container {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .extra-strength .extra-images {
        gap: 1rem;
    }
    
    .extra-strength .image-container {
        max-width: 300px;
    }
    
    .extra-strength .image-container:hover {
        transform: translateY(-4px);
    }
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Enhanced Button Spacing and Alignment */
.cta-buttons {
    display: flex;
    gap: 2.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    min-width: 220px;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.bulk-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
    margin-top: 2rem;
}

.bulk-cta-actions .btn {
    text-align: center;
    justify-content: center;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    min-width: 280px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.bulk-cta-actions .btn-primary {
    background: var(--primary-color);
    border: 3px solid var(--primary-color);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(31, 78, 70, 0.3);
}

.bulk-cta-actions .btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 78, 70, 0.4);
}

.bulk-cta-actions .btn-whatsapp {
    background: #25D366;
    border: 3px solid #25D366;
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.bulk-cta-actions .btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.bulk-cta-actions .btn-outline {
    background: var(--white);
    border: 3px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(225, 242, 173, 0.2);
}

.bulk-cta-actions .btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(225, 242, 173, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.footer-logo img {
    width: 35px;
    height: 35px;
}

.footer-logo h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

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

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-actions {
        gap: 0.4rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
        animation: slideInMenu 0.4s ease-out;
    }

    .nav-menu li {
        margin: 0.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.5s; }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin: 0.25rem 0;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(31, 78, 70, 0.1);
        transform: translateX(5px);
    }

    .nav-link.active {
        background: var(--primary-color);
        color: var(--white);
    }

    @keyframes slideInMenu {
        0% {
            opacity: 0;
            transform: translateY(-20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hindi-text {
        font-size: 2.5rem;
    }

    .english-text {
        font-size: 1.8rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: visible;
    }
    
    .achievement-number {
        font-size: 1.8rem;
        white-space: nowrap;
        overflow: visible;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        min-width: 250px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-buttons .btn {
        min-width: 250px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .hero {
        padding-top: 100px;
    }

    .product-image, .carousel-images {
        height: 170px;
        padding: 10px 0 6px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hindi-text {
        font-size: 2.2rem;
    }

    .english-text {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
        white-space: nowrap;
        overflow: visible;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: visible;
    }
    
    .achievement-number {
        font-size: 1.6rem;
        white-space: nowrap;
        overflow: visible;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .legal-body {
        padding: 1.5rem 0.75rem;
    }

    .legal-header h1 {
        font-size: 1.8rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-content::before {
        left: -40px !important;
        right: auto !important;
    }

    .hero {
        padding-top: 80px;
    }

    .product-image, .carousel-images {
        height: 140px;
        padding: 8px 0 4px 0;
    }
}

/* Product Categories */
.product-categories {
    padding: 1.5rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 110px;
}

.category-tab i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.category-tab span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.category-tab small {
    font-size: 0.75rem;
    color: var(--text-light);
}

.category-tab.active,
.category-tab:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.category-tab.active i,
.category-tab:hover i {
    color: var(--secondary-color);
}

.category-tab.active span,
.category-tab:hover span {
    color: var(--white);
}

.category-tab.active small,
.category-tab:hover small {
    color: var(--secondary-color);
}

/* Products Section */
.products-section {
    padding: 4rem 0;
}

.products-section:nth-child(even) {
    background: var(--light-bg);
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Detailed Product Cards */
.product-card.detailed {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card.detailed:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.product-badge {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-specs {
    margin: 1.25rem 0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.spec-item i {
    color: var(--primary-color);
    width: 14px;
}

/* Wood Selection */
.wood-selection {
    margin: 1.25rem 0;
}

.wood-selection label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.wood-options {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.wood-option {
    flex: 1;
    min-width: 110px;
    padding: 0.6rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.wood-option.active,
.wood-option:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.wood-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.wood-price {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Price Calculator */
.price-calculator {
    background: var(--light-bg);
    padding: 0.75rem;
    border-radius: 8px;
    margin: 1.25rem 0;
}

.calculator-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.calculator-row:last-child {
    margin-bottom: 0;
}

.calculator-row.total {
    border-top: 1px solid var(--border-color);
    padding-top: 0.4rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
}

.calculator-row label {
    font-weight: 500;
    font-size: 0.9rem;
}

.calculator-row input {
    width: 70px;
    padding: 0.2rem 0.4rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 110px;
    justify-content: center;
}

/* Company Story */
.company-story {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.story-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

/* Values Section */
.values-section {
    padding: 4rem 0;
}

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

.value-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white);
    font-size: 1.8rem;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Timeline Section */
.timeline-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
    padding-right: 1.5rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    text-align: left;
    padding-left: 1.5rem;
}

.timeline-content {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    background: var(--secondary-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -55px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -55px;
}

.timeline-year {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

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

.team-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    height: 180px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    padding: 1.25rem;
}

.team-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.team-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

.team-stat .stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.team-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Achievements Section */
.achievements-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.achievement-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.achievement-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.4rem;
}

.achievement-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    white-space: nowrap;
    overflow: visible;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.achievement-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Contact Page Styles */
.hero-contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
}

/* Contact Methods */
.contact-methods {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.contact-method-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.contact-method-card:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Special styling for WhatsApp icon */
.contact-method-card:nth-child(2) .method-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-method-card:nth-child(2):hover .method-icon {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.contact-method-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-method-card p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.method-details {
    margin-bottom: 1.5rem;
}

.method-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.form-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(31, 78, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border-color);
}

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

.day {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.8rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quick-link i {
    color: var(--primary-color);
    width: 14px;
}

.quick-link:hover i {
    color: var(--white);
}

/* WhatsApp Quick Link Special Styling */
.quick-link.whatsapp-link:hover {
    background: #25D366;
    color: var(--white);
}

.quick-link.whatsapp-link:hover i {
    color: var(--white);
    animation: whatsapp-pulse 2s infinite;
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.location-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.location-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
    width: 20px;
}

.detail-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.detail-item span {
    color: var(--text-light);
}

.location-features h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.location-features ul {
    list-style: none;
}

.location-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.location-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.location-map {
    height: 400px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.map-placeholder {
    text-align: center;
    color: var(--text-light);
}

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

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Distributorship Page Styles */
.benefits-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Legal Pages Styles */
.legal-content {
    padding: 8rem 0 5rem;
    background: var(--light-bg);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Utility Classes */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Improved Product Carousel Styles */
.product-carousel, .carousel-images {
    width: 400px !important;
    height: 400px !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 4px 24px rgba(31, 78, 70, 0.13);
    background: linear-gradient(120deg, #e1f2ad 60%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(31, 78, 70, 0.2);
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(31, 78, 70, 0.15);
    backdrop-filter: blur(10px);
}

.carousel-arrow i {
    transition: transform 0.3s ease;
}

.carousel-arrow.left { 
    left: 15px; 
}

.carousel-arrow.right { 
    right: 15px; 
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(31, 78, 70, 0.35);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:hover i {
    transform: scale(1.2);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow:focus {
    outline: 3px solid rgba(31, 78, 70, 0.3);
    outline-offset: 2px;
}
.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.carousel-dots .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #cfd8dc;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(31,78,70,0.08);
}
.carousel-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.25);
}
@media (max-width: 768px) {
    .product-carousel, .carousel-images {
        height: 160px;
    }
}
@media (max-width: 480px) {
    .product-carousel, .carousel-images {
        height: 120px;
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-arrow.left {
        left: 8px;
    }
    
    .carousel-arrow.right {
        right: 8px;
    }
}

/* Lightbox overlay for product images (future JS support) */
.product-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 30, 20, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.product-lightbox-overlay.active {
    display: flex;
}
.product-lightbox-img {
    max-width: 96vw;
    max-height: 90vh;
    border-radius: 18px;
    box-shadow: 0 8px 48px rgba(31, 78, 70, 0.35);
    background: #fff;
    border: 3px solid #e1f2ad;
}
.product-lightbox-close {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.2s;
}
.product-lightbox-close:hover {
    color: #e1f2ad;
} 

.carousel-images {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.carousel-images img {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    object-position: center;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(31, 78, 70, 0.13);
    border: 2.5px solid #e1f2ad;
    transition: opacity 0.3s, transform 0.35s cubic-bezier(.4,2,.3,1), box-shadow 0.35s cubic-bezier(.4,2,.3,1);
    cursor: pointer;
    display: block;
    margin: 0 auto;
    opacity: 0;
    z-index: 1;
}
.carousel-images img.active {
    opacity: 1;
    z-index: 2;
}

.hero-logo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-logo-btn:hover .hero-logo-icon {
    transform: rotateY(360deg) !important;
    transition: transform 0.7s cubic-bezier(.4,2,.3,1);
    backface-visibility: hidden;
    will-change: transform;
}

/* More specific selector to override button transforms */
.hero-logo-btn.btn-primary:hover .hero-logo-icon,
.hero-logo-btn.btn:hover .hero-logo-icon {
    transform: rotateY(360deg) !important;
    transition: transform 0.7s cubic-bezier(.4,2,.3,1);
    backface-visibility: hidden;
    will-change: transform;
}

.hero-logo-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 0.5em;
    transition: transform 0.7s cubic-bezier(.4,2,.3,1);
    transform-origin: center;
}

.hero-logo-icon.rotate3dY {
    transform: rotateY(360deg);
    transition: transform 0.7s cubic-bezier(.4,2,.3,1);
    backface-visibility: hidden;
    will-change: transform;
}

/* Trusted Section */
.trusted-section {
    padding: 5rem 0 8rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
    position: relative;
}

.trusted-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.trusted-section .section-title {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    padding-left: 2rem;
}

.trusted-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 1rem 0 0 2rem;
    border-radius: 2px;
}

.trusted-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: left;
    max-width: 900px;
    margin: 0 2rem 3rem 2rem;
    font-weight: 500;
}

.trusted-features {
    list-style: none;
    max-width: 800px;
    margin: 0 2rem 0 2rem;
    padding: 0;
}

.trusted-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(31, 78, 70, 0.1);
    transition: all 0.3s ease;
}

.trusted-features li:last-child {
    border-bottom: none;
}

.trusted-features li:hover {
    transform: translateX(10px);
    color: var(--primary-color);
}

.trusted-features li i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    min-width: 24px;
    text-align: center;
}

/* Mobile Responsiveness for Trusted Section */
@media (max-width: 768px) {
    .trusted-section {
        padding: 3rem 0;
    }
    
    .trusted-section .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .trusted-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .trusted-features li {
        font-size: 1rem;
        padding: 0.8rem 0;
        gap: 0.8rem;
    }
    
    .trusted-features li i {
        font-size: 1.2rem;
        min-width: 20px;
    }
}

@media (max-width: 480px) {
    .trusted-section .section-title {
        font-size: 1.8rem;
    }
    
    .trusted-description {
        font-size: 1rem;
    }
    
    .trusted-features li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }
}

/* Urgency Section */
.urgency-section {
    display: none;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

.why-choose-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.why-choose-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-choose-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Bulk Benefits Section */
.bulk-benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.benefit-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(31, 78, 70, 0.1);
}

.benefit-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.benefit-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.benefit-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-header .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.benefit-header .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(31, 78, 70, 0.3);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

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

.benefit-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Distribution Process */
.distribution-process {
    padding: 5rem 0;
    background: white;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

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

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Distributor Form Section */
.distributor-form-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.distributor-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 232, 154, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.sidebar-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.sidebar-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.sidebar-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.sidebar-card .btn {
    margin-bottom: 0.8rem;
    display: block;
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Bulk Order Section */
.bulk-order-section {
    padding: 5rem 0;
    background: white;
}

.bulk-order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.bulk-order-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.bulk-order-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.bulk-order-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    color: var(--text-dark);
}

.bulk-order-info li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
}

.bulk-cta {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
}

.bulk-note {
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.bulk-order-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--secondary-color);
}

.bulk-order-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Success Stories */
.success-stories {
    padding: 5rem 0;
    background: var(--light-bg);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

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

.story-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
}

/* Responsive Design for Distributorship Page */
@media (max-width: 768px) {
    /* Hero Section Responsive */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .hero-contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    /* Benefits Section Responsive */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .distributor-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .bulk-order-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bulk-order-form {
        padding: 1.5rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .story-header i {
        font-size: 1.5rem;
    }
    
    .story-header h3 {
        font-size: 1.1rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .sidebar-card h3 {
        font-size: 1.1rem;
    }
    
    .bulk-order-info h3 {
        font-size: 1.3rem;
    }
    
    .bulk-order-info li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
    
    .bulk-cta {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section Responsive */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-contact-info {
        gap: 0.75rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    /* Benefits Section Responsive */
    .benefits-section {
        padding: 3rem 0;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
    }
    
    .distributor-form-section {
        padding: 3rem 0;
    }
    
    .form-container {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .distributor-form {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .bulk-order-section {
        padding: 3rem 0;
    }
    
    .bulk-order-content {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .bulk-order-form {
        padding: 1rem;
    }
    
    .bulk-order-form h3 {
        font-size: 1.1rem;
    }
    
    .bulk-order-info h3 {
        font-size: 1.2rem;
    }
    
    .bulk-order-info li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .bulk-cta {
        padding: 1rem;
    }
    
    .success-stories {
        padding: 3rem 0;
    }
    
    .stories-grid {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .story-card {
        padding: 1rem;
    }
    
    .story-header {
        margin-bottom: 1rem;
    }
    
    .story-header i {
        font-size: 1.2rem;
    }
    
    .story-header h3 {
        font-size: 1rem;
    }
    
    .sidebar-card {
        padding: 1rem;
    }
    
    .sidebar-card h3 {
        font-size: 1rem;
    }
    
    .sidebar-card li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
}

.story-header span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.story-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.story-stats span {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(31, 78, 70, 0.15);
}

/* Override for distributorship page - ensure these styles take precedence */
body.distributorship-page .story-stats span,
.distributorship-page .story-stats span {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Distribution Section for Homepage */
.distribution-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.distribution-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
}

.distribution-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

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

.opportunity-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(45, 90, 45, 0.1);
    border: 2px solid #e8f5e8;
    transition: all 0.3s ease;
    position: relative;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(45, 90, 45, 0.15);
    border-color: #4a7c4a;
}

.opportunity-card.featured {
    border-color: #2d5a2d;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.opportunity-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-bg);
}

.opportunity-card .card-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(31, 78, 70, 0.1);
}

.opportunity-card .card-header h4 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.opportunity-card .badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-left: auto;
    box-shadow: 0 2px 8px rgba(31, 78, 70, 0.15);
}

.opportunity-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.opportunity-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #333333;
    font-size: 1rem;
    line-height: 1.5;
}

.opportunity-card ul li i {
    color: #2d5a2d;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    min-width: 20px;
}

.opportunity-card ul li strong {
    color: #2d5a2d;
    font-weight: 600;
}

.opportunity-card .btn {
    width: 100%;
    text-align: center;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    cursor: pointer;
    margin-top: 1rem;
}

.opportunity-card .btn-primary {
    background: #2d5a2d;
    color: #ffffff;
    border-color: #2d5a2d;
    box-shadow: 0 4px 12px rgba(45, 90, 45, 0.3);
}

.opportunity-card .btn-primary:hover {
    background: #1e3d1e;
    border-color: #1e3d1e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 90, 45, 0.4);
}

.opportunity-card .btn-secondary {
    background: #4a7c4a;
    color: #ffffff;
    border-color: #4a7c4a;
    box-shadow: 0 4px 12px rgba(74, 124, 74, 0.3);
}

.opportunity-card .btn-secondary:hover {
    background: #3a623a;
    border-color: #3a623a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 124, 74, 0.4);
}

.opportunity-card .btn-outline {
    background: #ffffff;
    color: #4a7c4a;
    border-color: #4a7c4a;
    box-shadow: 0 4px 12px rgba(74, 124, 74, 0.2);
}

.opportunity-card .btn-outline:hover {
    background: #4a7c4a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 124, 74, 0.4);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #2d5a2d 0%, #4a7c4a 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(45, 90, 45, 0.2);
}

.urgency-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.urgency-banner p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e8f5e8;
    line-height: 1.6;
}

.urgency-banner .btn {
    background: #ffffff;
    color: #2d5a2d;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.urgency-banner .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.bulk-cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3d1e;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(45, 90, 45, 0.1);
}

.bulk-cta-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2d5a2d;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(45, 90, 45, 0.1);
}

.bulk-cta-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 500;
}

.bulk-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.bulk-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(45, 90, 45, 0.08);
    border-radius: 12px;
    border: 2px solid rgba(45, 90, 45, 0.15);
    transition: all 0.3s ease;
}

.bulk-feature:hover {
    background: rgba(45, 90, 45, 0.12);
    border-color: rgba(45, 90, 45, 0.25);
    transform: translateY(-2px);
}

.bulk-feature i {
    color: #2d5a2d;
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    font-weight: 600;
}

.bulk-feature span {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Bulk Order CTA Section */
.bulk-order-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #333333;
    margin-top: 3rem;
}

.bulk-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Mobile Responsiveness for Distribution Section */
@media (max-width: 768px) {
    .distribution-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .opportunity-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .opportunity-card {
        padding: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .hero-buttons .btn {
        min-width: 250px;
        padding: 1rem 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin: 2rem 0;
    }
    
    .cta-buttons .btn {
        min-width: 280px;
        padding: 1.3rem 2.5rem;
    }
    
    .bulk-cta-actions {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .bulk-cta-actions .btn {
        min-width: 280px;
        padding: 1.3rem 2.5rem;
    }
    
    .bulk-cta-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .bulk-cta-text h2 {
        font-size: 2.2rem;
    }
    
    .bulk-cta-text h3 {
        font-size: 1.4rem;
    }
    
    .bulk-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .opportunity-card .btn {
        padding: 1.3rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .distribution-section {
        padding: 3rem 0;
    }
    
    .distribution-section .section-title {
        font-size: 1.8rem;
    }
    
    .opportunity-card {
        padding: 1.5rem;
    }
    
    .card-header h4 {
        font-size: 1.3rem;
    }
    
    .hero-buttons .btn {
        min-width: 280px;
        padding: 1rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .cta-buttons .btn {
        min-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .bulk-cta-actions .btn {
        min-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .bulk-order-cta {
        padding: 3rem 0;
    }
    
    .bulk-cta-text h2 {
        font-size: 1.8rem;
    }
    
    .bulk-cta-text h3 {
        font-size: 1.2rem;
    }
    
    .bulk-cta-text p {
        font-size: 1rem;
    }
    
    .bulk-feature {
        padding: 0.8rem;
    }
    
    .bulk-feature span {
        font-size: 0.95rem;
    }
    
    .opportunity-card .btn {
        padding: 1.2rem 1.8rem;
        font-size: 1rem;
    }
}

/* Distribution Benefits Section */
/* Distribution Benefits Section - Moved to premium section below */

/* Benefit Card Buttons */
.benefit-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.benefit-card .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    margin-top: 1rem;
}

.benefit-card .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(31, 78, 70, 0.3);
}

.benefit-card .btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 78, 70, 0.4);
}

.benefit-card .btn-outline {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(31, 78, 70, 0.2);
}

.benefit-card .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 78, 70, 0.4);
}

/* ============================================
   SHOPPING CART SYSTEM
   ============================================ */

/* Navigation Cart Icon */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon-btn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.cart-icon-btn:hover {
    background: rgba(31, 78, 70, 0.1);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.cart-modal.active {
    right: 0;
}

.cart-modal-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.cart-header {
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.cart-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-cart-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.empty-cart p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(31, 78, 70, 0.1);
    transform: translateY(-2px);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.cart-item-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cart-item-meta span {
    padding: 0.2rem 0.5rem;
    background: white;
    border-radius: 4px;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border-radius: 8px;
    padding: 0.25rem;
    border: 1px solid var(--border-color);
}

.qty-btn {
    background: transparent;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

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

.qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-item-subtotal {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.remove-item-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

/* Cart Footer */
.cart-footer {
    padding: 1.5rem;
    background: var(--light-bg);
    border-top: 2px solid var(--border-color);
    position: sticky;
    bottom: 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.total-amount {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Cart Notifications */
.cart-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(31, 78, 70, 0.3);
    z-index: 10001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
    font-weight: 500;
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification-success {
    background: #28a745;
}

.cart-notification-error {
    background: #dc3545;
}

.cart-notification-info {
    background: #17a2b8;
}

/* Add to Cart Button */
.btn-add-to-cart {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.btn-add-to-cart:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 78, 70, 0.3);
}

.btn-add-to-cart:active {
    transform: translateY(0);
}

/* Mobile Responsiveness for Cart */
@media (max-width: 768px) {
    .cart-modal {
        max-width: 100%;
    }
    
    .cart-modal-content {
        max-width: 100%;
    }
    
    .cart-item {
        flex-wrap: wrap;
    }
    
    .cart-item-controls {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-actions {
        margin-left: 1rem;
        gap: 0.4rem;
    }
}

@media (max-width: 480px) {
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-details h4 {
        font-size: 0.9rem;
    }
    
    .cart-header h2 {
        font-size: 1.2rem;
    }
}

/* ============================================
   PREMIUM ANIMATED HERO SECTION
   ============================================ */

.premium-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3d35 0%, #1f4e46 30%, #2d7a6b 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.wood-grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    animation: woodGrainMove 20s linear infinite;
    opacity: 0.6;
}

@keyframes woodGrainMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(225, 242, 173, 0.3);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    width: 6px;
    height: 6px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px); opacity: 0.4; }
    75% { transform: translateY(-30px) translateX(-30px); opacity: 0.5; }
}

.premium-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.premium-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 160px);
}

.hero-text-section {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 15;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(225, 242, 173, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(225, 242, 173, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 500;
    animation: fadeIn 1.2s ease-out;
}

.badge-divider {
    opacity: 0.5;
}

.premium-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c8e0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.title-hindi {
    display: block;
    font-size: 2.5rem;
    margin-top: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.premium-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 1s both;
}

.premium-hero-description strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.premium-hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.premium-stat {
    text-align: left;
}

.premium-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: visible;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.premium-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.premium-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.4s both;
    position: relative;
    z-index: 20;
}

.btn-premium {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    z-index: 10;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-premium:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-premium {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c8e0a0 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(225, 242, 173, 0.2);
}

.btn-primary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 242, 173, 0.35);
}

.btn-primary-premium:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(225, 242, 173, 0.25);
}

.btn-secondary-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary-premium:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary-premium:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-premium span,
.btn-premium i {
    position: relative;
    z-index: 1;
}

.btn-premium i {
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: translateX(5px);
}

/* Animation Section */
.hero-animation-section {
    position: relative;
    height: 100%;
    min-height: 600px;
    z-index: 2;
}

.product-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.floating-product {
    position: absolute;
    animation: floatProduct 6s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.door-frame-float {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    z-index: 5;
}

.door-float {
    top: 50%;
    left: 50%;
    animation-delay: 1s;
    z-index: 10;
    position: absolute;
    isolation: isolate;
}

.window-frame-float {
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
    z-index: 5;
}

@keyframes floatProduct {
    0%, 100% {
        transform: translateY(0) translateX(0) rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotateY(5deg) rotateX(2deg);
    }
    50% {
        transform: translateY(-40px) translateX(-5px) rotateY(-5deg) rotateX(-2deg);
    }
    75% {
        transform: translateY(-20px) translateX(-15px) rotateY(3deg) rotateX(1deg);
    }
}

.door-float {
    animation: floatProductDoor 6s ease-in-out infinite;
}

@keyframes floatProductDoor {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0) translateX(0) rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: translate(-50%, -50%) translateY(-25px) translateX(15px) rotateY(8deg) rotateX(3deg);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-45px) translateX(-8px) rotateY(-8deg) rotateX(-3deg);
    }
    75% {
        transform: translate(-50%, -50%) translateY(-25px) translateX(-20px) rotateY(5deg) rotateX(2deg);
    }
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(225, 242, 173, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

.door-float .product-glow {
    z-index: 9;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.floating-product {
    will-change: transform;
    backface-visibility: hidden;
}

.floating-product .product-image {
    width: 200px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
    animation: productRotate 8s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.door-float .product-image {
    width: 280px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    z-index: 11;
}

@keyframes productRotate {
    0%, 100% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    25% {
        transform: rotateY(10deg) rotateX(5deg);
    }
    50% {
        transform: rotateY(0deg) rotateX(-5deg);
    }
    75% {
        transform: rotateY(-10deg) rotateX(5deg);
    }
}

.floating-product:hover .product-image {
    transform: scale(1.1) rotateY(15deg);
}

.product-label {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(31, 78, 70, 0.95);
    backdrop-filter: blur(15px);
    color: var(--secondary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    animation: fadeIn 1s ease-out 2s forwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 12;
    border: 1px solid rgba(225, 242, 173, 0.2);
}

.door-float .product-label {
    z-index: 12;
}

.wood-texture-element {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%231f4e46"/><path d="M0 0 L100 100 M100 0 L0 100" stroke="%232d7a6b" stroke-width="0.5" opacity="0.3"/></svg>');
    opacity: 0.1;
    border-radius: 50%;
    animation: rotateSlow 20s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { 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: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    animation: fadeIn 1s ease-out 2s both;
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.5;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Hide backup hero by default */
.hero-backup {
    display: none;
}

/* Responsive Design for Premium Hero */
@media (max-width: 1024px) {
    .premium-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-animation-section {
        min-height: 400px;
    }
    
    .premium-hero-title {
        font-size: 3rem;
    }
    
    .floating-product .product-image {
        width: 150px;
    }
    
    .door-float .product-image {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .premium-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .premium-hero-title {
        font-size: 2.2rem;
    }
    
    .title-hindi {
    font-size: 1.8rem;
    }
    
    .premium-hero-description {
        font-size: 1rem;
    }
    
    .premium-hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .premium-stat .stat-value {
        font-size: 2rem;
    }
    
    .floating-product .product-image {
        width: 120px;
    }
    
    .door-float .product-image {
        width: 150px;
    }
    
    .hero-animation-section {
        min-height: 300px;
    }
    
    .premium-hero-buttons {
        flex-direction: column;
    }
    
    .btn-premium {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .premium-hero-title {
        font-size: 1.8rem;
    }
    
    .title-hindi {
        font-size: 1.5rem;
    }
    
    .premium-hero-stats {
        flex-direction: row;
        gap: 1rem;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .premium-stat {
        flex: 1;
        min-width: 0;
    }
    
    .premium-stat .stat-value {
        font-size: 1.5rem;
    }
    
    .premium-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .floating-product {
        display: block;
    }
    
    .door-frame-float {
        top: 5%;
        left: 5%;
        z-index: 5;
    }
    
    .door-float {
        top: 50%;
        left: 50%;
        z-index: 10;
        position: absolute;
    }
    
    .window-frame-float {
        bottom: 10%;
        right: 5%;
        z-index: 5;
    }
    
    .floating-product .product-image {
        width: 100px;
    }
    
    .door-float .product-image {
        width: 130px;
    }
}

/* ============================================
   WEBSITE ENHANCEMENTS - PREMIUM DESIGN
   ============================================ */

/* Enhanced Product Cards */
.product-card {
    position: relative;
    overflow: visible;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 0.1;
}

/* Enhanced Feature Cards */
.feature-card {
    position: relative;
}

.feature-card .feature-icon {
    position: relative;
}

/* Enhanced Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn span,
.btn i {
    position: relative;
    z-index: 1;
}

/* Enhanced Sections */
.section-title {
    position: relative;
    padding-bottom: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced Navigation */
.navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-link {
    position: relative;
}

/* Enhanced Shadows */
.product-card,
.feature-card,
.opportunity-card {
    will-change: transform;
    backface-visibility: hidden;
}

/* Better Image Loading */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Enhanced Focus States */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Premium Spacing */
.container {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
}

/* Enhanced Animations Performance */
@media (prefers-reduced-motion: no-preference) {
    .floating-product,
    .product-card,
    .feature-card {
        will-change: transform;
    }
}

/* Loading States */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Better Text Rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Enhanced Product Showcase on Mobile */
@media (max-width: 768px) {
    .product-showcase {
        min-height: 400px;
    }
    
    .floating-product {
        animation-duration: 8s;
    }
}

/* ============================================
   MARKETING & CONVERSION ELEMENTS
   ============================================ */

/* Trust Banner */
.trust-banner {
    animation: slideDown 0.8s ease-out;
}

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

/* Offer Banner */
.offer-banner {
    position: relative;
    overflow: hidden;
    animation: slideDown 1s ease-out 0.3s both;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Testimonials */
.testimonials-section {
    position: relative;
}

.testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: var(--secondary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(31, 78, 70, 0.2);
}

.testimonial-rating i {
    margin-right: 2px;
}

/* Trust Badges */
.trust-badge-item {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 15px;
}

.trust-badge-item:hover {
    transform: translateY(-5px);
}

.trust-badge-item:hover > div:first-child {
    transform: scale(1.1) rotate(5deg);
}

/* Payment Success Notification */
.payment-success-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10002;
    max-width: 400px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.payment-success-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.payment-success-notification .success-content i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.payment-success-notification .success-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Window Frames Alert Modal */
.window-frames-alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.window-frames-alert-modal.show {
    opacity: 1;
    visibility: visible;
}

.window-frames-alert-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.window-frames-alert-modal.show .window-frames-alert-content {
    transform: scale(1);
}

.window-frames-alert-header {
    padding: 1.5rem 2rem;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.window-frames-alert-header h3 {
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.window-frames-alert-header h3 i {
    font-size: 1.5rem;
}

.window-frames-alert-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.window-frames-alert-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.window-frames-alert-body {
    padding: 2rem;
    text-align: center;
}

.window-frames-alert-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.window-frames-alert-body .alert-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.window-frames-alert-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.window-frames-alert-footer .btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.window-frames-alert-footer .btn-primary {
    background: var(--primary-color);
    color: white;
}

.window-frames-alert-footer .btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 78, 70, 0.3);
}

/* Responsive styles for Window Frames Alert */
@media (max-width: 768px) {
    .window-frames-alert-modal {
        padding: 1rem;
    }
    
    .window-frames-alert-content {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .window-frames-alert-header {
        padding: 1.25rem 1.5rem;
    }
    
    .window-frames-alert-header h3 {
        font-size: 1.1rem;
    }
    
    .window-frames-alert-body {
        padding: 1.5rem;
    }
    
    .window-frames-alert-body p {
        font-size: 1rem;
    }
    
    .window-frames-alert-body .alert-icon {
        font-size: 2.5rem;
    }
    
    .window-frames-alert-footer {
        padding: 1rem 1.5rem 1.5rem;
        flex-direction: column;
    }
    
    .window-frames-alert-footer .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

/* Order Modal */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-modal.show {
    opacity: 1;
}

.order-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.order-modal.show .order-modal-content {
    transform: scale(1);
}

.order-modal-header {
    padding: 2rem;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.order-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.order-modal-body {
    padding: 2rem;
}

.order-info-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.order-info-section:last-child {
    border-bottom: none;
}

.order-info-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.order-info-section p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.order-item-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.order-total {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.order-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-delivered {
    background: #d1ecf1;
    color: #0c5460;
}

.empty-orders {
    text-align: center;
    padding: 3rem;
}

.empty-orders i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Live Visitors Counter */
.live-visitors {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(31, 78, 70, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(31, 78, 70, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(31, 78, 70, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(31, 78, 70, 0.5);
    }
}

.live-visitors i {
    color: #ff6b6b;
    margin-right: 0.5rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Urgency Elements */
.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    animation: pulse 2s infinite;
}

/* Stock Indicator */
.stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.stock-indicator.in-stock {
    color: #28a745;
}

.stock-indicator.low-stock {
    color: #ffc107;
}

.stock-indicator.out-of-stock {
    color: #dc3545;
}

/* Social Proof Notifications - Removed fake notifications, keeping styles for real data if needed */

/* Responsive Marketing Elements */
@media (max-width: 768px) {
    .trust-banner > div {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offer-banner > div {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   All Screen Sizes - Merged from responsive.css
   ============================================ */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Desktop (1024px - 1399px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-banner > div {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet (768px - 1023px) - Enhanced Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 100px;
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Trust Badges */
    .trust-badges > div {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Forms */
    .contact-form-container,
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Checkout */
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Cart Modal */
    .cart-modal-content {
        width: 95%;
        max-width: 500px;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    /* Product Carousel */
    .product-carousel {
        height: 200px;
    }
    
    .carousel-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .carousel-arrow.left {
        left: 10px;
    }
    
    .carousel-arrow.right {
        right: 10px;
    }
}

/* Mobile (480px and below) - Enhanced Responsive */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-logo span {
        font-size: 1.1rem;
    }
    
    .nav-logo img {
        width: 30px;
        height: 30px;
    }
    
    /* Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Products */
    .product-card {
        padding: 1rem;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
    }
    
    .product-actions {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .product-actions .btn {
        flex: 1 1 auto;
        min-width: 80px;
        font-size: 0.8rem;
        padding: 0.55rem 0.7rem;
    }
    
    /* Product Carousel */
    .product-carousel {
        height: 180px;
    }
    
    .carousel-images img {
        object-fit: cover;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-arrow.left {
        left: 8px;
    }
    
    .carousel-arrow.right {
        right: 8px;
    }
    
    .carousel-dots {
        bottom: 8px;
    }
    
    .carousel-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Trust Badges */
    .trust-badges > div {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-badge-item {
        padding: 1rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-large {
        width: 100%;
        padding: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    /* Checkout */
    .checkout-details,
    .checkout-form-container {
        padding: 1.5rem;
    }
    
    .checkout-actions .btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.2rem;
    }
    
    .delivery-notice {
        font-size: 0.85rem;
        padding: 0.875rem;
    }
    
    /* Cart Modal */
    .cart-modal-content {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .cart-header {
        padding: 1.5rem;
    }
    
    .cart-body {
        padding: 1rem;
        max-height: calc(100vh - 200px);
        overflow-y: auto;
    }
    
    /* Premium Hero */
    .premium-hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .premium-hero-title {
        font-size: 1.8rem;
    }
    
    .premium-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-premium {
        width: 100%;
    }
    
    /* Trust Banner */
    .trust-banner > div {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 1rem;
    }
    
    .trust-item > div:first-child {
        font-size: 2rem;
    }
    
    /* Order Confirmation */
    .confirmation-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .order-info-section {
        padding: 1rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .product-card {
        padding: 0.75rem;
    }
    
    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Landscape Orientation on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding-top: 70px;
        padding-bottom: 2rem;
    }
    
    .premium-hero {
        padding-top: 70px;
        padding-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .carousel-arrow,
    .nav-link {
        min-height: 44px; /* Apple's recommended touch target size */
    }
    
    .carousel-arrow {
        min-width: 44px;
        min-height: 44px;
    }
    
    .cart-item-controls button,
    .qty-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-image img,
    .carousel-images img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cart-icon-btn,
    .carousel-arrow,
    .carousel-dots,
    .btn,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* ============================================
   DISTRIBUTORSHIP PAGE - PREMIUM ENHANCEMENTS
   ============================================ */

/* Distribution Benefits Section - Premium Styling */
body.distributorship-page .distribution-benefits-section,
.distributorship-page .distribution-benefits-section,
.distribution-benefits-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%) !important;
    color: var(--white) !important;
    padding: 4rem 0 !important;
    margin: 2rem 0 !important;
    position: relative;
    overflow: hidden;
}

.distribution-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.benefits-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.benefits-text {
    flex: 1;
}

.benefits-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.benefits-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.benefits-cta {
    flex-shrink: 0;
}

.benefits-cta .btn {
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.benefits-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Enhanced Benefit Cards - Distributorship Page */
body.distributorship-page .benefit-card,
.distributorship-page .benefit-card {
    position: relative;
    overflow: hidden;
}

body.distributorship-page .benefit-card::before,
.distributorship-page .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

body.distributorship-page .benefit-card:hover::before,
.distributorship-page .benefit-card:hover::before {
    transform: scaleX(1);
}

body.distributorship-page .benefit-card.featured::after,
.distributorship-page .benefit-card.featured::after {
    content: '⭐';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

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

/* Enhanced Story Cards - Distributorship Page Specific */
body.distributorship-page .story-card,
.distributorship-page .story-card {
    position: relative;
    border-left: 4px solid var(--secondary-color);
}

body.distributorship-page .story-card:hover,
.distributorship-page .story-card:hover {
    border-left-color: var(--primary-color);
}

body.distributorship-page .story-header i,
.distributorship-page .story-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

body.distributorship-page .story-stats,
.distributorship-page .story-stats {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

body.distributorship-page .story-stats span,
.distributorship-page .story-stats span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* Enhanced Form Container - Distributorship Page */
body.distributorship-page .form-container,
.distributorship-page .form-container {
    position: relative;
}

body.distributorship-page .distributor-form,
.distributorship-page .distributor-form {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%) !important;
    border: 2px solid var(--border-color) !important;
    position: relative;
}

body.distributorship-page .distributor-form::before,
.distributorship-page .distributor-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.distributorship-page .distributor-form:focus-within::before,
.distributorship-page .distributor-form:focus-within::before {
    opacity: 0.1;
}

/* Enhanced Bulk Order Section - Distributorship Page */
body.distributorship-page .bulk-order-content,
.distributorship-page .bulk-order-content {
    align-items: start !important;
}

body.distributorship-page .bulk-order-info,
.distributorship-page .bulk-order-info {
    position: sticky;
    top: 100px;
}

body.distributorship-page .bulk-order-info ul li,
.distributorship-page .bulk-order-info ul li {
    transition: all 0.3s ease;
    padding-left: 0.5rem;
}

body.distributorship-page .bulk-order-info ul li:hover,
.distributorship-page .bulk-order-info ul li:hover {
    background: var(--light-bg);
    padding-left: 1rem;
    border-radius: 8px;
}

/* Contact CTA Enhancement */
.contact-cta {
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

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

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

.cta-buttons .btn {
    min-width: 200px;
}

.cta-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* Responsive Design for Distributorship Page */
@media (max-width: 1024px) {
    .benefits-content {
        flex-direction: column;
        text-align: center;
    }
    
    .bulk-order-content {
        grid-template-columns: 1fr;
    }
    
    .bulk-order-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .distribution-benefits-section {
        padding: 3rem 0;
    }
    
    .benefits-text h3 {
        font-size: 1.5rem;
    }
    
    .benefits-text p {
        font-size: 1rem;
    }
    
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .distribution-benefits-section {
        padding: 2rem 0;
    }
    
    .benefits-text h3 {
        font-size: 1.3rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .distributor-form {
        padding: 1.5rem;
    }
}

/* Form Success/Error Messages */
.form-success-message,
.form-error-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.form-success-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-success-message i {
    font-size: 1.2rem;
    color: #28a745;
}

.form-error-message {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.form-error-message i {
    font-size: 1.2rem;
    color: #dc3545;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}