* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}


/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
}

.ergo {
    color: #83AB46;
}

.edge {
    color: #1B361F;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.hamburger:hover span {
    background: #83AB46;
}

.hamburger:focus {
    outline: 2px solid #83AB46;
    outline-offset: 2px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
}

.nav.active {
    right: 0;
}

.nav * {
    pointer-events: auto;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.nav-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.nav-tools {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-tools input,
.nav-tools select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.nav-tools .search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.nav-tools .search-icon:hover {
    color: #83AB46;
}

.nav-menu {
    list-style: none;
    padding: 0;
}

.nav-menu > li {
    border-bottom: 1px solid #f0f0f0;
}

.nav-menu a,
.dropdown-toggle,
.submenu-toggle {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-menu a:hover,
.dropdown-toggle:hover,
.submenu-toggle:hover {
    background: #f8f9fa;
    color: #83AB46;
}

.nav-menu a:focus,
.dropdown-toggle:focus,
.submenu-toggle:focus {
    outline: 2px solid #83AB46;
    outline-offset: -2px;
}

.dropdown-toggle::after,
.submenu-toggle::after {
    content: '▼';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-toggle::after,
.submenu.active .submenu-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu,
.submenu-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
    border-left: 3px solid #83AB46;
}

.dropdown.active .dropdown-menu,
.submenu.active .submenu-items {
    max-height: 500px;
}

.dropdown-menu a,
.submenu-items a {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(131, 171, 70, 0.1);
}

.submenu-items a {
    padding-left: 2.5rem;
    font-size: 0.85rem;
    background: rgba(131, 171, 70, 0.05);
}

.dropdown-menu a:hover,
.submenu-items a:hover {
    background: rgba(131, 171, 70, 0.1);
    padding-left: 2.2rem;
}

.submenu-items a:hover {
    padding-left: 2.7rem;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1500;
    pointer-events: none;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.brand-section {
    padding-right: 2rem;
}

.footer-logo .logo-img {
    height: 150px;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: #83AB46;
    margin-bottom: 0.5rem;
}

.company-info {
    color: black;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #83AB46;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background: #6d8f3a;
}

.footer-section h4 {
    color: #83AB46;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #83AB46;
}

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

@media (max-width: 768px) {
    .enhanced-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-logo .logo-img {
        height: 100px;
    }
    
    .tagline {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        width: 100vw;
        right: -100vw;
    }
    
    .carousel {
        height: 250px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .brand-section {
        padding-right: 0;
    }
    
    .social-links {
        justify-content: center;
    }
}

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

/* Carousel */
.carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}



.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.slide:hover img {
    filter: brightness(0.8);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 54, 31, 0.4) 0%, rgba(131, 171, 70, 0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
    animation: slideInUp 1s ease-out 0.3s both;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.6s both;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
}
/* Categories Carousel Section */
.categories-carousel {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.carousel-header h2 {
    font-size: 2.5rem;
    color: #1B361F;
    margin-bottom: 1rem;
    font-weight: 700;
}

.carousel-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.categories-slider {
    overflow: hidden;
    margin-bottom: 3rem;
}

.categories-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 2rem;
}

.category-item {
    flex: 0 0 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

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

.category-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 1rem;
}

.category-item h3 {
    padding: 1rem;
    font-size: 1rem;
    color: #1B361F;
    text-align: center;
    margin: 0;
    font-weight: 600;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.categories-track:hover {
    animation-play-state: paused;
}

.carousel-cta {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #83AB46 0%, #6d8f3a 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(131, 171, 70, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 171, 70, 0.4);
    background: linear-gradient(135deg, #6d8f3a 0%, #83AB46 100%);
}

@media (max-width: 768px) {
    .categories-carousel {
        padding: 3rem 0;
    }
    
    .carousel-header h2 {
        font-size: 2rem;
    }
    
    .carousel-header p {
        font-size: 1rem;
    }
    
    .category-item {
        flex: 0 0 200px;
    }
    
    .category-item img {
        height: 150px;
    }
    
    .view-all-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Why Choose ErgoEdge Section */
.why-choose-ergoedge {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-ergoedge .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-ergoedge .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.why-choose-ergoedge .section-header p {
    font-size: 1.1rem;
    color: #666;
}

.value-propositions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #83AB46 0%, #1B361F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

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

/* Customer Success Stories Section */
.customer-success-stories {
    padding: 80px 0;
    background: white;
}

.customer-success-stories .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.customer-success-stories .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.customer-success-stories .section-header p {
    font-size: 1.1rem;
    color: #666;
}

.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.story-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    border-left: 4px solid #83AB46;
}

.story-content {
    position: relative;
}

.story-text h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.story-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.story-author strong {
    color: #333;
    display: block;
}

.story-author span {
    color: #888;
    font-size: 0.9rem;
}

.story-category {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #83AB46;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Ergonomic Benefits Section */
.ergonomic-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #83AB46 0%, #1B361F 100%);
    color: white;
}

.ergonomic-benefits .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ergonomic-benefits .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ergonomic-benefits .section-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Industry Applications Section */
.industry-applications {
    padding: 80px 0;
    background: #f8f9fa;
}

.industry-applications .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.industry-applications .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.industry-applications .section-header p {
    font-size: 1.1rem;
    color: #666;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.application-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.application-image {
    height: 200px;
    overflow: hidden;
}

.application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.application-item:hover .application-image img {
    transform: scale(1.05);
}

.application-content {
    padding: 25px;
}

.application-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

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

/* Quick Stats Section */
.quick-stats {
    padding: 80px 0;
    background: white;
}

.quick-stats .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.quick-stats .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.quick-stats .section-header p {
    font-size: 1.1rem;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #83AB46;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

/* Installation Support Section */
.installation-support {
    padding: 80px 0;
    background: #f8f9fa;
}

.installation-support .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.installation-support .section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.installation-support .section-header p {
    font-size: 1.1rem;
    color: #666;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #83AB46 0%, #1B361F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-icon i {
    font-size: 2rem;
    color: white;
}

.support-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

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

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .why-choose-ergoedge,
    .customer-success-stories,
    .ergonomic-benefits,
    .industry-applications,
    .quick-stats,
    .installation-support {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem !important;
    }
    
    .value-propositions,
    .benefits-grid,
    .support-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .success-stories,
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #83AB46 0%, #1B361F 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 150px;
}



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

.cta-btn.secondary:hover {
    background: white;
    color: #1B361F;
    transform: translateY(-3px);
}

/* Footer Separator */
.footer-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ddd 50%, transparent 100%);
    margin: 0;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-btn {
        width: 200px;
        padding: 12px 30px;
    }
}



/* RTL Language Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .container {
    direction: rtl;
}



[dir="rtl"] .slide-content {
    text-align: right;
}

[dir="rtl"] .carousel-header,
[dir="rtl"] .section-header {
    text-align: right;
}

[dir="rtl"] .value-item,
[dir="rtl"] .benefit-item,
[dir="rtl"] .support-item {
    text-align: right;
}

[dir="rtl"] .story-item {
    text-align: right;
}

[dir="rtl"] .story-category {
    right: auto;
    left: 20px;
}

[dir="rtl"] .application-content {
    text-align: right;
}

[dir="rtl"] .stat-item {
    text-align: right;
}

[dir="rtl"] .cta-content {
    text-align: right;
}





/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #83AB46;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #1B361F;
    transform: translateY(-2px);
}

/* Mobile RTL adjustments */
@media (max-width: 768px) {

    
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Common Hero Section */
.page-hero {
    background: linear-gradient(135deg, #83AB46 0%, #1B361F 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* hero-stats moved to category-hero.css */

.hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* hero-stats responsive moved to category-hero.css */
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
}

/* Privacy Overview Section */
.privacy-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.overview-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.overview-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .privacy-overview {
        padding: 60px 0;
    }
    
    .overview-content h2 {
        font-size: 2rem;
    }
    
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .overview-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

/* Privacy Content Section */
.privacy-content {
    padding: 80px 0;
    background: white;
}

.content-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    border-left: 4px solid #83AB46;
}

.section-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.section-content h4 {
    color: #1B361F;
    margin: 20px 0 10px 0;
}

.section-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.section-content li {
    margin-bottom: 8px;
    color: #666;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.use-case {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

.use-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.use-text h4 {
    margin: 0 0 8px 0;
    color: #333;
}

.use-text p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.security-icon {
    font-size: 1.2rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.right-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
}

.right-item h4 {
    margin: 0 0 10px 0;
    color: #83AB46;
}

.right-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.cookie-type {
    padding: 20px;
    background: white;
    border-radius: 10px;
}

.cookie-type h4 {
    margin: 0 0 10px 0;
    color: #1B361F;
}

.cookie-type p {
    margin: 0;
    color: #666;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 60px 0;
    }
    
    .section-card {
        padding: 30px 20px;
    }
    
    .use-cases,
    .security-features,
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #83AB46;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h2 {
    color: #1B361F;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #83AB46;
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-section h2 {
    text-align: center;
    color: #1B361F;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #83AB46, #1B361F);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #1B361F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* FAQ Search Section */
.faq-search {
    padding: 40px 0;
    background: #f8f9fa;
}

.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.faq-search-input {
    width: 100%;
    padding: 15px 60px 15px 20px;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.faq-search-input:focus {
    outline: none;
    border-color: #83AB46;
}

.faq-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #83AB46;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-search-btn:hover {
    background: #1B361F;
}

/* FAQ Content Section */
.faq-content {
    padding: 60px 0;
    background: white;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-tab:hover {
    border-color: #83AB46;
    color: #83AB46;
}

.category-tab.active {
    background: #83AB46;
    border-color: #83AB46;
    color: white;
}

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

.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #83AB46;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .faq-search {
        padding: 30px 0;
    }
    
    .faq-content {
        padding: 40px 0;
    }
    
    .faq-categories {
        gap: 8px;
    }
    
    .category-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 15px;
    }
}

/* Certifications Grid Section */
.certifications-grid {
    padding: 80px 0;
    background: #f8f9fa;
}

.certifications-grid h2 {
    text-align: center;
    color: #1B361F;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.cert-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #83AB46, #1B361F);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.cert-card h3 {
    color: #1B361F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cert-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cert-category {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #83AB46;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Quality Commitment Section */
.quality-commitment {
    padding: 80px 0;
    background: white;
}

.commitment-content h2 {
    text-align: center;
    color: #1B361F;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.commitment-item {
    text-align: center;
    padding: 30px 20px;
}

.commitment-item h3 {
    color: #1B361F;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

@media (max-width: 768px) {
    .certifications-grid,
    .quality-commitment {
        padding: 60px 0;
    }
    
    .certifications-grid h2,
    .commitment-content h2 {
        font-size: 2rem;
    }
    
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cert-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .certs-grid {
        grid-template-columns: 1fr;
    }
}

/* Company Story - Stunning Modern Design */
.company-story {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.company-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(131, 171, 70, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(27, 54, 31, 0.03) 0%, transparent 50%);
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.story-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(131, 171, 70, 0.05), transparent);
    transition: left 0.8s ease;
}

.story-section:hover::before {
    left: 100%;
}

.story-section:hover {
    transform: translateY(-10px);
    border-color: rgba(131, 171, 70, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.story-section h2 {
    color: #1B361F;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -0.01em;
}

.story-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #83AB46, #1B361F);
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.6s ease;
}

.story-section:hover h2::after {
    opacity: 1;
    transform: scaleX(1);
}

.story-section p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 400;
}

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

/* Floating particles effect */
.story-section::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 4px;
    height: 4px;
    background: #83AB46;
    border-radius: 50%;
    opacity: 0.4;
    animation: float-particle 4s ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-15px) rotate(180deg); opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-story {
        padding: 100px 0;
    }
    
    .story-content {
        gap: 60px;
    }
    
    .story-section {
        padding: 40px 30px;
    }
    
    .story-section h2 {
        font-size: 1.6rem;
    }
    
    .story-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .story-section {
        padding: 30px 25px;
    }
    
    .story-section h2 {
        font-size: 1.4rem;
    }
}

/* Achievements - Spectacular Scientific Design */
.achievements {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(131, 171, 70, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(27, 54, 31, 0.02) 0%, transparent 50%);
    animation: scientific-pulse 12s ease-in-out infinite;
}

@keyframes scientific-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.01); }
}

.achievements h2 {
    text-align: center;
    color: #1B361F;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.achievements h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #83AB46, transparent);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.achievement-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(131, 171, 70, 0.05), transparent);
    animation: rotate-border 8s linear infinite;
    opacity: 0;
    transition: opacity 0.6s ease;
}

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

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(131, 171, 70, 0.03) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.achievement-card:hover::after {
    transform: translateX(100%);
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: rgba(131, 171, 70, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: icon-float 4s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.achievement-card h3 {
    color: #1B361F;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.achievement-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* Scientific grid overlay */
.achievements-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        linear-gradient(90deg, rgba(131, 171, 70, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(131, 171, 70, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 1;
    animation: grid-pulse 6s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

@media (max-width: 768px) {
    .achievements {
        padding: 80px 0;
    }
    
    .achievements h2 {
        font-size: 1.8rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .achievement-card {
        padding: 40px 25px;
    }
    
    .achievement-icon {
        font-size: 2.5rem;
    }
}
/* Curvature Section Styles */
.curvature-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.curvature-intro {
    text-align: center;
    margin-bottom: 60px;
}

.curvature-intro h2 {
    font-size: 2.5rem;
    color: #1B361F;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.curvature-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.curvature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.curvature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.curve-content h3 {
    font-size: 1.5rem;
    color: #1B361F;
    margin-bottom: 15px;
    font-weight: 600;
}

.curve-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.curve-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #83AB46 0%, #1B361F 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}



@media (max-width: 768px) {
    .curvature-section {
        padding: 60px 0;
    }
    
    .curvature-intro h2 {
        font-size: 2rem;
    }
    
    .curvature-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .curvature-card {
        padding: 20px;
    }
    

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

/* Category Hero Section - Unique Classes Only */
.category-hero {
    background: linear-gradient(135deg, #1B361F 0%, #83AB46 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/hero-pattern.svg') repeat;
    opacity: 0.1;
    z-index: 1;
}

.category-hero .container {
    position: relative;
    z-index: 2;
}

.category-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #e8f5e8;
}

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

.hero-stats .stat-item {
    text-align: center;
    padding: 20px 10px;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    display: block;
}

.hero-stats .stat-label {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    opacity: 0.9;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1B361F;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-hero {
        padding: 60px 0 40px;
    }
    
    .category-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .category-hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Category Pages Redesign - Unique Classes */
.category-main {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.category-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.category-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.category-title h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.category-model {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-tagline {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: italic;
}

.category-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.category-showcase {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.category-hero-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.category-hero-img:hover {
    transform: scale(1.02);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.category-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-thumb:hover,
.category-thumb.active {
    border-color: #3498db;
    transform: translateY(-2px);
}

.category-details {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.category-overview {
    margin-bottom: 2rem;
}

.category-overview h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5rem;
}

.category-overview p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.category-highlights {
    margin-bottom: 2rem;
}

.category-highlights h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 0.5rem;
}

.category-highlights ul {
    list-style: none;
    padding: 0;
}

.category-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.category-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.category-specs {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.category-specs h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #f39c12;
    padding-bottom: 0.5rem;
}

.category-spec-table {
    display: grid;
    gap: 0.5rem;
}

.category-spec-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.category-spec-key {
    font-weight: 600;
    color: #2c3e50;
}

.category-spec-val {
    color: #555;
}

.category-advantages {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.category-advantages h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #9b59b6;
    padding-bottom: 0.5rem;
}

.category-advantages h3 {
    color: #8e44ad;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
}

.category-advantages p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.category-advantages ul {
    list-style: none;
    padding: 0;
}

.category-advantages li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.category-advantages li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
}

.category-usage {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.category-usage h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #1abc9c;
    padding-bottom: 0.5rem;
}

.category-usage h3 {
    color: #16a085;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
}

.category-usage p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.category-usage ul {
    list-style: none;
    padding: 0;
}

.category-usage li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.category-usage li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #1abc9c;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .category-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-title h1 {
        font-size: 2rem;
    }
    
    .category-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-spec-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .category-wrapper {
        padding: 0 0.5rem;
    }
    
    .category-title h1 {
        font-size: 1.5rem;
    }
    
    .category-showcase,
    .category-details,
    .category-advantages,
    .category-usage {
        padding: 1rem;
    }
}

/* Skip Navigation - Essential for accessibility */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-nav:focus {
    top: 6px;
}

@media (max-width: 768px) {
    .skip-nav {
        left: 10px;
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .skip-nav:focus {
        top: 10px;
    }
}

/* Download Classes */
.download-category { margin-bottom: 2rem; }
.download-icon { font-size: 2rem; color: #007bff; margin-right: 1rem; }
.download-info { flex: 1; }
.download-item { display: flex; align-items: center; padding: 1rem; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 1rem; }
.download-items { margin-top: 1rem; }
.downloads-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.downloads-showcase { padding: 2rem 0; }
.file-size { color: #666; font-size: 0.9rem; }

/* Form Classes */
.form-group { margin-bottom: 1rem; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 1rem; }
.submit-btn { background: #007bff; color: white; padding: 0.75rem 2rem; border: none; border-radius: 4px; cursor: pointer; }
.submit-btn:hover { background: #0056b3; }



/* Dropdown Classes */
.dropbtn { background: #007bff; color: white; padding: 0.5rem 1rem; border: none; cursor: pointer; }
.dropdown-content { display: none; position: absolute; background: white; box-shadow: 0 8px 16px rgba(0,0,0,0.2); z-index: 1; }
.dropdown-content.show { display: block; }

/* Footer */
.footer { background: #333; color: white; padding: 2rem 0; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }



/* Project Classes */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.project-card { background: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.project-details { padding: 1rem; }
.project-image { width: 100%; height: 200px; object-fit: cover; }
.project-info { padding: 1rem; }
.projects-showcase { padding: 2rem 0; }

/* 404 Page Styles */
.error-main {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-title {
    font-size: 6rem;
    color: #83AB46;
    margin-bottom: 1rem;
}

.error-subtitle {
    color: #1B361F;
    margin-bottom: 1rem;
}

.error-description {
    color: #666;
    margin-bottom: 2rem;
}

.error-btn {
    background: #83AB46;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
}

.products-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.admin-panel-hidden {
    display: none;
}

.admin-logout-btn {
    float: right;
}

.password-hidden {
    display: none;
}

.code-block {
    background: #f1f1f1;
    padding: 10px;
    border-radius: 4px;
    margin: 10px 0;
}

.company-values {
    padding: 80px 0;
    background: white;
}

.company-values h2 {
    text-align: center;
    color: #1B361F;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #1B361F;
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Missing CSS Classes - 115 classes used in HTML but not defined in CSS */

/* Feature Classes */
.adjustable-feature { display: flex; align-items: center; margin: 1rem 0; }
.back-to-back-feature { background: #f8f9fa; padding: 1rem; border-radius: 8px; }
.back-to-back-swivel-feature { background: #e9ecef; padding: 1rem; border-radius: 8px; }
.special-appearance { font-weight: bold; color: #007bff; }

/* Application & Grid Classes */
.application { margin: 1rem 0; }
.application-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.device-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.device-item { padding: 1rem; border: 1px solid #ddd; border-radius: 8px; }
.color-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 0.5rem; }
.color-item { width: 50px; height: 50px; border-radius: 50%; border: 2px solid #ddd; }

/* Article & News Classes */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.article-meta { color: #666; font-size: 0.9rem; margin-bottom: 0.5rem; }
.featured-article { border: 2px solid #007bff; }
.featured-content { padding: 1rem; }
.featured-image { width: 100%; height: 200px; object-fit: cover; }
.featured-news { background: #f8f9fa; padding: 2rem; }
.news-card { background: white; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.date { color: #666; font-size: 0.9rem; }
.read-more { color: #007bff; text-decoration: none; font-weight: 500; }

/* Page Classes */
.certification-page { padding: 2rem 0; }
.company-page { padding: 2rem 0; }
.faq-page { padding: 2rem 0; }
.news-page { padding: 2rem 0; }
.oem-page { padding: 2rem 0; }
.privacy-page { padding: 2rem 0; }

/* Contact Classes */
.contact-content { display: flex; gap: 2rem; flex-wrap: wrap; }
.contact-details { flex: 1; min-width: 300px; }
.contact-form { flex: 1; min-width: 300px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.contact-icon { font-size: 2rem; color: #007bff; margin-bottom: 1rem; }
.contact-info { padding: 1rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.contact-text { flex: 1; }

/* Card Classes */
.card-content { padding: 1rem; }
.card-image { width: 100%; height: 200px; object-fit: cover; }

/* Contact Page Styles */
.contact-page-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(131, 171, 70, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(27, 54, 31, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-page-info {
    display: flex;
    flex-direction: column;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-icon-main {
    font-size: 4rem;
    margin-bottom: 20px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #1B361F;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-page-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-page-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    flex-shrink: 0;
}

.contact-page-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #83AB46 0%, #1B361F 100%);
    border-radius: 50%;
    color: white;
}

.contact-page-text h3 {
    color: #1B361F;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-page-text p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.contact-social {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.contact-social h4 {
    color: #1B361F;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #83AB46 0%, #1B361F 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(131, 171, 70, 0.4);
}

.contact-page-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.2rem;
    color: #1B361F;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

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

.contact-form-group {
    position: relative;
    margin-bottom: 25px;
}

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

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: #83AB46;
    background: white;
    box-shadow: 0 0 0 3px rgba(131, 171, 70, 0.1);
}

.contact-form-group label {
    position: absolute;
    top: 15px;
    left: 20px;
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
}

.contact-form-group input:focus + label,
.contact-form-group input:valid + label,
.contact-form-group select:focus + label,
.contact-form-group select:valid + label,
.contact-form-group textarea:focus + label,
.contact-form-group textarea:valid + label {
    top: -8px;
    left: 15px;
    font-size: 0.85rem;
    color: #83AB46;
    background: white;
}

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

.contact-submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #83AB46 0%, #1B361F 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(131, 171, 70, 0.4);
}

.contact-submit-btn i {
    font-size: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B361F 0%, #83AB46 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.newsletter-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-icon {
    font-size: 5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-particle 4s ease-in-out infinite;
}

.float-element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.float-element:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-newsletter-feature {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form {
    min-width: 350px;
}

.newsletter-input-group {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-wrapper input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.input-wrapper input:focus + .input-highlight {
    width: 100%;
}

.newsletter-btn {
    padding: 18px 30px;
    background: white;
    color: #1B361F;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-glow {
    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 ease;
}

.newsletter-btn:hover .btn-glow {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-page-grid {
        gap: 40px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: auto;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-page-content {
        padding: 60px 0;
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card,
    .contact-page-form {
        padding: 30px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-text h2 {
        font-size: 2rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .newsletter-icon {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .contact-info-card,
    .contact-page-form {
        padding: 20px;
    }
    
    .contact-page-item {
        padding: 15px;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .newsletter-text h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-features {
        align-items: center;
    }
}
/* Product Page Styles */
.product-page {
    padding: 40px 0 80px;
    background: #f8f9fa;
    min-height: 100vh;
}

.breadcrumb {
    margin-bottom: 40px;
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #83AB46;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1B361F;
}

.breadcrumb span {
    color: #333;
    font-weight: 600;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.main-image:hover {
    border-color: #83AB46;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #f8f9fa;
    padding: 5px;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #83AB46;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(131, 171, 70, 0.3);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-info h1 {
    font-size: 2.5rem;
    color: #1B361F;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.product-subtitle {
    color: #83AB46;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.product-description {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #83AB46;
}

.product-description p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.key-features h2,
.specifications h2 {
    color: #1B361F;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.key-features h2::before {
    content: "✨";
    font-size: 1.2rem;
}

.specifications h2::before {
    content: "📋";
    font-size: 1.2rem;
}

.key-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.key-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    color: #555;
}

.key-features li::before {
    content: "✓";
    color: white;
    background: linear-gradient(135deg, #83AB46 0%, #1B361F 100%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.key-features li:hover {
    transform: translateX(5px);
    border-color: #83AB46;
    box-shadow: 0 4px 15px rgba(131, 171, 70, 0.2);
}

.specifications table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.specifications tr {
    border-bottom: 1px solid #e9ecef;
    transition: background 0.3s ease;
}

.specifications tr:hover {
    background: #f8f9fa;
}

.specifications tr:last-child {
    border-bottom: none;
}

.specifications td {
    padding: 18px 25px;
    vertical-align: top;
}

.specifications td:first-child {
    background: #f8f9fa;
    width: 40%;
    font-weight: 600;
    color: #1B361F;
    border-right: 1px solid #e9ecef;
}

.specifications td:last-child {
    color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-layout {
        gap: 40px;
        padding: 30px;
    }
    
    .thumbnail-images {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .product-page {
        padding: 20px 0 60px;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .product-info h1 {
        font-size: 2rem;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .thumbnail-images {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .thumbnail {
        height: 60px;
    }
    
    .specifications td {
        padding: 15px 20px;
    }
    
    .specifications td:first-child {
        width: 35%;
    }
}

@media (max-width: 480px) {
    .product-info h1 {
        font-size: 1.8rem;
    }
    
    .product-layout {
        padding: 15px;
    }
    
    .key-features li {
        padding: 12px 15px;
    }
    
    .specifications td {
        padding: 12px 15px;
    }
    
    .thumbnail-images {
        grid-template-columns: repeat(2, 1fr);
    }
}