/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #2D2D2D;
    background-color: #FAF8F5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header - Dark Charcoal Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #3D3D3D;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-accent {
    display: none;
}

.logo-text {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-weight: 500;
    color: #fff;
    position: relative;
}

.language-selector i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-selector.active i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    margin-top: 10px;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
}

.lang-option {
    display: block;
    padding: 8px 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #2D2D2D;
    transition: all 0.3s ease;
}

.lang-option:hover {
    background: #F5F3F0;
    color: #8B7355;
}

.lang-option.active {
    color: #8B7355;
    font-weight: 600;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #3D3D3D;
    padding: 30px 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    text-align: center;
}

.mobile-menu li {
    margin: 15px 0;
}

.mobile-menu a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

.mobile-menu a:hover {
    color: #C9B8A3;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    z-index: 2;
    background: rgba(250, 248, 245, 0.95);
    padding: 35px 45px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 450px;
}

.slide-content.position-left-top {
    top: 60px;
    left: 40px;
}

.slide-content.position-right-top {
    top: 60px;
    right: 40px;
    text-align: right;
}

.slide-content.position-right-top .slide-label {
    padding-left: 0;
    padding-right: 80px;
}

.slide-content.position-right-top .slide-label::before {
    left: auto;
    right: 0;
}

.slide-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #8B7355;
    margin-bottom: 15px;
    position: relative;
    padding-left: 80px;
}

.slide-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 1px;
    background: #C9B8A3;
}

.slide-title {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.3;
    color: #2D2D2D;
    letter-spacing: 1px;
}

.slide-title span {
    color: #8B7355;
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 10;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 184, 163, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #8B7355;
}

.hero-arrows {
    display: flex;
    gap: 10px;
}

.arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #8B7355;
    background: rgba(250, 248, 245, 0.9);
    color: #8B7355;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arrow:hover {
    background: #8B7355;
    color: #fff;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #FAF8F5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image img {
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.section-title.center {
    text-align: center;
}

.title-dark {
    color: #2D2D2D;
}

.title-light {
    color: #A09080;
    font-weight: 300;
}

.about-text p {
    color: #5A5A5A;
    font-size: 16px;
    line-height: 1.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #E5DED5;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 56px;
    font-weight: 300;
    color: #8B7355;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    font-weight: 500;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #F0EBE5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: default;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.product-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #3D3D3D;
    padding: 20px 25px;
    z-index: 2;
}

.product-header h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 1px;
}

.product-image {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #FAF8F5;
}

.section-subtitle {
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    color: #8B7355;
    margin-top: 10px;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #E8E0D5;
}

.process .section-subtitle {
    text-align: left;
    margin-bottom: 20px;
    color: #6B5A48;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 1px solid #8B7355;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    color: #8B7355;
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #8B7355;
    color: #fff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: #8B7355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    color: #fff;
    font-size: 26px;
}

.step-number {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #F0EBE5;
    color: #8B7355;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 15px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.step-content p {
    color: #5A5A5A;
    font-size: 15px;
    line-height: 1.8;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: #FAF8F5;
}

.partners-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.partners-title {
    font-size: 28px;
    font-weight: 500;
    color: #2D2D2D;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.partners-title.center {
    text-align: center;
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.partners-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #fff;
    border-radius: 4px;
    min-height: 80px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.partner-logo img {
    max-height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

.partner-text {
    font-size: 15px;
    font-weight: 600;
    color: #8B7355;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #F0EBE5;
}

.testimonials-slider {
    position: relative;
    display: flex;
    gap: 30px;
    margin-top: 60px;
    overflow: hidden;
}

.testimonial-slide {
    min-width: 100%;
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: #fff;
    padding: 45px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.testimonial-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4A4A4A;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: #2D2D2D;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.testimonial-author span {
    font-size: 13px;
    color: #8B7355;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

/* Footer */
.footer {
    background: #3D3D3D;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 3px;
}

.footer-logo span {
    font-weight: 300;
    color: #C9B8A3;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #C9B8A3;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #C9B8A3;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom strong {
    color: #C9B8A3;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #8B7355;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #6B5A48;
}

/* Product Page Styles */
.product-page {
    padding: 120px 0 100px;
    margin-top: 70px;
    background: #FAF8F5;
}

.product-page-title {
    font-size: 48px;
    font-weight: 500;
    color: #2D2D2D;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.product-page-description {
    font-size: 17px;
    line-height: 1.9;
    color: #5A5A5A;
    margin-bottom: 60px;
    max-width: 900px;
}

.product-page-description strong {
    color: #2D2D2D;
    font-style: italic;
}

.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.product-category-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-category-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #3D3D3D;
    padding: 20px 25px;
    z-index: 2;
}

.product-category-header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 1px;
}

.product-category-image {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
}

.product-category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-category-card:hover .product-category-image img {
    transform: scale(1.05);
}

/* Product Detail Page Styles */
.product-detail-page {
    padding: 40px 0 100px;
    margin-top: 70px;
    background: #FAF8F5;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 13px;
}

.breadcrumb a {
    color: #8B7355;
}

.breadcrumb a:hover {
    color: #6B5A48;
}

.breadcrumb span {
    color: #A09080;
}

.product-detail-title {
    font-size: 48px;
    font-weight: 500;
    color: #2D2D2D;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.product-detail-description {
    font-size: 17px;
    line-height: 1.9;
    color: #5A5A5A;
    margin-bottom: 60px;
    max-width: 900px;
}

.product-detail-description strong {
    color: #2D2D2D;
}

.product-detail-description em {
    color: #8B7355;
    font-style: normal;
    font-weight: 600;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item-large {
    grid-column: span 3;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-item-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-item-small {
    border-radius: 4px;
    overflow: hidden;
}

.gallery-item-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-small:hover img {
    transform: scale(1.03);
}

.product-features {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 60px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
}

.product-features h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.product-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #4A4A4A;
}

.product-features li i {
    color: #8B7355;
    font-size: 16px;
}

.cta-section {
    background: linear-gradient(135deg, #3D3D3D 0%, #5A5A5A 100%);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
}

.cta-section h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #C9B8A3;
    color: #2D2D2D;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #fff;
    color: #2D2D2D;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partners-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .product-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item-large {
        grid-column: span 2;
    }
    
    .product-features ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    
    .logo-text {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .stat-label {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 22px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-nav {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
        bottom: 30px;
    }
    
    .slide-content {
        padding: 25px 30px;
        max-width: 90%;
        left: 5% !important;
        right: 5% !important;
        top: 40px !important;
    }
    
    .slide-content.position-right-top {
        text-align: left;
    }
    
    .slide-content.position-right-top .slide-label {
        padding-left: 80px;
        padding-right: 0;
    }
    
    .slide-content.position-right-top .slide-label::before {
        left: 0;
        right: auto;
    }
    
    .slide-title {
        font-size: 24px;
    }
    
    .slide-label {
        font-size: 10px;
        letter-spacing: 2px;
        padding-left: 60px;
    }
    
    .slide-label::before {
        width: 45px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .partners-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partner-logo {
        padding: 15px;
        min-height: 60px;
    }
    
    .partner-text {
        font-size: 13px;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .testimonial-content p {
        font-size: 15px;
    }
    
    .about,
    .products,
    .gallery,
    .process,
    .partners,
    .testimonials {
        padding: 60px 0;
    }
    
    .product-page,
    .product-detail-page {
        padding: 80px 0 60px;
    }
    
    .product-page-title,
    .product-detail-title {
        font-size: 36px;
    }
    
    .product-page-description,
    .product-detail-description {
        font-size: 15px;
    }
    
    .cta-section {
        padding: 40px 30px;
    }
    
    .cta-section h3 {
        font-size: 24px;
    }
    
    .product-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .product-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large {
        grid-column: span 1;
    }
    
    .gallery-item-large img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .current-lang {
        font-size: 12px;
    }
    
    .menu-toggle span {
        width: 22px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .hero {
        min-height: 450px;
        margin-top: 60px;
    }
    
    .slide-content {
        padding: 20px 25px;
        top: 30px !important;
    }
    
    .slide-title {
        font-size: 20px;
    }
    
    .slide-label {
        font-size: 9px;
        padding-left: 50px;
        margin-bottom: 10px;
    }
    
    .slide-label::before {
        width: 35px;
    }
    
    .hero-nav {
        bottom: 20px;
    }
    
    .arrow {
        width: 40px;
        height: 40px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .partners-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .partner-logo {
        padding: 12px;
        min-height: 50px;
    }
    
    .partner-text {
        font-size: 11px;
    }
    
    .footer-logo {
        font-size: 28px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 13px;
    }
    
    .footer-links a,
    .footer-contact p {
        font-size: 13px;
    }
    
    .about,
    .products,
    .gallery,
    .process,
    .partners,
    .testimonials {
        padding: 50px 0;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .btn-outline {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .product-page-title,
    .product-detail-title {
        font-size: 28px;
    }
    
    .product-header h3 {
        font-size: 16px;
    }
    
    .product-category-header h3 {
        font-size: 18px;
    }
    
    .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
    }
    
    .product-features {
        padding: 25px;
    }
    
    .product-features h3 {
        font-size: 18px;
    }
    
    .product-features li {
        font-size: 14px;
    }
    
    .cta-section {
        padding: 30px 20px;
        border-radius: 4px;
    }
    
    .cta-section h3 {
        font-size: 20px;
    }
    
    .cta-section p {
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 14px 30px;
        font-size: 13px;
    }
    
    .scroll-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }
    
    .mobile-menu {
        top: 60px;
        padding: 20px 15px;
    }
    
    .mobile-menu a {
        font-size: 16px;
    }
    
    .testimonial-content {
        padding: 25px;
    }
    
    .testimonial-content p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .testimonial-author strong {
        font-size: 14px;
    }
    
    .testimonial-author span {
        font-size: 12px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .gallery-item-small img {
        height: 150px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    color: #fff;
}

/* Extra small devices */
@media (max-width: 360px) {
    .logo-text {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .slide-title {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .product-page-title,
    .product-detail-title {
        font-size: 24px;
    }
}
