/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }

    .mobile-right-items {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .language-dropdown {
        margin: 0;
    }

    .language-dropdown .btn {
        padding: 5px 10px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        gap: 10px;
    }

    .nav-link {
        padding: 12px 20px;
    }

    .nav-link i {
        display: inline-block;
    }

    .desktop-language-dropdown {
        display: none;
    }

    .hero-content h1 {
        font-size: 3.2rem;
        line-height: 1.3;
        padding: 0 20px;
    }

    .hero-content h1 .highlight::before {
        height: 8px;
        bottom: 6px;
    }

    .hero-content h1 .organic::before {
        height: 8px;
        bottom: 6px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
        padding: 0 15px;
        line-height: 1.4;
    }

    .hero-content h1 .highlight {
        padding: 0 8px;
    }

    .hero-content h1 .highlight::before {
        height: 6px;
        bottom: 4px;
    }

    .hero-content h1 .organic::before {
        height: 6px;
        bottom: 4px;
    }

    .navbar-brand img {
        height: 35px;
    }

    .hero-buttons {
        padding: 0 15px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-text {
        font-size: 0.8rem;
    }

    @keyframes bounceUpDown {
        0%, 20%, 50%, 80%, 100% {
            transform: translate(-50%, 0);
        }
        40% {
            transform: translate(-50%, -15px);
        }
        60% {
            transform: translate(-50%, -8px);
        }
    }
}

/* Landscape Mobile Devices */
@media (max-height: 480px) and (orientation: landscape) {
    .hero-content {
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-content h1 .highlight::before {
        height: 4px;
        bottom: 3px;
    }

    .hero-content h1 .organic::before {
        height: 4px;
        bottom: 3px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* About Section Responsive Styles */
@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
    
    .section-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
    
    .image-grid {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .stats-container {
        margin-top: 2rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    .image-grid {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
    
    .image-grid {
        height: 250px;
    }
}

/* Factory Section Responsive Styles */
@media (max-width: 1200px) {
    .factory-section .section-title {
        font-size: 3.5rem;
    }
    
    .factory-description p {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 35px 20px;
    }
}

@media (max-width: 991px) {
    .factory-section {
        min-height: 700px;
    }
    
    .factory-content {
        padding: 100px 0;
    }
    
    .factory-section .section-title {
        font-size: 3rem;
    }
    
    .factory-separator {
        width: 120px;
        margin-bottom: 25px;
    }
    
    .factory-description {
        margin-bottom: 50px;
    }
    
    .feature-item {
        margin-bottom: 20px;
    }
    
    .feature-icon {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .factory-section {
        min-height: auto;
    }
    
    .factory-content {
        padding: 80px 0;
    }
    
    .factory-section .section-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .factory-section .section-title {
        font-size: 2.5rem;
    }
    
    .factory-separator {
        width: 100px;
        height: 4px;
    }
    
    .factory-separator::before {
        width: 12px;
        height: 12px;
    }
    
    .factory-description p {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 30px 20px;
        margin-bottom: 15px;
    }
    
    .btn-factory {
        padding: 12px 30px;
    }
}

@media (max-width: 576px) {
    .factory-content {
        padding: 60px 0;
    }
    
    .factory-section .section-title {
        font-size: 2rem;
    }
    
    .factory-description {
        margin-bottom: 40px;
    }
    
    .feature-item h3 {
        font-size: 1.3rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .factory-button {
        margin-top: 10px;
    }
}

/* Gallery Section Responsive Styles */
@media (max-width: 1200px) {
    .gallery-section {
        padding: 100px 0;
    }
    
    .gallery-intro {
        font-size: 1rem;
    }
    
    .gallery-item img {
        height: 280px;
    }

    .product-hero-wave {
        display: none;
    }
}

@media (max-width: 991px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .gallery-separator {
        width: 100px;
        margin: 15px auto 25px;
    }
    
    .gallery-filter {
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-item-wrapper {
        margin-bottom: 20px;
    }
    
    .gallery-item img {
        height: 260px;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 70px 0;
    }
    
    .gallery-filter {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        margin-bottom: 10px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .gallery-item img {
        height: 240px;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-header {
        margin-bottom: 30px;
    }
    
    .gallery-intro {
        font-size: 0.95rem;
    }
    
    .gallery-separator {
        width: 80px;
        height: 3px;
        margin: 15px auto 20px;
    }
    
    .gallery-separator::before {
        width: 8px;
        height: 8px;
    }
    
    .filter-btn {
        padding: 7px 12px;
        font-size: 0.8rem;
        margin-right: 5px;
        margin-bottom: 8px;
    }
    
    .gallery-column {
        padding: 10px;
    }
    
    .gallery-item-wrapper {
        margin-bottom: 15px;
    }
    
    .gallery-item img {
        height: 220px;
    }
}

/* Plant Extract Section Responsive Styles */
@media (max-width: 1200px) {
    .extract-section {
        padding: 100px 0;
    }
    
    .extract-title {
        font-size: 2rem;
    }
    
    .extract-title .percentage {
        font-size: 3rem;
    }
    
    .extract-description p {
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .extract-section {
        padding: 80px 0;
    }
    
   

@media (max-width: 767px) {
    .extract-section {
        padding: 70px 0;
    }
    
   
    
    .extract-description p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .extract-section {
        padding: 60px 0;
    }
    
    
    
    .extract-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
} 
}

/* Partners Section Responsive Styles */
@media (max-width: 1200px) {
    .partners-section {
        padding: 70px 0;
    }
    
    .partners-section .section-title {
        font-size: 2.2rem;
    }
    
    .partner-slide {
        width: 220px;
        padding: 0 25px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-220px * 6));
        }
    }
}

@media (max-width: 991px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-section .section-title {
        font-size: 2rem;
    }
    
    .partner-slide {
        width: 200px;
        padding: 0 20px;
    }
    
    .partner-slide img {
        max-height: 70px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 6));
        }
    }
}

@media (max-width: 767px) {
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-section .section-title {
        font-size: 1.8rem;
    }
    
    .partner-slide {
        width: 180px;
        padding: 0 15px;
    }
    
    .partner-slide img {
        max-height: 60px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 6));
        }
    }
}

@media (max-width: 576px) {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-section .section-subtitle {
        font-size: 0.9rem;
    }
    
    .partners-section .section-title {
        font-size: 1.6rem;
    }
    
    .partner-slide {
        width: 160px;
        padding: 0 10px;
    }
    
    .partner-slide img {
        max-height: 50px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-160px * 6));
        }
    }
    
    .partner-slider::before, 
    .partner-slider::after {
        width: 80px;
    }
}

/* Contact Section Responsive Styles */
@media (max-width: 1200px) {
    .contact-content {
        padding: 70px 40px;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .info-item h3 {
        font-size: 1.3rem;
    }
    
    .info-item p {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .map-container {
        min-height: 400px;
    }
    
    .contact-content {
        padding: 60px 30px;
        min-height: auto;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-title:after {
        width: 60px;
        height: 3px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .btn-submit {
        padding: 12px 30px;
    }

    .map-control {
        top: 10px;
        right: 10px;
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .contact-content {
        padding: 50px 25px;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .form-control {
        padding: 12px 15px;
    }

    .contact-section .col-lg-5,
    .contact-section .col-lg-7 {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .map-container {
        min-height: 300px;
    }
    
    .contact-content {
        padding: 40px 20px;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-title:after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }
    
    .info-item h3 {
        font-size: 1.2rem;
    }
    
    .info-item p {
        font-size: 0.95rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .form-check-label {
        font-size: 0.8rem;
    }
    
    .btn-submit {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .map-control button {
        width: 35px;
        height: 35px;
    }
    
    .footer-section {
        padding: 15px 0;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}