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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #555;
    background-color: #f5f3f0;
    /* Prevent horizontal scrolling on mobile */
    overflow-x: hidden;
    /* Improve text rendering on mobile */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

/* Prevent horizontal overflow */
html {
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: #f5f3f0;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(160, 149, 107, 0.2);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

.logo-image {
    width: auto;
    max-width: 80px;
    object-fit: stretch;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: #a0956b;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.nav-logo span {
    color: #777;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

.nav-link {
    color: #777;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: #a0956b;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #a0956b;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #a0956b;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

/* Hide mobile-only elements on desktop */
.mobile-menu-close {
    display: none;
}

/* Hero Carousel Section */
.hero-carousel {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide:nth-child(1) {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('images/Cold store shot.webp');
    background-size: cover;
    background-position: center;
}

.carousel-slide:nth-child(2) {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('images/cs 2.webp');
    background-size: cover;
    background-position: center;
}

.carousel-slide:nth-child(3) {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('images/mahua closeup.webp');
    background-size: cover;
    background-position: center;
}

.carousel-slide:nth-child(4) {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('images/Mahua Pic.webp');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.6);
    padding: 3rem;
    border-radius: 8px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(160, 149, 107, 0.3);
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.cta-button {
    display: inline-block;
    background-color: #d4af37;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-button:hover {
    background-color: transparent;
    color: #d4af37;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.carousel-btn {
    background-color: rgba(212, 175, 55, 0.8);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: #d4af37;
    transform: scale(1.1);
}

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

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(160, 149, 107, 0.6);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background-color: #a0956b;
    border-color: #a0956b;
    transform: scale(1.2);
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: #ffffff;
}

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

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #a0956b;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.2;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    border: 2px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: #f5f3f0;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #a0956b;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.2;
}

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

.service-card {
    background-color: #ffffff;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(160, 149, 107, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:nth-child(1)::before {
    background-image: url('https://images.unsplash.com/photo-1518977676601-b53f82aba655?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card:nth-child(2)::before {
    background-image: url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card:nth-child(3)::before {
    background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card:nth-child(4)::before {
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    border-color: #a0956b;
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card:hover::before {
    opacity: 0.2;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    color: #a0956b;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* Vision Section */
.vision {
    padding: 120px 0;
    background-color: #ffffff;
    text-align: center;
}

.vision h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #a0956b;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.2;
}

.vision p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Values Section */
.values {
    padding: 120px 0;
    background-color: #f5f3f0;
}

.values h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #a0956b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.2;
}

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

.value-card {
    background-color: #ffffff;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(160, 149, 107, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-card:hover {
    border-color: #a0956b;
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    color: #a0956b;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.value-card p {
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* Service Overview */
.service-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-highlight {
    background-color: #ffffff;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(160, 149, 107, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-highlight h3 {
    font-family: 'Playfair Display', serif;
    color: #a0956b;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.service-highlight p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Commodities Section */
.commodities-section {
    margin-bottom: 4rem;
}

.commodities-section h3 {
    font-family: 'Playfair Display', serif;
    color: #a0956b;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.commodities-table {
    background-color: #ffffff;
    border: 1px solid rgba(160, 149, 107, 0.2);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.commodity-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    border-bottom: 1px solid rgba(160, 149, 107, 0.15);
}

.commodity-row:last-child {
    border-bottom: none;
}

.commodity-row.header {
    background-color: #f5f3f0;
}

.commodity-row.header .commodity-name,
.commodity-row.header .commodity-time {
    font-weight: 500;
    color: #a0956b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
}

.commodity-name,
.commodity-time {
    padding: 1.2rem;
    color: #666;
    border-right: 1px solid rgba(160, 149, 107, 0.15);
    font-weight: 300;
}

.commodity-time {
    border-right: none;
    text-align: center;
    font-weight: 600;
}

/* Value Added Services */
.value-added-services {
    margin-top: 4rem;
}

.value-added-services h3 {
    font-family: 'Playfair Display', serif;
    color: #a0956b;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.value-added-services .service-card h4 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 120px 0;
    background-color: #ffffff;
}

.features h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #a0956b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.2;
}

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

.feature-item {
    text-align: center;
    padding: 2.5rem;
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    color: #a0956b;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.feature-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background-color: #f5f3f0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #a0956b;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-section p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: #ffffff;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #a0956b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.2;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    text-align: center;
}

.contact-item h4 {
    color: #a0956b;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* Footer */
.footer {
    background-color: #333;
    padding: 40px 0 20px;
    border-top: 2px solid #d4af37;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-logo p {
    color: #ccc;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .about-content {
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 2rem 0;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    /* Fix layout issues */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

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

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

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

    .service-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Commodities table mobile fix */
    .commodities-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .commodity-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .commodity-name,
    .commodity-time {
        border-right: none;
        border-bottom: 1px solid rgba(160, 149, 107, 0.15);
        padding: 0.8rem;
    }

    .commodity-time {
        border-bottom: none;
        font-weight: 600;
        color: #a0956b;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        text-align: center;
        padding: 0.5rem 0;
        margin: 0.5rem 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        border-radius: 5px;
        margin: 0 2rem;
    }

    .nav-link:hover {
        color: #d4af37;
        border-color: #d4af37;
        background-color: rgba(212, 175, 55, 0.1);
    }

    .nav-link.active::after {
        display: none;
    }

    /* Mobile menu close button */
    .mobile-menu-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        display: block;
    }

    .close-btn {
        background: none;
        border: none;
        color: #d4af37;
        font-size: 2rem;
        cursor: pointer;
        padding: 0.5rem;
        line-height: 1;
        transition: all 0.3s ease;
        min-height: 44px;
        min-width: 44px;
    }

    .close-btn:hover {
        color: #333;
        transform: rotate(90deg);
    }

    /* Hero Section */
    .hero-content h1,
    .mahua-hero .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p,
    .mahua-hero .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

.cta-button {
    display: inline-block;
    background-color: #a0956b;
    color: #fff;
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid #a0956b;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: transparent;
    color: #a0956b;
    box-shadow: 0 6px 25px rgba(160, 149, 107, 0.3);
    transform: translateY(-3px);
}

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

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

    /* Image Placeholder */
    .image-placeholder {
        width: 100%;
        height: 250px;
    }
}

/* Mahua Export Page Styles */
.mahua-hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('images/Mahua Pic.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.mahua-hero .hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.mahua-hero .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.mahua-hero .hero-content p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.mahua-hero .cta-button {
    display: inline-block;
    background-color: #d4af37;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.mahua-hero .cta-button:hover {
    background-color: transparent;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.mahua-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.mahua-image {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('images/mahua closeup.webp');
    background-size: cover;
    background-position: center;
    border-color: #d4af37;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #d4af37;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-item h4 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.product-specs span {
    background-color: #f8f9fa;
    color: #d4af37;
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.quality-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.booking-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-section > .container > p {
    color: #666;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.booking-form {
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    color: #333;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

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

.booking-info {
    background-color: #ffffff;
    padding: 3rem;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-info h3 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    margin-bottom: 3rem;
}

.benefits-list li {
    color: #666;
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-direct {
    background-color: #f8f9fa;
    padding: 2rem;
    border: 1px solid #e0e0e0;
}

.contact-direct h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-direct p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Export Process Section */
.export-process {
    padding: 80px 0;
    background-color: #ffffff;
}

.export-process h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .nav-container {
        padding: 0 15px;
    }

    .logo-image {
        max-width: 60px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .nav-logo span {
        font-size: 0.8rem;
    }

    /* Hero Section - Critical fixes */
    .hero-carousel {
        height: 100vh;
        min-height: 600px;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        max-width: calc(100vw - 2rem);
        box-sizing: border-box;
    }

    .hero-content h1,
    .mahua-hero .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-content p,
    .mahua-hero .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-height: 48px;
        min-width: 120px;
        display: inline-block;
        text-align: center;
        white-space: nowrap;
    }

    /* Sections */
    .about,
    .services,
    .features,
    .booking-section,
    .export-process {
        padding: 60px 0;
    }

    .about h2,
    .services h2,
    .features h2,
    .booking-section h2,
    .export-process h2,
    .quality-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Service Cards */
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    /* Mahua Stats */
    .mahua-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item h4 {
        font-size: 1.3rem;
    }

    /* Booking Section */
    .booking-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-form,
    .booking-info {
        padding: 1.5rem;
    }

    .booking-form h3,
    .booking-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        gap: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
        min-height: 44px; /* Touch target size */
    }

    .form-group textarea {
        min-height: 80px;
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-logo h3 {
        font-size: 1.3rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Extra Small Phones */
@media (max-width: 320px) {
    .hero-content h1,
    .mahua-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .about h2,
    .services h2,
    .features h2,
    .booking-section h2,
    .export-process h2,
    .quality-section h2 {
        font-size: 1.8rem;
    }

    .service-card,
    .booking-form,
    .booking-info {
        padding: 1rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .step {
        padding: 1rem;
    }
}

/* Mobile-specific enhancements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-link,
    .cta-button,
    .form-group input,
    .form-group select,
    .form-group textarea,
    .carousel-btn,
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better spacing for mobile */
    .about-text p,
    .service-card p,
    .feature-item p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Optimize images for mobile */
    .image-placeholder {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 200px;
    }

    /* Better form layout */
    .quote-form {
        gap: 1.2rem;
    }

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    /* Carousel adjustments */
    .carousel-nav {
        padding: 0 1rem;
    }

.carousel-btn {
    background-color: rgba(160, 149, 107, 0.8);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background-color: #a0956b;
    transform: scale(1.1);
}

    .product-specs span {
        padding: 0.2rem 0.6rem;
        font-size: 0.8rem;
    }

    /* Benefits list mobile */
    .benefits-list li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }

    /* Contact direct mobile */
    .contact-direct {
        padding: 1.5rem;
    }

    .contact-direct h4 {
        font-size: 1.1rem;
    }

    .contact-direct p {
        font-size: 0.9rem;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .service-card:hover {
        transform: none;
    }

    .carousel-btn:hover {
        transform: none;
    }

    .indicator:hover {
        transform: none;
    }

    /* Optimize background images for mobile */
    .carousel-slide,
    .mahua-hero,
    .service-card::before {
        background-attachment: scroll; /* Better performance than fixed */
    }

    /* Improve scrolling performance */
    * {
        -webkit-overflow-scrolling: touch;
    }

    /* Better text rendering on mobile */
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-rendering: optimizeLegibility;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .mahua-hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero-content h1,
    .mahua-hero .hero-content h1 {
        font-size: 2.2rem;
    }

    .nav-menu {
        padding: 1rem 0;
    }

    .nav-menu li {
        padding: 0.5rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .image-placeholder,
    .service-card::before {
        background-size: cover;
        background-position: center;
    }
}
