/* 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: 10px 20px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    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);
}

/* 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(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.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;
}

.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 120px;
    min-width: 120px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
}

@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: 98vw;
        height: 98vw;
        max-width: 98vw;
        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-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;
    }
    
    .stat-number {
        font-size: 1.6rem;
        white-space: nowrap;
        overflow: visible;
    }
    
    .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(31, 78, 70, 0.18);
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(31,78,70,0.08);
}
.carousel-arrow.left { left: 10px; }
.carousel-arrow.right { right: 10px; }
.carousel-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 16px rgba(31,78,70,0.18);
}
.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: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}

/* 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);
}

/* 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 {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
    color: var(--text-dark);
    padding: 3rem 0;
    margin: 2rem 0;
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: space-between;
}

.benefits-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.benefits-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.benefits-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Mobile Responsiveness for Distribution Benefits */
@media (max-width: 768px) {
    .benefits-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .benefits-text h3 {
        font-size: 1.5rem;
    }
    
    .benefits-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .distribution-benefits-section {
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .benefits-text h3 {
        font-size: 1.3rem;
    }
    
    .benefits-text p {
        font-size: 0.95rem;
    }
}

/* 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);
}