:root {
    --primary: #004d40;
    --primary-dark: #00332a;
    --primary-light: #00695c;
    --secondary: #f0f9f8;
    --accent: #00b894;
    --accent-alt: #ff9f43;
    --accent-dark: #00a085;
    --white: #ffffff;
    --light-gray: #f9f9f9;
    --dark: #263238;
    --text-dark: #37474f;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 20px rgba(0, 180, 148, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --mobile-header-height: 70px;
}

/* ==================== */
/* RESET & BASE STYLES */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

/* ==================== */
/* TYPOGRAPHY */
/* ==================== */
.section-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    font-weight: 700;
    line-height: 1.3;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--primary-light));
    margin: 15px auto 0;
    border-radius: 3px;
}

/* ==================== */
/* HEADER & NAVIGATION */
/* ==================== */
.corporate-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: var(--transition);
    border-bottom: 2px solid var(--accent);
    padding: 10px 0;
    height: var(--mobile-header-height);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    width: 100%;
    height: 100%;
}

.logo img {
    max-height: 40px;
    width: auto;
    transition: var(--transition);
}

/* Mobile Navigation */
.corporate-nav {
    display: none;
    position: fixed;
    top: var(--mobile-header-height);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 20px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    max-height: calc(100vh - var(--mobile-header-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.corporate-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.corporate-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.corporate-nav a {
    font-weight: 600;
    transition: var(--transition);
    color: var(--dark);
    text-decoration: none;
    font-size: 1rem;
    padding: 12px 15px;
    display: block;
    border-radius: var(--border-radius);
}

.corporate-nav a:hover,
.corporate-nav a.active {
    background: var(--secondary);
    color: var(--primary);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background: var(--secondary);
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-text {
    display: none;
}

/* ==================== */
/* HERO SLIDER */
/* ==================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 350px;
    overflow: hidden;
    background: #000;
    margin-top: var(--mobile-header-height);
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(20px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.slide-inner {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    padding: 0 1.5rem;
    max-width: 100%;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
    z-index: 2;
    color: white;
}

.slide-inner h1 {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.slide-inner p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.slide-btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.slide-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
}

/* Navigation Buttons */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0,0,0,0.6);
    padding: 12px;
    color: white;
    font-size: 1.2rem;
    z-index: 10;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav:hover {
    background: rgba(0,0,0,0.8);
}

.nav.prev { left: 15px; }
.nav.next { right: 15px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
    z-index: 10;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dots button.active {
    opacity: 1;
    transform: scale(1.2);
    background: var(--accent);
}

/* ==================== */
/* CATEGORY NAVIGATION - Increased size */
/* ==================== */
.category-nav {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: var(--mobile-header-height);
    z-index: 998;
    border-bottom: 1px solid #e0e0e0;
    transition: var(--transition);
}

.category-container {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 0 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-container::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 12px 8px;
    border-radius: var(--border-radius);
    min-width: 90px; /* Increased from 80px */
    background: var(--light-gray);
    border: 1px solid #e8e8e8;
    flex-shrink: 0;
}

.category-item:hover {
    background: var(--secondary);
    color: var(--primary);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.category-icon {
    width: 45px; /* Increased from 40px */
    height: 45px; /* Increased from 40px */
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 1.3rem; /* Increased from 1.1rem */
    color: var(--white);
}

.category-item span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* ==================== */
/* PRODUCTS SHOWCASE */
/* ==================== */
.products-showcase {
    padding: 40px 0;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.product-card-modern {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e8e8e8;
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.product-badge {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: var(--accent);
    color: white;
}

.badge-certified {
    background: var(--primary);
    color: white;
}

.badge-featured {
    background: var(--accent-alt);
    color: white;
}

.product-image-container {
    height: 160px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-info {
    padding: 15px;
}

.product-category {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.3;
}

.product-description-short {
    color: var(--text-dark);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.5;
    opacity: 0.9;
}

.product-specs-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.spec-tag {
    background: var(--secondary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-dark);
    border: 1px solid #d4e8d4;
    font-weight: 500;
}

/* ==================== */
/* BUTTONS */
/* ==================== */
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    width: 100%;
    margin-bottom: 10px;
}

.btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
}

.product-cta {
    background: var(--primary);
}

.product-cta:hover {
    background: var(--primary-dark);
}

/* ==================== */
/* GALLERY - Fixed version */
/* ==================== */
.gallery-modern {
    padding: 40px 0;
    background: var(--white);
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.gallery-item-modern {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 220px; /* Increased height */
    background: #f9f9f9; /* Changed from green gradient */
}

.gallery-item-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-modern:hover img {
    transform: scale(1.05);
}

.gallery-overlay-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%); /* Darker overlay */
    color: var(--white);
    padding: 15px;
}

.gallery-overlay-modern h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.gallery-overlay-modern p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ==================== */
/* COMPARISON TABLE */
/* ==================== */
.comparison-section {
    padding: 40px 0;
    background: var(--light-gray);
}

.comparison-table {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
    border: 1px solid #e0e0e0;
    overflow-x: auto;
}

.comparison-header {
    display: none;
}

.comparison-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-width: 600px;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-row:first-child {
    background: var(--primary);
    color: white;
    font-weight: 700;
}

.comparison-row:nth-child(even) {
    background: #f8f8f8;
}

.spec-check {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ==================== */
/* TECH SPECS */
/* ==================== */
.tech-specs-modern {
    padding: 40px 0;
    background: var(--white);
}

.specs-tabs {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 25px;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.specs-tabs::-webkit-scrollbar {
    display: none;
}

.spec-tab {
    padding: 10px 15px;
    background: var(--light-gray);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.spec-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.specs-content {
    display: none;
}

.specs-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.specs-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.spec-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
    border-left: 4px solid var(--accent);
}

.spec-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 700;
}

.spec-list-modern {
    list-style: none;
}

.spec-list-modern li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.spec-list-modern li:last-child {
    border-bottom: none;
}

.spec-value {
    font-weight: 700;
    color: var(--primary);
    margin-top: 5px;
}

/* ==================== */
/* APPLICATIONS */
/* ==================== */
.applications {
    padding: 40px 0;
    background: var(--light-gray);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.application-card {
    text-align: center;
    padding: 20px 10px;
    border-radius: var(--border-radius);
    background: var(--white);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
    box-shadow: var(--shadow);
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.application-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: var(--white);
}

.application-card h4 {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
}

.application-card p {
    color: var(--text-dark);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ==================== */
/* CTA SECTION */
/* ==================== */
.cta-modern {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-title-modern {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.cta-buttons-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.cta-buttons-modern .btn {
    width: 100%;
    margin-bottom: 0;
}

/* ==================== */
/* SEO CONTENT */
/* ==================== */
.seo-enhanced {
    padding: 40px 0;
    background: var(--white);
}

.seo-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.seo-category {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 4px solid var(--accent);
}

.seo-category h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 700;
}

.seo-category p {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.seo-category ul {
    list-style: none;
}

.seo-category li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.seo-category li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1rem;
}

/* ==================== */
/* FOOTER - Fixed text colors */
/* ==================== */
.corporate-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 40px 0 20px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-logo img {
    max-height: 40px;
    margin-bottom: 15px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-section p {
    margin-bottom: 15px;
    color: #ffffff; /* Changed from greenish to white */
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    font-weight: 700;
    color: white;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent);
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #ffffff; /* Changed from greenish to white */
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #ffffff; /* Changed from greenish to white */
    line-height: 1.4;
}

.contact-info i {
    color: var(--accent);
    width: 18px;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.9rem;
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==================== */
/* ANIMATIONS */
/* ==================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ==================== */
/* TABLET STYLES (768px+) */
/* ==================== */
@media (min-width: 768px) {
    :root {
        --mobile-header-height: 80px;
    }
    
    .container {
        max-width: 720px;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    /* Tablet Header */
    .corporate-nav {
        display: block;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        max-height: none;
        overflow-y: visible;
    }
    
    .corporate-nav ul {
        flex-direction: row;
        gap: 15px;
    }
    
    .corporate-nav a {
        padding: 5px 0;
        border-radius: 0;
        font-size: 0.95rem;
        position: relative;
    }
    
    .corporate-nav a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s ease;
    }
    
    .corporate-nav a:hover:after,
    .corporate-nav a.active:after {
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .call-text {
        display: inline;
    }
    
    /* Tablet Hero */
    .hero-slider {
        height: 60vh;
        margin-top: var(--mobile-header-height);
    }
    
    .slide-inner {
        max-width: 550px;
        margin-left: 2rem;
    }
    
    .slide-inner h1 {
        font-size: 2.3rem;
    }
    
    .slide-inner p {
        font-size: 1.1rem;
    }
    
    /* Tablet Category - Increased size */
    .category-container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .category-item {
        min-width: 100px;
        padding: 15px 10px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    /* Tablet Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    /* Tablet Gallery */
    .gallery-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-item-modern {
        height: 250px;
    }
    
    /* Tablet Applications */
    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .application-card {
        padding: 25px 15px;
    }
    
    /* Tablet CTA */
    .cta-title-modern {
        font-size: 1.8rem;
    }
    
    .cta-buttons-modern {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .cta-buttons-modern .btn {
        width: auto;
        min-width: 200px;
    }
    
    /* Tablet Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    /* Tablet Comparison */
    .comparison-table {
        overflow-x: visible;
    }
    
    .comparison-row {
        min-width: auto;
    }
}

/* ==================== */
/* DESKTOP STYLES (992px+) */
/* ==================== */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    /* Desktop Hero */
    .hero-slider {
        height: 70vh;
        margin-top: 80px;
    }
    
    .slide-inner {
        max-width: 600px;
        margin-left: 4rem;
    }
    
    .slide-inner h1 {
        font-size: 2.8rem;
    }
    
    .slide-inner p {
        font-size: 1.3rem;
    }
    
    .nav {
        padding: 15px;
        font-size: 1.4rem;
    }
    
    /* Desktop Category - Increased size */
    .category-container {
        justify-content: center;
    }
    
    .category-item {
        min-width: 110px;
    }
    
    .category-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    /* Desktop Products */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-image-container {
        height: 200px;
    }
    
    /* Desktop Gallery */
    .gallery-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Desktop Comparison */
    .comparison-header {
        display: grid;
        grid-template-columns: 2fr repeat(4, 1fr);
        gap: 20px;
        padding: 20px;
        background: var(--primary);
        color: white;
        font-weight: 700;
    }
    
    .comparison-row {
        grid-template-columns: 2fr repeat(4, 1fr);
    }
    
    .comparison-row:first-child {
        background: transparent;
        color: inherit;
    }
    
    /* Desktop Tech Specs */
    .specs-tabs {
        justify-content: center;
        overflow-x: visible;
    }
    
    .specs-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spec-list-modern li {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .spec-value {
        margin-top: 0;
        min-width: 150px;
        text-align: right;
    }
    
    /* Desktop SEO */
    .seo-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Desktop Footer */
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==================== */
/* LARGE DESKTOP (1200px+) */
/* ==================== */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    /* Large Desktop Hero */
    .hero-slider {
        height: 75vh;
    }
    
    .slide-inner {
        max-width: 650px;
        margin-left: 5rem;
    }
    
    .slide-inner h1 {
        font-size: 3.2rem;
    }
    
    .slide-inner p {
        font-size: 1.4rem;
    }
    
    /* Large Desktop Products */
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Large Desktop Gallery */
    .gallery-grid-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .gallery-item-modern {
        height: 280px;
    }
    
    /* Large Desktop Applications */
    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .application-card {
        padding: 30px 20px;
    }
    
    .application-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ==================== */
/* UTILITY CLASSES */
/* ==================== */
.green-highlight {
    color: var(--accent);
    font-weight: 700;
}

.hover-grow {
    transition: var(--transition);
}

.hover-grow:hover {
    transform: scale(1.05);
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

/* ==================== */
/* TOUCH DEVICE OPTIMIZATIONS */
/* ==================== */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .btn:active {
        transform: none;
    }
    
    .product-card-modern:hover {
        transform: none;
    }
    
    .category-item:hover {
        transform: none;
    }
    
    .application-card:hover {
        transform: none;
    }
    
    .slide-btn:hover {
        transform: none;
    }
}

/* ==================== */
/* PRINT STYLES */
/* ==================== */
@media print {
    .corporate-header,
    .category-nav,
    .cta-modern,
    .corporate-footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        margin: 0;
        padding: 0;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero-slider {
        padding: 20px 0;
        background: white !important;
        color: black !important;
        height: auto;
    }
    
    .section-title:after {
        background: black;
    }
}