/* Reset and Base Styles - Optimized */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --header-height: 60px;
    --spacing-xl: 4rem;
    --spacing-lg: 2rem;
    --spacing-md: 1rem;
}

.nav-menu {
    top: var(--header-height);
}

.section-header {
    margin-bottom: var(--spacing-xl);
}



/* Critical CSS - Above the fold styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero {
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation - Mobile First */

.navbar {
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.01rem;
}


.nav-logo img {
    height: 52px;
    width: auto;
    max-width: 175px;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    top: var(--header-height);
}


.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #2E7D32;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2E7D32;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(46, 125, 50, 0.1);
}

.bar {
    width: 25px;
    height: 2.5px;;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - Mobile Optimized */

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 15px;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    flex: 1;
    text-align: center;
    padding: 20px 15px 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Buttons - Mobile Optimized */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    min-height: 48px;
    min-width: 120px;
    text-align: center;
    line-height: 1.2;
    touch-action: manipulation;
}

.btn-primary {
    background: #2E7D32;
    color: white;
    border-color: #2E7D32;
}

.btn-primary:hover {
    background: #1B5E20;
    border-color: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2E7D32;
    border-color: #2E7D32;
}

.btn-secondary:hover {
    background: #2E7D32;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2E7D32;
    border-color: #2E7D32;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #2E7D32;
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Section */
.company {
    padding: 80px 0;
    background: white;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.company-text h3 {
    font-size: 1.5rem;
    color: #2E7D32;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.company-text h3:first-child {
    margin-top: 0;
}

.company-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    color: #2E7D32;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
}

.company-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #F8F9FA;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* OPTIMIZED */
.product-card {
    transform: translateZ(0); /* Hardware acceleration */
    will-change: transform, box-shadow;
}

.product-card:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* Lighter shadow */
}


.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.3rem;
    color: #2E7D32;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: #E8F5E8;
    color: #2E7D32;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #2E7D32;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #2E7D32;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-forms {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-container {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    color: #2E7D32;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 16px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E7D32;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

/* Careers Section */
/* .careers {
    padding: 80px 0;
    background: #F8F9FA;
}

.career-filters {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #2E7D32;
}

.filter-group select {
    padding: 10px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-2px);
}

.job-header h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.job-meta span {
    background: #E8F5E8;
    color: #2E7D32;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-description p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
} 

.posted-date {
    color: #999;
    font-size: 0.9rem;
}*/

/* Blog Section */
.blog {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    transform: translateZ(0); /* Hardware acceleration */
}

.blog-card:hover {
    transform: translateY(-5px);
    
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: #2E7D32;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.date {
    color: #999;
    font-size: 0.9rem;
}

.read-more {
    color: #2E7D32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1B5E20;
}

/* Footer */
.footer {
    background: #2E7D32;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #F5F5F5;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section address p {
    color: #F5F5F5;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #C8E6C9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #E0E0E0;
}

/* Mobile First Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 90px 0 50px;
    }
    
    .hero-content {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        order: 2;
        padding: 0 15px;
    }
    
    .company-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* REPLACE the existing .nav-menu block in @media (max-width: 768px) with this */
    /* .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);            
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - var(--header-height)); 
        text-align: center;
        transition: left 0.28s ease, transform 0.28s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1001;                        
        overflow-y: auto;                     
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    } */

    #nav-overlay {
      transition: background-color 0.22s ease, opacity 0.22s ease;
      background-color: rgba(0,0,0,0.35);
      opacity: 0;
      pointer-events: none; /* JS enables when menu open */
      z-index: 1000;
    }

    .header, header { z-index: 1001; }
    
    /* overlay visible state */
    #nav-overlay.visible {
      opacity: 1;
      pointer-events: auto;
    }
    
    /* nav menu container */
    #nav-menu, .nav-menu {
      position: fixed;
      top: var(--header-height);
      left: -100%;
      width: 100%;
      height: calc(100vh - var(--header-height));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      background-color: #fff;
      padding: 1.4rem 1.2rem;
      text-align: center;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      transition: left 0.28s cubic-bezier(.2,.8,.2,1);
      z-index: 1003; /* above header and overlay */
      pointer-events: auto; /* allow inside clicks */
    }
    
    /* visible state — JS will add 'active' and 'open' */
    #nav-menu.active,
    #nav-menu.open,
    .nav-menu.active,
    .nav-menu.open {
      left: 0;
    }
    
    /* clickable links */
    #nav-menu a, .nav-menu a {
      display: block;
      width: 100%;
      padding: 0.75rem 0.5rem;
      text-decoration: none;
      cursor: pointer;
    }
    
    /* protective rule — avoid accidental pointer-events:none from other rules */
    #nav-menu, #nav-menu * { pointer-events: auto !important; }

    .nav-toggle {
        display: flex;
    }

/* New hamburger styles (modern, accessible) */
.nav-toggle.hamburger {
    background: transparent;
    border: 0;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger-box {
    width: 28px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 28px;
    height: 2.5px;
    background-color: #333;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: transform 0.28s ease, opacity 0.2s ease;
}

.hamburger-inner { top: 50%; transform: translateY(-50%); }
.hamburger-inner::before { content: ''; top: -8px; }
.hamburger-inner::after { content: ''; top: 8px; }

.nav-toggle.hamburger:focus { outline: 3px solid rgba(46,125,50,0.18); outline-offset: 3px; }

.nav-toggle.hamburger[aria-expanded="true"] .hamburger-inner {
    transform: rotate(45deg);
}
.nav-toggle.hamburger[aria-expanded="true"] .hamburger-inner::before {
    transform: rotate(90deg) translateX(0);
    top: 0;
    opacity: 0;
}
.nav-toggle.hamburger[aria-expanded="true"] .hamburger-inner::after {
    transform: rotate(-90deg);
    top: 0;
}

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 24px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        margin: 0 2%;
    }

    .career-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .filter-group {
        width: 100%;
    }

    .filter-group select {
        width: 100%;
    }

    .job-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 25px;
    }
    
    .nav-logo img {
        height: 50px;
        width: 157px;
    }

    .hero {
        padding: 70px 0 30px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat h4 {
        font-size: 1.5rem;
    }

    .product-card {
        margin: 0 5px;
    }

    .product-content {
        padding: 1.25rem;
    }

    .product-content h3 {
        font-size: 1.2rem;
    }

    .job-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .job-meta span {
        font-size: 0.85rem;
        padding: 0.25rem 0.6rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .contact-item i {
        margin-top: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #f44336;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #4CAF50;
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-link {
        padding: 12px 16px;
        display: block;
        font-size: 1.1rem;
    }
    
    /* Better mobile spacing */
    .container {
        padding: 0 15px;
    }
    
    /* Improve mobile forms */
    .form-container {
        margin: 0 10px;
    }
    
    /* Better mobile product cards */
    .product-card {
        margin-bottom: 1rem;
    }
    
    /* Mobile-friendly contact info */
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    /* Mobile job cards */
    .job-card {
        margin-bottom: 1rem;
    }
    
    /* Mobile blog cards */
    .blog-card {
        margin-bottom: 1rem;
    }
}

/* Accessibility improvements */
.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;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2E7D32;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Field error styling */
.field-error {
    color: #f44336;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

/* Form validation styles */
.form-group input.error,
.form-group textarea.error {
    border-color: #f44336;
    box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #4CAF50;
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid #2E7D32;
    outline-offset: 2px;
}

button:focus,
input:focus,
textarea:focus {
    outline: 3px solid #2E7D32;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.2);
}

@media (prefers-contrast: high) {
    button:focus,
    input:focus {
        outline: 3px solid #000;
        outline-offset: 1px;
    }
}

/* Mobile touch improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .product-card:hover {
        transform: none;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    .nav-link:active::after {
        width: 100%;
    }
    
    /* Better touch targets for mobile */
    .nav-toggle {
        min-height: 44px;
        min-width: 44px;
        padding: 10px;
    }
    
    .nav-link {
        min-height: 44px;
        padding: 12px 16px;
        display: flex;
        align-items: center;
    }
    
    .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 24px;
    }
    
    /* Improve form inputs for mobile */
    .form-group input,
    .form-group textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Better mobile spacing */
    .hero {
        padding: 100px 0 60px;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .products-grid {
        gap: 1.5rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    * {
        animation: none !important;
        transition: none !important;
    }


    .product-card {
        transition: none;
    }
}

/* ADD REDUCED MOTION SUPPORT */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-image img,
    .product-image img,
    .blog-image img {
        transform: none !important;
    }
}